/*
  Golden Sidebar Editorial Theme
  Visual DNA: Inspired by a sidebar-layout template with warm gold palette,
  geometric rounded typography, rotated decorative elements, and gradient accents.
*/

/* -----------------------------------------------
   CUSTOM PROPERTIES
----------------------------------------------- */
:root {
  --gold:               #d6a354;
  --gold-light:         #e4bc7a;
  --gold-dark:          #b8862e;
  --crimson:            #c12828;
  --crimson-dark:       #9e1f1f;
  --teal:               #22c1c3;
  --amber:              #fdbb2d;
  --gradient-warm:      linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%);
  --gradient-hero:      linear-gradient(120deg, rgba(253,187,45,0.72) 0%, rgba(34,193,195,0.65) 100%);

  --bg-dark:            #111111;
  --bg-section:         #0d0d0d;
  --bg-card:            #1a1a1a;
  --bg-card-hover:      #222222;

  --text-primary:       #f0ece4;
  --text-secondary:     #a09a8e;
  --text-muted:         #6b6560;

  --radius-lg:          100px;
  --radius-md:          16px;
  --radius-sm:          8px;

  --sidebar-width:      280px;

  --font-display:       'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
  --font-body:          Georgia, 'Times New Roman', Times, serif;

  --fs-hero:            clamp(2.4rem, 5vw, 4.2rem);
  --fs-h2:              clamp(1.6rem, 3vw, 2.6rem);
  --fs-h3:              clamp(1.2rem, 2vw, 1.6rem);
  --fs-body:            1.05rem;
  --fs-small:           0.875rem;
  --fs-micro:           0.78rem;

  --transition:         0.3s ease;
}

/* -----------------------------------------------
   RESET & BASE
----------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--amber);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* -----------------------------------------------
   SKIP LINK (Accessibility)
----------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.5rem 1.2rem;
  z-index: 9999;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
  color: var(--bg-dark);
}

/* -----------------------------------------------
   SIDEBAR NAVIGATION
----------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--gold);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.sidebar__brand {
  margin-bottom: 2.8rem;
  text-align: center;
}

.sidebar__logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 0.5rem;
}

.sidebar__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sidebar__tagline {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  color: rgba(0,0,0,0.55);
  margin-top: 0.25rem;
}

.sidebar__nav {
  list-style: none;
  text-align: center;
  width: 100%;
}

.sidebar__nav-item {
  margin-bottom: 0.4rem;
}

.sidebar__nav-link {
  display: block;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-dark);
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.sidebar__nav-link:hover,
.sidebar__nav-link.active {
  background: rgba(0,0,0,0.15);
  color: #fff;
}

.sidebar__contact {
  margin-top: 2rem;
  text-align: center;
}

.sidebar__email {
  font-size: var(--fs-micro);
  color: var(--bg-dark);
  opacity: 0.7;
  word-break: break-all;
}

.sidebar__email:hover {
  opacity: 1;
  color: var(--bg-dark);
}

/* -----------------------------------------------
   MOBILE HAMBURGER
----------------------------------------------- */
.hamburger {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-dark);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.2s;
  border-radius: 2px;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------------------------
   MAIN CONTENT AREA
----------------------------------------------- */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* -----------------------------------------------
   HERO SECTION
----------------------------------------------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 3.5rem;
  overflow: hidden;
  border-bottom: 12px solid var(--gold);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__title em {
  font-style: italic;
  color: var(--amber);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.hero__subtitle p {
  margin-bottom: 0.5rem;
}

.hero__cta {
  display: inline-block;
  padding: 0.65rem 2rem;
  border: 2px solid #fff;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  transition: background var(--transition), color var(--transition);
}

.hero__cta:hover {
  background: #fff;
  color: var(--bg-dark);
}

/* Decorative rotated block */
.hero__decor {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  right: -20px;
  width: 260px;
  height: 260px;
  border: 10px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(6px);
  text-align: center;
}

.hero__decor-text {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  color: #fff;
}

/* -----------------------------------------------
   SECTION COMMON
----------------------------------------------- */
.section {
  padding: 5rem 3.5rem;
}

.section--alt {
  background-color: var(--bg-section);
}

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section__title {
  font-size: var(--fs-h2);
  margin-bottom: 0.6rem;
}

.section__intro {
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 2.8rem;
  border-bottom: 2px solid var(--bg-card);
  padding-bottom: 1.6rem;
}

/* -----------------------------------------------
   TOPICS — THEMATIC CATEGORIES
----------------------------------------------- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.topic-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}

.topic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transition: width var(--transition);
}

.topic-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.topic-card:hover::before {
  width: 6px;
}

.topic-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}

.topic-card__desc {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.topic-card__desc p {
  margin-bottom: 0.4rem;
}

/* -----------------------------------------------
   LATEST POSTS — MAGAZINE LAYOUT
----------------------------------------------- */
.posts-section {
  position: relative;
}

.posts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.5rem;
  right: 3.5rem;
  height: 1px;
  background: var(--gradient-warm);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.post-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.post-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.post-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.post-card--featured .post-card__img-wrap {
  aspect-ratio: auto;
  min-height: 300px;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__img {
  transform: scale(1.06);
}

.post-card__body {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-card__date {
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}

.post-card__title a {
  color: var(--text-primary);
}

.post-card__title a:hover {
  color: var(--gold);
}

.post-card--featured .post-card__title {
  font-size: 1.5rem;
}

.post-card__excerpt {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.post-card__excerpt p {
  margin-bottom: 0.3rem;
}

.post-card__readmore {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.post-card__readmore:hover {
  border-color: var(--gold);
  color: var(--amber);
}

.posts-more {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* -----------------------------------------------
   FAQ — EXPANDABLE
----------------------------------------------- */
.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  margin-left: 1rem;
  transition: background var(--transition), transform var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-item__icon::before {
  width: 12px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-item__icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--bg-dark);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-item.is-open .faq-item__answer {
  max-height: 600px;
  padding: 0 0 1.5rem 0;
}

.faq-item__answer-inner {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.faq-item__answer-inner p {
  margin-bottom: 0.5rem;
}

/* -----------------------------------------------
   FEATURED BANNER (gradient overlay section)
----------------------------------------------- */
.featured-banner {
  position: relative;
  padding: 4.5rem 3.5rem;
  text-align: center;
  overflow: hidden;
}

.featured-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-warm);
  opacity: 0.9;
}

.featured-banner__inner {
  position: relative;
  z-index: 2;
}

.featured-banner__title {
  font-size: var(--fs-h2);
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.featured-banner__text {
  color: rgba(0,0,0,0.7);
  font-size: 1rem;
}

.featured-banner__cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 2rem;
  background: var(--bg-dark);
  color: var(--gold);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition);
}

.featured-banner__cta:hover {
  background: var(--crimson);
  color: #fff;
}

/* -----------------------------------------------
   PAGE TEMPLATE
----------------------------------------------- */
.page-header {
  padding: 4rem 3.5rem 2rem;
  border-bottom: 12px solid var(--gold);
}

.page-header__title {
  font-size: var(--fs-hero);
}

.page-content {
  padding: 3rem 3.5rem 5rem;
  max-width: 800px;
}

.page-content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.8rem;
}

.page-content h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.6rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  color: var(--text-secondary);
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
}

.page-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* -----------------------------------------------
   BLOG INDEX
----------------------------------------------- */
.blog-header {
  padding: 3.5rem 3.5rem 2rem;
}

.blog-header__title {
  font-size: var(--fs-h2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  padding: 0 3.5rem 4rem;
}

/* -----------------------------------------------
   PAGINATION
----------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 3.5rem 4rem;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}

.pagination__link:hover {
  background: var(--bg-card);
  color: var(--gold);
}

.pagination__link.active {
  background: var(--gold);
  color: var(--bg-dark);
}

.pagination__prev,
.pagination__next {
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 0.4rem 1rem;
}

.pagination__prev:hover,
.pagination__next:hover {
  color: var(--amber);
}

/* -----------------------------------------------
   POST (single article)
----------------------------------------------- */
.post-header {
  padding: 4rem 3.5rem 2rem;
  border-bottom: 12px solid var(--gold);
}

.post-header__date {
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.post-header__title {
  font-size: var(--fs-hero);
  margin-bottom: 1rem;
}

.post-header__excerpt {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.post-cover {
  padding: 0 3.5rem;
  margin-top: 2rem;
}

.post-cover img {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 480px;
  object-fit: cover;
}

.post-body {
  padding: 3rem 3.5rem 5rem;
  max-width: 800px;
}

.post-body h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.8rem;
}

.post-body h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.6rem;
}

.post-body p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.post-body ul,
.post-body ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  color: var(--text-secondary);
}

.post-body li {
  margin-bottom: 0.4rem;
}

.post-body a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
}

.post-body img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-primary);
  font-style: italic;
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
.site-footer {
  position: relative;
  padding: 3.5rem 3.5rem 2rem;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gradient-warm);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-brand__tagline {
  color: var(--text-muted);
  font-size: var(--fs-micro);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-contact {
  text-align: right;
}

.footer-contact__label {
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.footer-contact__email {
  color: var(--gold);
  font-size: var(--fs-small);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.footer-copyright {
  font-size: var(--fs-micro);
  color: var(--text-muted);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  transition: background var(--transition), color var(--transition);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 992px) {
  .sidebar {
    position: fixed;
    width: 260px;
    left: -260px;
    transition: left 0.35s ease;
    z-index: 300;
  }

  .sidebar.is-open {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .hero {
    padding: 3rem 1.8rem;
    min-height: 60vh;
  }

  .hero__decor {
    display: none;
  }

  .section {
    padding: 3.5rem 1.8rem;
  }

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

  .posts-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-card--featured {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-contact {
    text-align: left;
  }

  .page-header,
  .page-content,
  .blog-header,
  .post-header,
  .post-cover,
  .post-body,
  .site-footer {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .blog-grid {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .pagination {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .posts-section::before {
    left: 1.8rem;
    right: 1.8rem;
  }

  .featured-banner {
    padding: 3rem 1.8rem;
  }
}

@media (max-width: 600px) {
  :root {
    --fs-body: 0.95rem;
  }

  .hero {
    min-height: 50vh;
    padding: 2.5rem 1.2rem;
  }

  .section {
    padding: 2.5rem 1.2rem;
  }

  .post-card--featured .post-card__title {
    font-size: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-header,
  .page-content,
  .blog-header,
  .post-header,
  .post-cover,
  .post-body,
  .site-footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .blog-grid {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .pagination {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .featured-banner {
    padding: 2.5rem 1.2rem;
  }
}

/* -----------------------------------------------
   OVERLAY for mobile sidebar
----------------------------------------------- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 250;
}

.sidebar-overlay.is-visible {
  display: block;
}

/* -----------------------------------------------
   FOCUS STYLES
----------------------------------------------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
