/* ------------------------------------ */
/* LAYOUT STRUCTURE */
/* ------------------------------------ */

.diary-layout {
  display: flex;
  max-width: 1100px;
  margin: 3rem auto;
  gap: 2rem;
}

/* Sidebar base */
.diary-sidebar {
  width: 150px;
  height: fit-content;
  position: sticky;
  top: 2rem;
  padding: 1.5rem;
  border: 1px solid #e0d7cd;
  border-radius: 6px;
}

.diary-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
}

.diary-sidebar a {
  display: block;
  font-size: 0.9rem;
  margin: 0.2rem 0 0.2rem 0.5rem;
  text-decoration: none;
  color: #6b5a4b;
  transition: color .2s ease;
}

.diary-sidebar a:hover {
  color: #b56a50;
}

/* ------------------------------------ */
/* SOFT SIDEBAR — OPTION B */
/* ------------------------------------ */

.diary-sidebar.soft {
  background: #f7f3ed;
}

.diary-sidebar.soft .sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #8b5f4b;
  text-transform: lowercase;
  margin-bottom: 1.2rem;
}

/* ------------------------------------ */
/* EDITORIAL SIDEBAR — OPTION C */
/* ------------------------------------ */

.diary-sidebar.editorial {
  background: #ffffff;
  border: none;
  border-left: 2px solid #2b2b2b;
  padding-left: 1.2rem;
}

.editorial .sidebar-title.big {
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: none;
}

.editorial-year h3 {
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.editorial-year a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 0.3rem;
}

/* ------------------------------------ */
/* MAIN CONTENT AREA */
/* ------------------------------------ */

.diary-main {
  flex-grow: 1;
  min-width: 0;
}

.diary-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* ------------------------------------ */
/* ENTRY CARDS — SOFT BEIGE (Option B) */
/* ------------------------------------ */

.entry-card.beige {
  background: #f7f3ed;
  padding: 1.5rem;
  border: 1px solid #e0d7cd;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.entry-card.beige h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
}

.entry-card.beige .date {
  font-size: 0.8rem;
  color: #8b5f4b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.entry-card.beige .excerpt {
  color: #4a4a4a;
  margin: 0.8rem 0;
}

.entry-card.beige a {
  color: #b56a50;
  text-decoration: none;
  font-size: 0.9rem;
}

.entry-card.beige a:hover {
  text-decoration: underline;
}

/* Month labels */
.month-label {
  font-size: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
  color: #8b5f4b;
}