/*-----------------------------------------------------------------------------------*/
/*  lexielein.com — inner.css
/*  Styles for pages that load inside the main window iframe.
/*  No chrome, no menu bar — content only.
/*-----------------------------------------------------------------------------------*/

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Geneva", Arial, sans-serif;
  font-size: 12px;
  background: #fff;
  color: #333;
  height: 100%;
  overflow-y: auto;
  -webkit-user-select: text;
  user-select: text;
}

a {
  color: #2255cc;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.page-content {
  padding: 14px 16px;
}

/*-----------------------------------------------------------------------------------*/
/*  Page heading
/*-----------------------------------------------------------------------------------*/

.page-heading {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 8px;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

/*-----------------------------------------------------------------------------------*/
/*  Blog index
/*-----------------------------------------------------------------------------------*/

.post-entry {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.post-entry:last-of-type { border-bottom: none; }

.post-date {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.post-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a4a9a;
  margin-bottom: 4px;
  text-decoration: none;
  cursor: pointer;
}
.post-title:hover { text-decoration: underline; }

.post-tags { margin-bottom: 5px; }

.tag {
  display: inline-block;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 8px;
  margin-right: 4px;
  border: 0.5px solid;
}
.tag-tech  { background: #dde8f8; color: #1a3a88; border-color: #aac0e0; }
.tag-poetry { background: #ddf0e4; color: #1a5a30; border-color: #aad0b8; }
.tag-journal { background: #edddf0; color: #5a1a54; border-color: #c5aad0; }
.tag-misc { background: #c2b4cf; color: #42154d; border-color: #d0b4e1; }

.post-excerpt {
  font-size: 12px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 4px;
}

.post-img {
  max-width: 500px;
  display: block;
  object-fit: contain;
}

.read-more {
  display: inline-block;
  font-size: 11px;
  color: #2255cc;
  cursor: pointer;
}
.read-more:hover { text-decoration: underline; }

/*-----------------------------------------------------------------------------------*/
/*  Individual post body
/*-----------------------------------------------------------------------------------*/

h2.post-heading {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.post-content {
  margin-top: 14px;
}

.post-content p {
  font-size: 13px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 12px;
}

.post-content h3 {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 18px 0 6px;
}

.post-content blockquote {
  border-left: 3px solid #b0b8d8;
  margin: 12px 0 12px 8px;
  padding: 4px 0 4px 12px;
  color: #555;
  font-style: italic;
}

.post-content em     { font-style: italic; }
.post-content strong { font-weight: 700; }

.post-nav {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #ebebeb;
}

/*-----------------------------------------------------------------------------------*/
/*  Info / contact page
/*-----------------------------------------------------------------------------------*/

.info-block {
  font-size: 13px;
  color: #333;
  line-height: 1.65;
}
.info-block p { margin-bottom: 10px; }
.info-block h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 5px;
  color: #1a1a1a;
}

/*-----------------------------------------------------------------------------------*/
/*  Archives
/*-----------------------------------------------------------------------------------*/

.archives-year {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 0.5px solid #ddd;
  padding-bottom: 3px;
  margin: 14px 0 8px;
}
.archives-year:first-child { margin-top: 0; }

.archive-entry {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 5px;
}
.archive-date {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 72px;
  flex-shrink: 0;
}
.archive-title {
  font-size: 12px;
  color: #1a4a9a;
  text-decoration: none;
}
.archive-title:hover { text-decoration: underline; }

/*-----------------------------------------------------------------------------------*/
/*  Aqua push-button (back link etc.)
/*-----------------------------------------------------------------------------------*/

a.button {
  display: inline-block;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  border-radius: 4px;
  border: 1px solid #9a9a9a;
  text-decoration: none;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Geneva", Arial, sans-serif;
  font-weight: normal;
  color: #000;
  background: linear-gradient(to top, #ebebeb 0%, #f3f3f3 50%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 1px 0 rgba(0,0,0,0.09);
  padding: 0 10px;
}
a.button:hover { text-decoration: none; }
a.button:active {
  background: linear-gradient(to top, #d3f7fd 0%, #a1d1f9 50%, #d4e9fc 100%);
  border-color: #5a5caf #56578f #52536f;
}
