/* Thrivevora Wellness Topics Page */
:root {
  --cream: #f5f3ee;
  --warm-white: #fffdf8;
  --white: #ffffff;
  --sage: #e9f1e4;
  --green: #72b34a;
  --green-dark: #4f8b35;
  --dark: #223127;
  --muted: #617066;
  --border: #dfe8d8;
  --shadow: 0 18px 45px rgba(34, 49, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-logo {
    height:240px;
    width:auto;
    display:block;
    margin-top: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover {
  color: var(--green-dark);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(114,179,74,0.20), transparent 34%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hero-inner {
  padding: 82px 0 56px;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  background: var(--sage);
  color: var(--green-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 auto;
  max-width: 720px;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(34, 49, 39, 0.055);
  min-height: 315px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topic-card.live:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.topic-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--sage);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-size: 28px;
  margin-bottom: 18px;
}

.badge {
  width: fit-content;
  border-radius: 999px;
  background: var(--sage);
  border: 1px solid var(--border);
  color: var(--green-dark);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 18px;
}

.badge.muted {
  color: var(--muted);
}

.topic-card h2 {
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}

.topic-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.card-link {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
}

.muted-link {
  color: var(--muted);
}

.about-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--sage), var(--warm-white));
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.about-box h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin: 0 0 14px;
}

.about-box p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto 24px;
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 850;
  border: 1px solid var(--green);
  box-shadow: 0 12px 25px rgba(114, 179, 74, 0.20);
}

.btn:hover {
  opacity: 0.94;
}

.footer {
  background: #223127;
  color: #ffffff;
  padding: 14px 0 18px;
  text-align: center;

}

.footer-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}
.footer-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 14px 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-column h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 15px;
}

.footer-column a {
  color: #d7e0d8;
  font-size: 14px;
}

.footer-column a:hover {
  color: #72b34a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 12px;
  margin-top: 14px;
  text-align: center;
}

.footer-bottom p {
  margin: 0 auto 8px;
  font-size: 13px;
  color: #d7e0d8;
  text-align: center;

}

.footer-disclaimer {
  width: 1150px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 13px;
  color: #d7e0d8;
  text-align: center;
}

@media (max-width: 980px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 70px;
  }

  .nav a:not(.active) {
    display: none;
  }

  .brand {
    font-size: 23px;
  }

  .hero-inner {
    padding: 58px 0 42px;
  }

  .section {
    padding: 54px 0;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: unset;
  }

  .about-box {
    padding: 34px 24px;
  }

  .btn {
    width: 100%;
  }
}
