/* ============================================================
   GoaTaxis Blog — Public CSS
   assets/css/blog.css
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --primary:      #C8602A;
  --primary-dark: #a84e22;
  --accent:       #F0B254;
  --nav-bg:       #2A1F14;
  --bg:           #FAF6EF;
  --bg-card:      #F0E8D8;
  --text:         #2A1F14;
  --text-muted:   #7a6550;
  --text-light:   #b39880;
  --border:       rgba(200,96,42,.18);
  --shadow-card:  0 4px 24px rgba(200,96,42,.10);
  --shadow-hover: 0 14px 40px rgba(200,96,42,.20);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --radius:       10px;
  --transition:   .22s ease;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── CONTAINERS ── */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container--narrow{ max-width: 680px;  margin: 0 auto; padding: 0 32px; }
.text-center      { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px; border-radius: 5px; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary  { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 18px rgba(200,96,42,.4); }
.btn-outline  { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost    { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sm       { padding: 7px 16px; font-size: 11px; }
.btn-full     { width: 100%; }

/* ── READING PROGRESS BAR ── */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--primary); z-index: 999;
  width: 0%; transition: width .1s linear;
}

/* ── FLASH MESSAGES ── */
.flash {
  padding: 12px 24px; font-family: var(--font-sans); font-size: 14px;
  text-align: center;
}
.flash--success { background: #d4edda; color: #155724; }
.flash--error   { background: #f8d7da; color: #721c24; }

/* ── NAV ── */
.site-nav {
  background: var(--nav-bg); height: 60px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 12px;
}
.nav-brand {
  font-family: var(--font-head); color: var(--accent);
  font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-breadcrumb {
  display: flex; align-items: center; gap: 8px; flex: 1;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.nav-breadcrumb .sep { color: rgba(255,255,255,.25); }
.nav-breadcrumb .nav-link { color: rgba(255,255,255,.6); transition: color var(--transition); }
.nav-breadcrumb .nav-link:hover { color: var(--accent); }
.nav-breadcrumb .nav-post-title {
  color: rgba(255,255,255,.4); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 220px;
}
.nav-actions {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.nav-actions .nav-link {
  color: rgba(255,255,255,.6); font-family: var(--font-sans);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-actions .nav-link:hover { color: var(--accent); }

/* ── HERO ── */
.blog-hero {
  position: relative; overflow: hidden; background: var(--nav-bg);
  min-height: 440px; display: flex; align-items: center;
}
.blog-hero--slim { min-height: 280px; }
.blog-hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(200,96,42,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(240,178,84,.12) 0%, transparent 45%);
}
/* Azulejo tile border */
.blog-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary)    0px,  var(--primary)    20px,
    var(--accent)    20px, var(--accent)    40px,
    rgba(255,255,255,.08) 40px, rgba(255,255,255,.08) 48px
  );
}
.blog-hero__inner {
  position: relative; width: 100%;
  padding: 72px 32px 88px; text-align: center;
}
.hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 20px;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .1em;
}
.hero-breadcrumb a { color: var(--accent); font-weight: 700; }
.hero-breadcrumb span { color: rgba(255,255,255,.3); }
.eyebrow {
  display: block; font-family: var(--font-sans); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(44px, 7vw, 76px);
  font-weight: 700; color: #fff; line-height: 1.08;
  letter-spacing: -.025em; margin: 0 0 18px;
}
.hero-title--sm { font-size: clamp(32px, 5vw, 52px); }
.hero-sub {
  font-family: var(--font-body); font-size: 17px; font-style: italic;
  color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 32px;
  line-height: 1.8;
}
.hero-search {
  position: relative; max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; gap: 0;
}
.search-icon {
  position: absolute; left: 14px; font-size: 16px;
  opacity: .5; pointer-events: none;
}
.search-input {
  flex: 1; padding: 13px 20px 13px 44px;
  font-size: 15px; font-family: var(--font-body);
  border: 2px solid transparent; border-radius: 8px 0 0 8px;
  background: rgba(255,255,255,.12); color: #fff; outline: none;
  transition: all var(--transition);
}
.search-input::placeholder { color: rgba(255,255,255,.4); }
.search-input:focus { background: rgba(255,255,255,.18); border-color: rgba(240,178,84,.5); }
.hero-search .btn { border-radius: 0 8px 8px 0; flex-shrink: 0; height: 100%; }

/* ── CATEGORY FILTER BAR ── */
.cat-filter-bar {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  position: sticky; top: 60px; z-index: 50;
}
.cat-filter-bar__inner {
  display: flex; gap: 8px; overflow-x: auto; padding: 10px 32px;
  max-width: 1100px; margin: 0 auto; scrollbar-width: none;
}
.cat-filter-bar__inner::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 6px 16px; border-radius: 20px; font-size: 12px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  text-decoration: none; flex-shrink: 0;
  background: transparent; color: var(--primary);
  border: 1.5px solid rgba(200,96,42,.35);
  transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.cat-count { font-weight: 400; opacity: .7; margin-left: 2px; }

/* ── BLOG BODY ── */
.blog-body { padding: 52px 32px 80px; }

/* Section dividers */
.section-divider {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.section-divider span {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--primary);
  white-space: nowrap;
}

/* ── FEATURED CARD ── */
.featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.featured-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-hover);
}
.featured-card__img {
  min-height: 320px; position: relative;
  display: flex; align-items: flex-end; padding: 16px;
}
.img-label {
  font-family: var(--font-sans); font-size: 11px;
  color: rgba(255,255,255,.7); background: rgba(200,96,42,.65);
  padding: 3px 10px; border-radius: 4px;
}
.featured-card__body {
  padding: 44px 40px; display: flex; flex-direction: column; justify-content: center;
}
.featured-card__title {
  font-family: var(--font-head); font-size: 25px; font-weight: 700;
  line-height: 1.3; margin: 14px 0 12px; color: var(--text);
}
.featured-card__excerpt {
  font-style: italic; font-size: 15px; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 22px;
}

/* ── POSTS GRID ── */
.posts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.posts-grid--3col { grid-template-columns: repeat(3, 1fr); }
.section-block { margin-bottom: 52px; }

/* ── POST CARD ── */
.post-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp .5s ease both;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.post-card__img-link { display: block; }
.post-card__img { height: 180px; }
.post-card__body { padding: 20px 22px; }
.post-card__title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  line-height: 1.35; margin: 10px 0 8px; color: var(--text);
}
.post-card__title--sm { font-size: 15px; }
.post-card__title a { color: var(--text); text-decoration: none; }
.post-card__title a:hover { color: var(--primary); }
.post-card__excerpt {
  font-style: italic; font-size: 13px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 14px;
}

/* Meta row */
.meta-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; }
.meta-link { font-family: var(--font-sans); font-size: 11px; font-weight: 700; color: var(--primary); }
.meta-link:hover { text-decoration: underline; }
.meta-muted { font-family: var(--font-sans); font-size: 11px; color: var(--text-light); }
.meta-sep { color: var(--text-light); margin: 0 4px; }

/* ── CATEGORY BADGES ── */
.cat-badge {
  display: inline-block; padding: 3px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--font-sans);
}
.cat-badge-sm { font-size: 10px; padding: 2px 8px; }
.cat-badge--culture  { background: rgba(200,96,42,.14);  color: #a84e22; border: 1px solid rgba(200,96,42,.3); }
.cat-badge--nature   { background: rgba(45,106,62,.14);  color: #2d6a3e; border: 1px solid rgba(45,106,62,.3); }
.cat-badge--food     { background: rgba(157,78,221,.14); color: #7b2fb5; border: 1px solid rgba(157,78,221,.3); }
.cat-badge--heritage { background: rgba(74,78,105,.14);  color: #4a4e69; border: 1px solid rgba(74,78,105,.3); }
.cat-badge--travel   { background: rgba(29,53,87,.14);   color: #1d3557; border: 1px solid rgba(29,53,87,.3); }
.cat-badge--accent   { background: rgba(240,178,84,.2);  color: #9a6c10; border: 1px solid rgba(240,178,84,.4); }

/* ── CATEGORY BG PANELS ── */
.category-bg { position: relative; overflow: hidden; }
.category-bg--culture  { background: linear-gradient(135deg, #8B4513 0%, var(--nav-bg) 100%); }
.category-bg--nature   { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); }
.category-bg--food     { background: linear-gradient(135deg, #4a1040 0%, #9d4edd 100%); }
.category-bg--heritage { background: linear-gradient(135deg, #22223b 0%, #4a4e69 100%); }
.category-bg--travel   { background: linear-gradient(135deg, #03071e 0%, #1d3557 100%); }

/* ── PAGINATION ── */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 40px;
}
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px; border-radius: 6px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  background: var(--bg-card); color: var(--text); border: 1px solid var(--border);
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state__heading {
  font-family: var(--font-head); font-size: 26px; color: var(--text-muted);
  font-style: italic; margin-bottom: 10px;
}
.empty-state__sub { color: var(--text-light); margin-bottom: 24px; }

/* ── SEARCH RESULTS ── */
.search-info {
  font-family: var(--font-sans); font-size: 14px; color: var(--text-muted);
  margin-bottom: 28px;
}
.search-info strong { color: var(--primary); }

/* ── ARTICLE LAYOUT ── */
.article-hero {
  position: relative; overflow: hidden; min-height: 360px;
  display: flex; align-items: flex-end;
}
.article-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.65) 100%);
}
.article-hero__inner {
  position: relative; width: 100%; max-width: 820px;
  margin: 0 auto; padding: 48px 32px 52px;
}
.article-title {
  font-family: var(--font-head); font-size: clamp(26px,4vw,44px);
  font-weight: 700; color: #fff; line-height: 1.2;
  margin: 14px 0 16px; letter-spacing: -.02em;
}
.article-meta {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-family: var(--font-sans); font-size: 12px;
}
.meta-author { color: rgba(255,255,255,.8); font-weight: 600; }
.meta-read, .meta-views { color: var(--accent); }
.back-btn { margin-bottom: 22px; }

.article-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
  padding-top: 48px; padding-bottom: 80px; align-items: start;
}
.article-body {}
.article-lede {
  font-size: 19px; font-style: italic; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 2em; padding-bottom: 1.5em;
  border-bottom: 1px solid var(--border);
}
.article-content p         { margin-bottom: 1.5em; font-size: 17px; line-height: 1.85; }
.article-content h2        { font-family: var(--font-head); font-size: 24px; margin: 2em 0 .7em; }
.article-content blockquote {
  border-left: 3px solid var(--primary); padding: 14px 24px;
  margin: 1.8em 0; font-style: italic; color: var(--text-muted);
  background: var(--bg-card); border-radius: 0 6px 6px 0; line-height: 1.75;
}
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 3em; padding-top: 1.5em; border-top: 1px solid var(--border); }
.tag-pill {
  padding: 4px 12px; background: var(--bg-card); border-radius: 20px;
  font-size: 12px; font-family: var(--font-sans); color: var(--primary);
  border: 1px solid rgba(200,96,42,.25); transition: all var(--transition);
}
.tag-pill:hover { background: var(--primary); color: #fff; }
.tag-pill--active { background: var(--primary); color: #fff; }

.article-cta {
  margin-top: 3em; background: var(--nav-bg); border-radius: 12px;
  padding: 26px 32px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.article-cta__heading { font-family: var(--font-head); color: #fff; font-size: 18px; margin-bottom: 4px; }
.article-cta__sub { font-family: var(--font-sans); color: rgba(255,255,255,.5); font-size: 12px; }

/* Sidebar */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 20px; }
.sidebar-title { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.sidebar-author-name { font-family: var(--font-head); font-size: 16px; }
.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li { border-bottom: 1px solid var(--border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-family: var(--font-sans); font-size: 13px; color: var(--text); transition: color var(--transition); }
.sidebar-cat-list a:hover { color: var(--primary); }
.related-list { list-style: none; }
.related-list li { border-bottom: 1px solid var(--border); padding: 10px 0; }
.related-list li:last-child { border-bottom: none; }
.related-link { font-size: 13px; color: var(--text); line-height: 1.4; display: block; transition: color var(--transition); }
.related-link:hover { color: var(--primary); }
.related-cat { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 3px; }
.sidebar-cab-cta { background: var(--nav-bg); border-color: transparent; }
.cab-cta-line { font-family: var(--font-head); color: #fff; font-size: 16px; margin-bottom: 14px; font-style: italic; }

/* Related posts row */
.related-row { background: var(--bg-card); padding: 52px 0; }

/* ── COMMENTS ── */
.comments-section { margin-top: 3em; padding-top: 2em; border-top: 1px solid var(--border); }
.comments-heading { font-family: var(--font-head); font-size: 22px; margin-bottom: 24px; }
.no-comments { color: var(--text-muted); font-style: italic; }
.comment-list { margin-bottom: 2em; }
.comment {
  display: flex; gap: 14px; margin-bottom: 20px; animation: fadeIn .3s ease;
}
.comment__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 16px;
}
.comment__body { flex: 1; background: var(--bg-card); border-radius: var(--radius); padding: 14px 18px; border: 1px solid var(--border); }
.comment__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.comment__name { font-family: var(--font-sans); font-size: 14px; }
.comment__time { font-family: var(--font-sans); font-size: 12px; color: var(--text-light); }
.comment__text { font-size: 15px; line-height: 1.7; }
.reply-btn { font-family: var(--font-sans); font-size: 11px; color: var(--primary); background: none; border: none; cursor: pointer; margin-top: 8px; padding: 0; font-weight: 600; }
.comment-replies { margin-left: 54px; margin-top: 12px; }

/* Comment form */
.comment-form-wrap { margin-top: 2em; padding-top: 2em; border-top: 1px solid var(--border); }
.form-heading { font-family: var(--font-head); font-size: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-group small { display: block; font-size: 11px; color: var(--text-light); margin-top: 4px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px; font-size: 15px;
  font-family: var(--font-body); border: 1.5px solid var(--border);
  border-radius: 6px; background: #fff; color: var(--text);
  outline: none; transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req { color: var(--primary); }
.field-error { font-family: var(--font-sans); font-size: 12px; color: #c0392b; margin-top: 4px; }
.input-error { border-color: #c0392b !important; }
.inline-form { display: inline; }

/* ── NEWSLETTER ── */
.newsletter-strip { background: var(--nav-bg); padding: 60px 32px; }
.newsletter-heading { font-family: var(--font-head); color: #fff; font-size: 30px; font-style: italic; margin-bottom: 12px; }
.newsletter-sub { font-family: var(--font-body); color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.newsletter-row { display: flex; max-width: 400px; margin: 0 auto; }
.input-email {
  flex: 1; padding: 12px 16px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); border-right: none;
  border-radius: 5px 0 0 5px; color: #fff; font-family: var(--font-body);
  font-size: 14px; outline: none;
}
.input-email::placeholder { color: rgba(255,255,255,.4); }
.newsletter-row .btn { border-radius: 0 5px 5px 0; }

/* ── FOOTER ── */
.site-footer { background: var(--nav-bg); padding: 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; gap: 32px; flex-wrap: wrap; justify-content: space-between; padding-bottom: 28px; }
.footer-brand {}
.footer-logo { font-family: var(--font-head); color: var(--accent); font-size: 20px; font-weight: 700; display: block; margin-bottom: 6px; }
.footer-tagline { font-family: var(--font-body); font-style: italic; color: rgba(255,255,255,.4); font-size: 13px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.footer-nav a { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; transition: color var(--transition); }
.footer-nav a:hover { color: var(--accent); }
.footer-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-copy { max-width: 1100px; margin: 0 auto; font-family: var(--font-sans); font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .05em; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

/* ── TAG CLOUD ── */
.tag-cloud-wrap { margin-bottom: 36px; }
.tag-cloud-label { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .article-layout    { grid-template-columns: 1fr; }
  .article-sidebar   { position: static; }
  .featured-card     { grid-template-columns: 1fr; }
  .featured-card__img { min-height: 220px; }
  .posts-grid        { grid-template-columns: 1fr; }
  .posts-grid--3col  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container         { padding: 0 16px; }
  .blog-body         { padding: 32px 16px 60px; }
  .hero-title        { font-size: 36px; }
  .nav-actions       { display: none; }
  .form-row--2col    { grid-template-columns: 1fr; }
  .posts-grid--3col  { grid-template-columns: 1fr; }
  .newsletter-row    { flex-direction: column; }
  .newsletter-row .btn { border-radius: 5px; margin-top: 8px; }
  .input-email       { border-right: 1px solid rgba(255,255,255,.25); border-radius: 5px; }
}
