/* ===== ROOT & GLOBAL STYLES ===== */
:root {
  --color-cream: #fbf5ed;
  --color-maroon: #7a003c;
  --color-dark-maroon: #5a002c;
  --color-burnt-orange: #d4602b;
  --color-beige: #d4b5a0;
  --color-dark-red: #a91d42;
  --color-text: #2b2b2b;
  --spacing-unit: 1rem;
  --transition: all 0.3s ease;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Merriweather', serif;
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-maroon);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--color-cream);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-maroon);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.nav-logo a:hover {
  color: var(--color-burnt-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--color-maroon);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-burnt-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  background-color: var(--color-maroon);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition: var(--transition);
}

.nav-link-cta:hover {
  background-color: var(--color-dark-maroon);
  transform: translateY(-2px);
}

.nav-link-cta::after {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-maroon);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-image-container {
  width: 100%;
  max-height: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background: linear-gradient(135deg, var(--color-cream) 0%, #f5ead9 100%);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.bookshelf-divider {
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(122, 0, 60, 0.05) 0%, transparent 100%);
}

.bookshelf-divider .bookshelf-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 1.5rem;
  margin: 0;
}

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-maroon);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.section-icon {
  font-size: 2.8rem;
  display: inline-block;
}

/* About Section */
.about-section {
  background-color: #fdfaf5;
}

.section-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}

/* Current Read Section */
.current-read-section {
  background-color: var(--color-cream);
}

.current-read-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(122, 0, 60, 0.1);
  align-items: center;
  max-width: 600px;
  padding: 1.5rem;
}

.book-cover {
  width: 200px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.book-cover svg {
  width: 100%;
  height: 100%;
}

.book-details h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--color-maroon);
  margin-bottom: 0.5rem;
}

.author {
  color: var(--color-burnt-orange);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.description {
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.book-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  background-color: #f5ead9;
  color: var(--color-maroon);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Meetings Section */
.meetings-section {
  background-color: #fdfaf5;
}

.meetings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.meeting-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(122, 0, 60, 0.1);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--color-burnt-orange);
}

.meeting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(122, 0, 60, 0.15);
}

.meeting-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.meeting-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--color-maroon);
  margin-bottom: 1rem;
}

.meeting-card p {
  color: var(--color-text);
  line-height: 1.7;
}

.inline-link {
  color: var(--color-maroon);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: var(--color-burnt-orange);
}

/* Join Section */
.join-section {
  background: linear-gradient(135deg, #fdfaf5 0%, #f5ead9 100%);
}

.join-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.join-content > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.join-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-maroon);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-dark-maroon);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(122, 0, 60, 0.3);
}

.btn-secondary {
  background-color: var(--color-burnt-orange);
  color: white;
}

.btn-secondary:hover {
  background-color: #c9542b;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212, 96, 43, 0.3);
}

/* Social Icons Section */
.social-preview {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(122, 0, 60, 0.2);
  text-align: center;
}

.social-preview p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Linktree Button */
.btn-linktree {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 2rem;
  background-color: var(--color-maroon);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(122, 0, 60, 0.25);
  transition: var(--transition);
}

.btn-linktree:hover {
  background-color: var(--color-dark-maroon);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(122, 0, 60, 0.35);
}

.btn-linktree svg {
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-maroon);
  color: var(--color-cream);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-cream);
}

.footer-section p {
  line-height: 1.6;
  color: rgba(251, 245, 237, 0.8);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: rgba(251, 245, 237, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-burnt-orange);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(251, 245, 237, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--color-cream);
}

.footer-social-link:hover {
  background-color: var(--color-burnt-orange);
  transform: scale(1.1);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 245, 237, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(251, 245, 237, 0.7);
  font-size: 0.9rem;
}

.heart {
  display: inline-block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-item {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(122, 0, 60, 0.1);
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0;
  }

  .nav-link-cta {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    display: block;
  }

  .hamburger {
    display: flex;
  }

  /* Sections */
  .section {
    padding: 2.5rem 1rem;
  }

  .section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  /* Book Card */
  .book-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .book-cover {
    width: 100%;
    max-width: 200px;
    height: 300px;
    margin: 0 auto;
  }

  /* Meetings Grid */
  .meetings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Join Actions */
  .join-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Hero */
  .hero-image-container {
    max-height: none;
    padding-top: 0;
  }

  .bookshelf-divider {
    height: 130px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Typography */
  body {
    font-size: 0.95rem;
  }

  .nav-logo a {
    font-size: 1.2rem;
  }

  .nav-logo-img {
    height: 28px;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  /* Sections */
  .section {
    padding: 1.5rem 1rem;
  }

  /* Book Card */
  .book-card {
    padding: 1rem;
  }

  .book-details h3 {
    font-size: 1.4rem;
  }

  .meta-item {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero-image-container {
    max-height: none;
    padding-top: 0;
  }

  .bookshelf-divider {
    height: 110px;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }
}

/* ================================================================
   NEW STYLES — Current Read page, Newsletter, Nav active state
   ================================================================ */

/* Active nav link indicator */
.nav-link-active {
  color: var(--color-maroon) !important;
  font-weight: 700;
}

.nav-link-active::after {
  width: 100% !important;
}

/* Screen-reader-only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Current Read Widget Card (home page) ===== */
.hw-loading {
  text-align: center;
  font-style: italic;
  color: var(--color-burnt-orange);
  padding: 2rem 0;
}

.hw-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.hw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(122, 0, 60, 0.15);
}

.hw-cover {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hw-cover img {
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.hw-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hw-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hw-title {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  color: var(--color-maroon);
  margin: 0;
  line-height: 1.3;
}

.hw-rating {
  background: var(--color-burnt-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.hw-author {
  font-style: italic;
  color: var(--color-burnt-orange);
  font-size: 1rem;
  margin: 0;
}

.hw-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0.25rem 0 0;
}

.hw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.hw-tag {
  background: var(--color-cream);
  color: var(--color-maroon);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 0, 60, 0.15);
  font-family: 'Poppins', sans-serif;
}

.hw-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.hw-cta {
  font-weight: 600;
  color: var(--color-maroon);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.hw-card:hover .hw-cta {
  color: var(--color-burnt-orange);
}

.hw-goodreads {
  font-size: 0.85rem;
  color: var(--color-burnt-orange);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.hw-error {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hw-error p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

/* Widget responsive */
@media (max-width: 768px) {
  .hw-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.4rem;
    gap: 1.2rem;
  }

  .hw-cover {
    justify-content: center;
  }

  .hw-cover img {
    max-width: 140px;
  }

  .hw-header {
    justify-content: center;
  }

  .hw-tags {
    justify-content: center;
  }

  .hw-footer {
    justify-content: center;
  }

  .hw-title {
    font-size: 1.2rem;
  }
}

/* ===== Home Widget Grid (two-book layout) ===== */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hw-grid .hw-card {
  max-width: none;
}

@media (max-width: 768px) {
  .hw-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== Meetings & Events Section (home page) ===== */
.meetings-events-section {
  background: linear-gradient(135deg, #fdfaf5 0%, #f5ead9 100%);
}

.me-subsection {
  margin-bottom: 2.5rem;
}

.me-subsection:last-child {
  margin-bottom: 0;
}

.me-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--color-maroon);
  margin-bottom: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Monthly Picks grid */
.me-picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.me-pick-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  background: white;
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 4px 16px rgba(122, 0, 60, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.me-pick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 0, 60, 0.14);
}

.me-pick-cover {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.me-pick-cover img {
  width: 100%;
  max-width: 100px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.me-pick-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.me-pick-title {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: var(--color-maroon);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.me-pick-author {
  font-style: italic;
  color: var(--color-burnt-orange);
  font-size: 0.9rem;
  margin: 0;
}

.me-pick-meeting {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: var(--color-text);
  margin-top: 0.25rem;
}

.me-pick-notes {
  font-size: 0.85rem;
  color: #8a7d73;
  font-style: italic;
  margin-top: 0.15rem;
}

.me-pick-details-btn {
  margin-top: 0.6rem;
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  text-decoration: none;
}

/* Events grid */
.me-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.me-event-card {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(122, 0, 60, 0.08);
  border-left: 4px solid var(--color-burnt-orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.me-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 0, 60, 0.14);
}

.me-event-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: var(--color-maroon);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.me-event-datetime {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--color-burnt-orange);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.me-event-location {
  font-size: 0.88rem;
  color: #8a7d73;
  margin-bottom: 0.5rem;
}

.me-event-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.me-event-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.me-event-ig-btn,
.me-event-rsvp-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.me-event-ig-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
}

.me-event-ig-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.me-event-rsvp-btn {
  background: var(--color-maroon);
  color: white;
}

.me-event-rsvp-btn:hover {
  background: var(--color-dark-maroon);
  transform: translateY(-1px);
}

.me-no-events {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #8a7d73;
  font-style: italic;
  padding: 2rem 0;
}

.me-loading {
  text-align: center;
  font-style: italic;
  color: var(--color-burnt-orange);
  padding: 1.5rem 0;
  font-family: 'Poppins', sans-serif;
}

.me-error {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--color-burnt-orange);
  padding: 1.5rem 0;
  font-style: italic;
}

/* Meetings & Events responsive */
@media (max-width: 768px) {
  .me-picks-grid,
  .me-events-grid {
    grid-template-columns: 1fr;
  }

  .me-pick-card {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1.1rem;
  }

  .me-pick-cover img {
    max-width: 80px;
  }

  .me-subheading {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .me-pick-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .me-pick-cover {
    justify-content: center;
  }

  .me-pick-cover img {
    max-width: 100px;
  }

  .me-event-actions {
    justify-content: center;
  }
}

/* ===== Newsletter Section (home page) ===== */
.newsletter-section {
  background: linear-gradient(135deg, #fdfaf5 0%, #f5ead9 100%);
}

.newsletter-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content > p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  max-width: 340px;
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-beige);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: white;
  color: var(--color-text);
  transition: var(--transition);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-maroon);
  box-shadow: 0 0 0 3px rgba(122, 0, 60, 0.15);
}

.newsletter-btn {
  white-space: nowrap;
}

.newsletter-msg {
  margin-top: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.newsletter-success {
  color: #2e7d32;
  font-weight: 600;
}

.newsletter-error {
  color: #c62828;
  font-weight: 600;
}

/* ===== Page Hero (current-read.html) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-dark-maroon) 100%);
  color: var(--color-cream);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Current Book Feature Card ===== */
.cr-book-section {
  background-color: var(--color-cream);
}

.cr-book-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 28px rgba(122, 0, 60, 0.1);
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.cr-book-cover {
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.cr-book-cover img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, var(--color-dark-red), var(--color-maroon));
  min-height: 320px;
  object-fit: cover;
}

.cr-book-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-maroon);
  margin-bottom: 0.3rem;
}

.cr-book-author {
  font-style: italic;
  color: var(--color-burnt-orange);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cr-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cr-tag {
  background-color: #f5ead9;
  color: var(--color-maroon);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.cr-book-summary {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.cr-meeting-info,
.cr-discussion {
  margin-bottom: 1.5rem;
}

.cr-meeting-info h3,
.cr-discussion h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--color-maroon);
  margin-bottom: 0.75rem;
}

.cr-meeting-info ul {
  list-style: none;
  padding: 0;
}

.cr-meeting-info li {
  padding: 0.3rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.cr-discussion ol {
  padding-left: 1.25rem;
}

.cr-discussion li {
  padding: 0.35rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Vote Section ===== */
.cr-vote-section {
  background-color: #fdfaf5;
}

.cr-vote-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cr-vote-content > p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn:disabled,
.btn[disabled] {
  background-color: var(--color-beige);
  color: #8a7d73;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.cr-vote-hint {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #8a7d73;
  font-style: italic;
}

/* ===== Past Reads Grid ===== */
.cr-past-section {
  background-color: var(--color-cream);
}

.cr-past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cr-past-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(122, 0, 60, 0.08);
  border-left: 4px solid var(--color-burnt-orange);
  transition: var(--transition);
}

.cr-past-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(122, 0, 60, 0.13);
}

.cr-past-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: var(--color-maroon);
  margin-bottom: 0.25rem;
}

.cr-past-author {
  font-style: italic;
  color: var(--color-burnt-orange);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.cr-past-month {
  font-size: 0.85rem;
  color: var(--color-maroon);
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.cr-past-blurb {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ===== Past Reads — Loading / Error States ===== */
.loading-state,
.error-state {
  text-align: center;
  padding: 40px;
  font-size: 1.1rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

.error-state {
  color: var(--color-burnt-orange);
  font-style: italic;
}

/* ===== Skeleton Shimmer Cards ===== */
.skeleton-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(122, 0, 60, 0.08);
  border-left: 4px solid #e0d6ce;
}

.skeleton-line {
  border-radius: 4px;
  background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

.skeleton-title {
  height: 18px;
  width: 65%;
  margin-bottom: 0.65rem;
}

.skeleton-author {
  height: 14px;
  width: 45%;
  margin-bottom: 0.85rem;
}

.skeleton-blurb {
  height: 12px;
  width: 100%;
  margin-bottom: 0.45rem;
}

.skeleton-blurb.short {
  width: 70%;
}

@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0   50%; }
}

/* ===== NEW RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 1rem 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  #cr-books-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .cr-book-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .cr-book-cover {
    width: 180px;
    margin: 0 auto;
  }

  .cr-book-cover img {
    min-height: 260px;
  }

  .cr-past-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-input {
    max-width: none;
  }
}

/* ===== NEW RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .cr-book-title {
    font-size: 1.5rem;
  }

  .cr-book-cover {
    width: 150px;
  }

  .cr-book-cover img {
    min-height: 220px;
  }

  .btn-large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

/* ===== Loading / API States ===== */
.cr-loading-msg {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #8a7d73;
  padding: 2rem 0 1rem;
}

.cr-past-month {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ===== Goodreads Button ===== */
.btn-goodreads {
  margin-top: 1rem;
  text-align: center;
}

/* ===== Error / Fallback Message ===== */
.cr-error-msg {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--color-burnt-orange);
  padding: 2rem 0;
  font-style: italic;
}

/* ===== Trivia Page ===== */
.trivia-section {
  background-color: var(--color-cream);
}

.trivia-section.alt {
  background-color: #fdfaf5;
}

.trivia-card {
  background: white;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 24px rgba(122, 0, 60, 0.1);
  border-left: 4px solid var(--color-burnt-orange);
}

.trivia-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
}

.trivia-table thead th {
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-maroon);
  border-bottom: 2px solid #f0e1d6;
  padding: 0.75rem 0.5rem;
}

.trivia-table tbody td {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid #f3e7df;
  color: var(--color-text);
  font-size: 0.98rem;
}

.trivia-table tbody tr:last-child td {
  border-bottom: none;
}

.trivia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--color-maroon);
}

.trivia-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.trivia-meta-item {
  background: #f5ead9;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  color: var(--color-maroon);
  font-weight: 600;
}

.trivia-meta-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #7a675f;
  margin-top: 0.25rem;
}

.trivia-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.trivia-archive-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(122, 0, 60, 0.08);
  border-top: 3px solid var(--color-burnt-orange);
}

.trivia-archive-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-maroon);
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.trivia-archive-card p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.trivia-empty {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #8a7d73;
  padding: 1.5rem 0;
}

/* ===== Admin Trivia ===== */
.admin-section {
  background: linear-gradient(135deg, #fdfaf5 0%, #f5ead9 100%);
}

.admin-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 28px rgba(122, 0, 60, 0.12);
}

.admin-card h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-maroon);
  margin-bottom: 1rem;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 0.35rem;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 2px solid #e8d9cd;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
  transition: var(--transition);
}

.admin-field input:focus,
.admin-field textarea:focus {
  outline: none;
  border-color: var(--color-maroon);
  box-shadow: 0 0 0 3px rgba(122, 0, 60, 0.12);
}

.admin-field textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.admin-message {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  min-height: 1.2rem;
}

.admin-message.success {
  color: #2e7d32;
  font-weight: 600;
}

.admin-message.error {
  color: #c62828;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trivia-card {
    padding: 1.25rem;
  }

  .trivia-table thead {
    display: none;
  }

  .trivia-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #f3e7df;
    padding: 0.65rem 0;
  }

  .trivia-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-maroon);
  }

  .admin-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trivia-meta {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

