@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap");
body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.legacy-body {
  margin: 0;
  background: #cfcfca;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 973px;
}

.legacy-content-cell {
  font-size: 14px;
  padding: 10px;
}

.legacy-content-cell h1,
.legacy-content-cell h2,
.legacy-content-cell h3 {
  margin-top: 0.6em;
}

/* Home index — Clean Blog–inspired typography (Lora + Open Sans) */
.blog-index {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.75rem 2rem;
  color: #212529;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

.blog-index__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: start;
}

.blog-index__main {
  min-width: 0;
}

.blog-index__hero {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dee2e6;
}

.blog-index__title {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #212529;
}

.blog-index__subtitle {
  margin: 0.65rem 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #6c757d;
  line-height: 1.5;
}

.blog-index__stats {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-index__section-label {
  margin: 0 0 1.5rem;
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #212529;
}

.post-preview {
  margin: 0;
}

.post-preview__title {
  margin: 0 0 0.35rem;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
}

.post-preview__title a {
  color: #212529;
  text-decoration: none;
}

.post-preview__title a:hover {
  color: #0085a1;
}

.post-preview__meta {
  margin: 0 0 0.85rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: #6c757d;
}

.post-preview__meta time {
  font-style: italic;
}

.post-preview__excerpt {
  margin: 0 0 0.75rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #212529;
}

.post-preview__more {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
}

.post-preview__more a {
  color: #0085a1;
  font-weight: 600;
  text-decoration: none;
}

.post-preview__more a:hover {
  color: #005f73;
  text-decoration: underline;
}

.post-preview__rule {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

.blog-index__more-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: #6c757d;
}

.blog-index__empty {
  color: #6c757d;
}

/* Sidebar — post menu */
.blog-index__sidebar {
  position: sticky;
  top: 1rem;
}

.blog-sidebar {
  padding: 1.1rem 1rem 1.25rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  font-family: "Open Sans", sans-serif;
}

.blog-sidebar__title {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #212529;
}

.blog-sidebar__hint {
  margin: 0.25rem 0 1rem;
  font-size: 0.8rem;
  color: #6c757d;
}

.blog-sidebar__year {
  margin-bottom: 1.1rem;
}

.blog-sidebar__year:last-child {
  margin-bottom: 0;
}

.blog-sidebar__year-label {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6c757d;
}

.blog-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar__list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.88rem;
  line-height: 1.35;
}

.blog-sidebar__list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-sidebar__list a {
  color: #212529;
  text-decoration: none;
  font-weight: 600;
}

.blog-sidebar__list a:hover {
  color: #0085a1;
}

.blog-sidebar__date {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 400;
}

@media (max-width: 900px) {
  .blog-index__layout {
    grid-template-columns: 1fr;
  }
  .blog-index__sidebar {
    position: static;
    max-height: none;
  }
  .blog-sidebar {
    max-height: 420px;
  }
}

/*# sourceMappingURL=main.css.map */