/* =============================================
   UK Hill – Uttarakhand Tourism
   Core Stylesheet  |  Theme matched to logo gradient
   Logo gradient: #F09819 → #FF4E50 → #FF1361 → #341369
   ============================================= */

/* ---------- Variables ---------- */
:root {
  /* Brand gradient stops (from logo) */
  --brand-gold:   #F09819;
  --brand-red:    #FF4E50;
  --brand-pink:   #FF1361;
  --brand-purple: #341369;

  /* Primary accent = gold-orange from logo */
  --orange:       #F09819;
  --orange-light: #ffb347;

  /* Dark anchors — purple from logo */
  --green:        #341369;
  --green-light:  #4a1f8f;
  --green-dark:   #1e0a42;

  /* Supporting tones */
  --blue:         #1e4d8c;
  --blue-light:   #2e6fc7;
  --cream:        #fdf8f2;
  --white:        #ffffff;
  --gray-100:     #f5f5f5;
  --gray-200:     #e8e8e8;
  --gray-500:     #888888;
  --gray-700:     #444444;
  --text:         #1a1a2e;

  --radius:       8px;
  --shadow:       0 2px 16px rgba(52,19,105,0.10);
  --shadow-lg:    0 8px 40px rgba(52,19,105,0.18);
  --font-body:    Arial, Helvetica, sans-serif;
  --font-display: Arial, Helvetica, sans-serif;
  --header-h:     72px;
  --max-w:        1200px;

  /* Logo gradient as CSS gradient */
  --logo-gradient: linear-gradient(135deg, #F09819 0%, #FF4E50 33%, #FF1361 67%, #341369 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--green); text-decoration: none; }
a:hover { color: var(--orange); }
ul   { list-style: none; }

/* ---------- Utilities ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section--alt { background: var(--cream); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; color: var(--green-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--gray-700); }
.lead { font-size: 1.15rem; color: var(--gray-700); max-width: 700px; }

.section__header { text-align: center; margin-bottom: 48px; }
.section__header p { margin: 12px auto 0; }
.section__subtitle {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--green);
  color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 0 0 var(--radius) 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 3px solid transparent;
  border-image: var(--logo-gradient) 1;
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(52,19,105,.10);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo__img {
  height: 44px;
  width: auto;
  display: block;
  /* logo SVG has white bg — show on header */
}
.logo__img--footer {
  height: 38px;
  /* invert to show on dark footer */
  opacity: 0.92;
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav__list   { display: flex; align-items: center; gap: 4px; }
.nav__item   { position: relative; }
.nav__link {
  display: block; padding: 8px 14px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text); border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.nav__link:hover, .nav__item--active > .nav__link { color: var(--green); }
.nav__link--cta {
  background: var(--logo-gradient); color: var(--white) !important;
  padding: 8px 18px; border-radius: 50px;
}
.nav__link--cta:hover { opacity: .88; }
.nav__arrow { font-size: 0.7rem; opacity: .6; }

/* Dropdown */
.nav__dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px 0; z-index: 600;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown { display: block; }
.nav__dropdown li a {
  display: block; padding: 9px 20px;
  font-size: 0.85rem; color: var(--gray-700);
  transition: background .15s, color .15s;
}
.nav__dropdown li a:hover { background: var(--cream); color: var(--green); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1e0a42 0%, #341369 40%, #FF1361 75%, #F09819 100%);
  overflow: hidden;
}
.hero--short { min-height: 55vh; }
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .35;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,58,34,.6) 0%, rgba(30,77,140,.5) 100%);
}
.hero__content {
  position: relative; z-index: 2; padding: 80px 0;
  max-width: 760px;
}
.hero__label {
  display: inline-block; background: rgba(255,255,255,.15);
  color: #fff; font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.3);
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title span { color: var(--orange-light); }
.hero__desc { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 32px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn--primary { background: var(--logo-gradient); color: var(--white); border: none; }
.btn--primary:hover { opacity: .9; color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn--outline:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn--green { background: var(--logo-gradient); color: var(--white); border: none; }
.btn--green:hover { opacity: .88; color: var(--white); }

/* Hero stats */
.hero__stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.hero__stat-num  { font-size: 2rem; font-weight: 700; color: var(--orange-light); font-family: var(--font-display); }
.hero__stat-label{ font-size: 0.8rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.cards-grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); padding: 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  border-top: 4px solid transparent;
  border-image: var(--logo-gradient) 1;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--cream); color: var(--orange); padding: 3px 10px;
  border-radius: 50px; margin-bottom: 12px;
}
.card__title { font-size: 1.15rem; margin-bottom: 10px; }
.card__title a { color: var(--green-dark); }
.card__title a:hover { color: var(--orange); }
.card__desc { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 16px; }
.card__link { font-size: 0.85rem; font-weight: 600; color: var(--green); }
.card__link:hover { color: var(--orange); }

/* Category cards (big icons) */
.cat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--white); border-radius: 14px; padding: 36px 24px;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
  border-bottom: 4px solid transparent;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--orange); }
.cat-card__icon { font-size: 3rem; margin-bottom: 16px; }
.cat-card__title { font-size: 1.25rem; color: var(--green-dark); margin-bottom: 8px; }
.cat-card__desc  { font-size: 0.85rem; color: var(--gray-500); }

/* ---------- Feature Strip ---------- */
.features { background: linear-gradient(135deg, #1e0a42 0%, #341369 60%, #FF1361 100%); padding: 48px 0; }
.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.feature__icon  { font-size: 2rem; color: var(--orange-light); margin-bottom: 10px; }
.feature__title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; font-family: var(--font-body); }
.feature__desc  { font-size: 0.82rem; color: rgba(255,255,255,.7); }

/* ---------- District Section ---------- */
.district-band {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.district-item {
  background: var(--cream); border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  transition: background .2s, transform .2s;
  border-left: 4px solid var(--brand-red);
}
.district-item:hover { background: var(--brand-purple); transform: translateX(4px); }
.district-item:hover a { color: var(--white); }
.district-item a { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.district-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--logo-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
  transition: opacity .2s;
}
.district-item:hover .district-badge { opacity: .8; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 14px 0; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.breadcrumb__item { font-size: 0.82rem; color: var(--gray-500); }
.breadcrumb__item a { color: var(--green); }
.breadcrumb__item + .breadcrumb__item::before { content: '/'; margin-right: 6px; color: var(--gray-200); }
.breadcrumb__item--active { color: var(--orange); }

/* ---------- Page Content ---------- */
.page-hero { background: linear-gradient(135deg, #1e0a42 0%, #341369 50%, #FF4E50 100%); padding: 72px 0 56px; color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p  { color: rgba(255,255,255,.85); }

.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 56px 0; }
.content-main h2 { margin-top: 2rem; }
.content-main h3 { margin-top: 1.5rem; color: var(--green); }
.content-main ul { padding-left: 24px; list-style: disc; margin-bottom: 1rem; }
.content-main ul li { margin-bottom: 6px; color: var(--gray-700); }
.content-main table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.content-main th { background: var(--green); color: #fff; padding: 12px 16px; text-align: left; font-size: 0.9rem; }
.content-main td { padding: 11px 16px; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; }
.content-main tr:hover td { background: var(--cream); }

/* Sidebar */
.sidebar__widget { background: var(--cream); border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.sidebar__widget h4 { color: var(--brand-purple); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 3px solid transparent; border-image: var(--logo-gradient) 1; }
.sidebar__widget ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar__widget ul li a { font-size: 0.88rem; color: var(--gray-700); display: flex; align-items: center; gap: 6px; }
.sidebar__widget ul li a::before { content: '→'; color: var(--orange); font-size: 0.75rem; }
.sidebar__widget ul li a:hover { color: var(--green); }
.info-box { background: var(--logo-gradient); color: #fff; border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.info-box h4 { color: #fff; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 10px; margin-bottom: 14px; }
.info-box p  { color: rgba(255,255,255,.88); font-size: 0.88rem; }
.info-box a  { color: var(--orange-light); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--logo-gradient);
  padding: 64px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.9); margin-bottom: 28px; }
.btn--white { background: var(--white); color: var(--orange); }
.btn--white:hover { background: var(--cream); color: var(--orange); }

/* ---------- Site Footer ---------- */
.site-footer { background: linear-gradient(160deg, #1e0a42 0%, #341369 100%); color: rgba(255,255,255,.8); padding: 72px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 40px;
}
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,.65); margin-top: 16px; }
.footer__note { font-size: 0.78rem; color: rgba(255,255,255,.45); }
.footer__col h4 { color: var(--white); margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a { font-size: 0.85rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__col ul li a:hover { color: var(--orange-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; margin-top: 48px; text-align: center; }
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,.45); margin: 4px 0; }
.footer__bottom a { color: rgba(255,255,255,.6); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img { height: 200px; background: linear-gradient(135deg, var(--green), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card__body { padding: 24px; }
.blog-card__cat { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; color: var(--orange); letter-spacing: 1px; margin-bottom: 8px; }
.blog-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card__title a { color: var(--green-dark); }
.blog-card__excerpt { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 16px; }
.blog-card__meta { font-size: 0.78rem; color: var(--gray-500); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff; font-size: 0.82rem; font-weight: 600;
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--green-dark); }
input, select, textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,92,56,.12);
}
textarea { resize: vertical; min-height: 120px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .content-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    overflow-y: auto; padding: 20px;
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__link  { padding: 12px 8px; border-bottom: 1px solid var(--gray-100); }
  .nav__dropdown { position: static; box-shadow: none; border: none; background: var(--cream); padding: 8px 0 8px 16px; display: block; }
  .nav__item--has-dropdown .nav__dropdown { display: none; }
  .nav__item--has-dropdown.open .nav__dropdown { display: block; }
  .hero__stats { gap: 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .cards-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
}

/* =============================================
   Blog Pages
   ============================================= */

/* Blog hero image placeholder */
.blog-hero-img {
  width: 100%; height: 420px;
  background: var(--logo-gradient);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; margin-bottom: 36px;
  position: relative; overflow: hidden;
}
.blog-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(30,10,66,.55));
}
.blog-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

/* Blog article body */
.blog-article h2 { margin-top: 2.2rem; margin-bottom: .6rem; }
.blog-article h3 { margin-top: 1.6rem; margin-bottom: .4rem; color: var(--brand-purple); }
.blog-article p  { font-size: 1rem; line-height: 1.85; color: #333; margin-bottom: 1.1rem; }
.blog-article ul, .blog-article ol { padding-left: 24px; margin-bottom: 1.2rem; }
.blog-article ul { list-style: disc; }
.blog-article ol { list-style: decimal; }
.blog-article li { margin-bottom: 7px; color: #444; line-height: 1.7; }
.blog-article blockquote {
  border-left: 4px solid var(--brand-red);
  background: var(--cream); padding: 16px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--brand-purple);
}
.blog-article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.blog-article th { background: var(--logo-gradient); color: #fff; padding: 11px 16px; text-align: left; font-size: .88rem; }
.blog-article td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); font-size: .88rem; color: #444; }
.blog-article tr:hover td { background: var(--cream); }

/* Inline image placeholder */
.blog-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--logo-gradient);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; margin: 1.5rem 0;
  opacity: .85;
}

/* Author + meta bar */
.blog-meta {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px; flex-wrap: wrap;
}
.blog-meta__tag {
  background: var(--logo-gradient); color: #fff;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 12px; border-radius: 50px;
}
.blog-meta__info { font-size: .82rem; color: var(--gray-500); }

/* Related posts */
.related-posts { margin-top: 48px; padding-top: 32px; border-top: 2px solid var(--gray-200); }
.related-posts h3 { margin-bottom: 20px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.related-card {
  background: var(--cream); border-radius: var(--radius); padding: 18px;
  border-left: 4px solid var(--brand-red); transition: transform .2s;
}
.related-card:hover { transform: translateY(-3px); }
.related-card__cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; color: var(--brand-red); margin-bottom: 6px; }
.related-card__title a { font-size: .9rem; font-weight: 600; color: var(--brand-purple); }
.related-card__title a:hover { color: var(--brand-red); }

/* TOC (Table of Contents) */
.toc {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 24px;
  border-left: 4px solid var(--brand-gold);
}
.toc h4 { color: var(--brand-purple); margin-bottom: 12px; font-size: .95rem; }
.toc ol  { padding-left: 20px; margin: 0; }
.toc ol li { margin-bottom: 5px; }
.toc ol li a { font-size: .85rem; color: var(--brand-purple); }
.toc ol li a:hover { color: var(--brand-red); }
