/* ============================================================
   LABELEEN BLOG — main.css  v2.0.0
   Semua CSS dikelola di sini, bukan di style.css.
   Urutan: Tokens → Reset → Typography → Utilities →
           Nav → Page Header → Blog Grid → Single Post →
           Sidebar → Pagination → Footer → Responsive → A11y
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --blue:        #4A58A2;
  --coral:       #EF6F5B;
  --yellow:      #F8DC7B;

  /* Tints */
  --blue-dark:   #323d76;
  --blue-light:  #eef0fa;
  --coral-light: #fdf0ee;
  --yellow-faint: rgba(248,220,123,.25);

  /* Neutrals */
  --ink:   #1a1a2e;
  --mid:   #5a5a7a;
  --muted: #9090b0;
  --white: #ffffff;
  --off:   #f9f9fc;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radius */
  --r-xl:  20px;
  --r-md:  12px;
  --r-sm:  8px;
  --r-xs:  4px;

  /* Shadow */
  --shadow-sm: 0 2px 8px  rgba(74,88,162,.08);
  --shadow-md: 0 8px 28px rgba(74,88,162,.12);
  --shadow-lg: 0 16px 48px rgba(74,88,162,.16);

  /* Layout */
  --content-max: 1200px;
  --article-max: 720px;
  --gap: 1.4rem;

  /* Transitions */
  --ease: .2s ease;
}


/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: color var(--ease); }

ul, ol { list-style: none; }


/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw,   3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem;   font-weight: 700; }
h6 { font-size: .9rem;  font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* ============================================================
   4. UTILITIES
   ============================================================ */
.container {
  width: min(var(--content-max), 90%);
  margin-inline: auto;
}

/* Tag / Badge pill */
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .32em .9em;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  white-space: nowrap;
}
.tag--blue  { background: var(--blue-light); color: var(--blue); }
.tag--coral { background: var(--coral-light); color: var(--coral); }
.tag--ghost { background: rgba(255,255,255,.15); color: var(--yellow); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .82em 2em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-primary { background: var(--blue);   color: var(--white); }
.btn-coral   { background: var(--coral);  color: var(--white); }
.btn-yellow  { background: var(--yellow); color: var(--ink);   }
.btn-white   { background: var(--white);  color: var(--blue);  }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-sm      { font-size: .8rem; padding: .6em 1.3em; }

/* Section header block */
.section-header         { text-align: center; margin-bottom: 3.5rem; }
.section-header .tag    { margin-bottom: .8rem; }
.section-header h2      { margin: .4rem 0 .7rem; }
.section-header p       { font-size: 1.05rem; color: var(--mid); max-width: 520px; margin-inline: auto; }

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

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue);
  color: var(--white);
  padding: .6em 1.2em;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .9rem;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74,88,162,.1);
  transition: box-shadow var(--ease);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo .accent { color: var(--coral); }
.site-logo img { height: 40px; width: auto; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 1;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .3rem;
  border-radius: var(--r-xs);
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .8rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(74,88,162,.08);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  padding: .25rem 0;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn { align-self: flex-start; margin-top: .4rem; }


/* ============================================================
   6. PAGE / SECTION HERO (dipakai header.php via body class)
   ============================================================ */
.page-hero {
  background: linear-gradient(155deg, var(--blue-light) 0%, var(--white) 65%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--yellow-faint) 0%, transparent 70%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(239,111,91,.09) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .tag       { margin-bottom: 1.1rem; }
.page-hero h1         { margin-bottom: .8rem; }
.page-hero h1 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.page-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
}
.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 520px;
  margin-inline: auto;
}


/* ============================================================
   7. BLOG GRID (index.php)
   ============================================================ */
.blog-section { padding: 5rem 0 6rem; background: var(--off); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

/* Post card */
.post-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(74,88,162,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Thumbnail */
.post-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--blue-light);
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--yellow-faint) 100%);
}

/* Card body */
.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .55rem;
}

.post-card__meta { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }

.post-card__cat {
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .24em .7em;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  transition: background var(--ease), color var(--ease);
}
.post-card__cat:hover { background: var(--blue); color: var(--white); }

.post-card__date { font-size: .76rem; color: var(--muted); }

.post-card__title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; line-height: 1.25; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--blue); }

.post-card__excerpt {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(74,88,162,.07);
}

.post-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--ease), color var(--ease);
}
.post-card__read-more:hover { color: var(--coral); gap: .5rem; }

.post-card__read-time { font-size: .74rem; color: var(--muted); }

/* No posts state */
.no-posts { text-align: center; padding: 5rem 2rem; color: var(--mid); }
.no-posts .icon { font-size: 4rem; margin-bottom: 1rem; }
.no-posts h2 { color: var(--ink); margin-bottom: .6rem; }


/* ============================================================
   8. PAGINATION
   ============================================================ */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

/* WordPress generates <ul class="page-numbers"> */
.page-numbers {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.page-numbers li a,
.page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 .8em;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  border: 1.5px solid rgba(74,88,162,.14);
  color: var(--mid);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.page-numbers li a:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }
.page-numbers li span.current { background: var(--blue); color: var(--white); border-color: var(--blue); }
.page-numbers li span.dots { border: none; background: transparent; color: var(--muted); }


/* ============================================================
   9. SINGLE POST HERO
   ============================================================ */
.single-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(155deg, var(--blue-light) 0%, var(--white) 65%);
  position: relative;
  overflow: hidden;
}
.single-hero::before {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--yellow-faint) 0%, transparent 70%);
  top: -120px; right: -80px;
  pointer-events: none;
}
.single-hero .container { position: relative; z-index: 1; }

/* Category pills */
.single-hero__cats { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.single-hero__cats a {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .26em .8em;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
}
.single-hero__cats a:hover { background: var(--blue); color: var(--white); }

.single-hero__title { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 820px; margin-bottom: 1.4rem; }

/* Author / date / time row */
.single-hero__meta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; font-size: .87rem; color: var(--mid); }
.single-hero__meta-item { display: flex; align-items: center; gap: .4rem; }
.single-hero__meta .icon { font-size: 1rem; flex-shrink: 0; }
.single-hero__meta a { color: var(--blue); font-weight: 600; }
.single-hero__meta a:hover { color: var(--coral); }


/* ============================================================
   10. SINGLE POST CONTENT LAYOUT
   ============================================================ */
.single-wrap { padding: 3rem 0 5rem; }

.single-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 3.5rem;
  align-items: start;
}

/* Featured image */
.single-featured {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}
.single-featured-caption {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin-top: -2rem;
  margin-bottom: 2rem;
}


/* ============================================================
   11. ARTICLE CONTENT TYPOGRAPHY (the_content)
   ============================================================ */
.entry-content {
  font-size: 1.06rem;
  line-height: 1.88;
  color: var(--ink);
  max-width: var(--article-max);
}

.entry-content > * + * { margin-top: 1.4rem; }

/* Headings inside content */
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 { margin-top: 2.4rem; margin-bottom: .6rem; }

.entry-content h2 {
  font-size: 1.75rem;
  padding-left: .9rem;
  border-left: 4px solid var(--coral);
}
.entry-content h3 { font-size: 1.35rem; }
.entry-content h4 { font-size: 1.1rem;  color: var(--blue); }

/* Links */
.entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(74,88,162,.35);
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--coral); text-decoration-color: var(--coral); }

/* Lists */
.entry-content ul,
.entry-content ol { padding-left: 1.6rem; display: flex; flex-direction: column; gap: .45rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { color: var(--mid); }

/* Blockquote */
.entry-content blockquote {
  border-left: 4px solid var(--yellow);
  background: var(--yellow-faint);
  padding: 1.2rem 1.6rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 2rem 0;
}
.entry-content blockquote cite { font-size: .8rem; color: var(--muted); font-style: normal; display: block; margin-top: .6rem; }

/* Code */
.entry-content code {
  font-family: 'Courier New', monospace;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: .14em .44em;
  border-radius: var(--r-xs);
  font-size: .87em;
}
.entry-content pre {
  background: var(--ink);
  color: var(--yellow);
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-md);
  overflow-x: auto;
  font-size: .86rem;
  line-height: 1.65;
  margin: 2rem 0;
}
.entry-content pre code { background: none; color: inherit; padding: 0; font-size: inherit; }

/* Images */
.entry-content img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-sm); margin: 1.4rem 0; }

/* Tables */
.entry-content table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 1.6rem 0; border-radius: var(--r-md); overflow: hidden; }
.entry-content th { background: var(--blue); color: var(--white); padding: .7rem 1rem; text-align: left; font-family: var(--font-display); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.entry-content td { padding: .65rem 1rem; border-bottom: 1px solid rgba(74,88,162,.08); color: var(--mid); }
.entry-content tr:last-child td { border-bottom: none; }
.entry-content tr:nth-child(even) td { background: var(--off); }

/* HR */
.entry-content hr { border: none; border-top: 2px solid rgba(74,88,162,.08); margin: 2.5rem 0; }

/* WordPress caption */
.entry-content .wp-caption { width: auto !important; }
.entry-content .wp-caption-text { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .4rem; }


/* ============================================================
   12. POST TAGS
   ============================================================ */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid rgba(74,88,162,.07);
}
.post-tags__label { font-size: .78rem; font-weight: 700; color: var(--muted); }


/* ============================================================
   13. POST NAVIGATION (prev / next)
   ============================================================ */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}

.post-nav__item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.2rem;
  background: var(--off);
  border-radius: var(--r-md);
  border: 1.5px solid rgba(74,88,162,.07);
  transition: border-color var(--ease), transform var(--ease);
  text-decoration: none;
}
.post-nav__item:hover { border-color: var(--blue); transform: translateY(-2px); }
.post-nav__item--next { text-align: right; }

.post-nav__label { font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.post-nav__title { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.post-nav__item:hover .post-nav__title { color: var(--blue); }


/* ============================================================
   14. SIDEBAR
   ============================================================ */
.sidebar { position: sticky; top: 5.5rem; }

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid rgba(74,88,162,.08);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  margin-bottom: 1.3rem;
}
.sidebar-widget:last-child { margin-bottom: 0; }

.sidebar-widget__title {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.1rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--yellow);
}

/* Recent posts */
.sidebar-post { display: flex; gap: .8rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid rgba(74,88,162,.06); }
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-post__thumb {
  width: 58px; height: 58px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.sidebar-post__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-sm); }
.sidebar-post__title { font-family: var(--font-display); font-size: .83rem; font-weight: 700; color: var(--ink); line-height: 1.3; display: block; margin-bottom: .22rem; }
.sidebar-post__title:hover { color: var(--blue); }
.sidebar-post__date { font-size: .72rem; color: var(--muted); }

/* Categories */
.sidebar-cats { display: flex; flex-direction: column; gap: .3rem; }
.sidebar-cats a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .87rem; color: var(--mid);
  padding: .4rem .55rem;
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
}
.sidebar-cats a:hover { background: var(--blue-light); color: var(--blue); }
.sidebar-cats .count {
  font-size: .7rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: .14em .5em;
  border-radius: 999px;
  font-weight: 700;
}

/* Share buttons */
.share-btns { display: flex; gap: .55rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: .32rem;
  font-size: .76rem; font-weight: 600;
  padding: .44em .9em;
  border-radius: var(--r-sm);
  transition: transform var(--ease), opacity var(--ease);
  color: var(--white);
  text-decoration: none;
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.share-btn:hover { transform: translateY(-2px); opacity: .9; color: var(--white); }
.share-wa      { background: #25D366; }
.share-twitter { background: #1DA1F2; }
.share-copy    { background: var(--blue); }

/* CTA widget */
.sidebar-cta {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  text-align: center;
}
.sidebar-cta p:first-of-type { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.sidebar-cta p:last-of-type  { font-size: .82rem; color: rgba(255,255,255,.72); margin-bottom: 1.2rem; }


/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .site-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .86rem; line-height: 1.75; max-width: 250px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .86rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a:hover { color: var(--yellow); }


/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .single-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
  }
  .sidebar-widget { margin-bottom: 0; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links,
  .nav-cta-desktop  { display: none; }
  .hamburger        { display: flex; }

  .blog-grid   { grid-template-columns: 1fr; }
  .post-nav    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}


/* ============================================================
   17. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   18. ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
