/* ============================================================
   CLEARANCE WAREHOUSE COMPANY — style.css
   Blue / White / Black — Clean, Modern, Responsive
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
  --blue-dark:    #0d2b4e;
  --blue-mid:     #1a3a5c;
  --blue-bright:  #1565c0;
  --blue-accent:  #4db8ff;
  --blue-light:   #e8f4fd;
  --white:        #ffffff;
  --black:        #0a0a0a;
  --grey-dark:    #1e1e1e;
  --grey-mid:     #444444;
  --grey-light:   #f5f7fa;
  --grey-border:  #dde3ec;
  --gold:         #f4a300;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
  --nav-h:        72px;
  --transition:   0.25s ease;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Lato', sans-serif;
}

/* --- RESET & BASE --- */
*, *::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);
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--blue-dark);
}
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

/* --- CONTAINERS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--grey-mid); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--blue-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: #0d47a1; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21,101,192,0.4); text-decoration: none; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); text-decoration: none; }
.btn-large { padding: 18px 48px; font-size: 1.1rem; }

/* --- STICKY CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--blue-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(21,101,192,0.5);
  transition: all var(--transition);
  text-decoration: none;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.sticky-cta:hover { background: #0d47a1; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(21,101,192,0.6); text-decoration: none; }

/* --- NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--blue-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap { flex-shrink: 0; }
.logo-link { display: block; }
.logo-svg { width: 240px; height: 48px; }

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  text-decoration: none;
}
.main-nav a:hover { color: var(--blue-accent); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 52px;
  min-width: 52px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  padding: 12px;
  min-height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-overlay nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.mobile-nav-link {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 40px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--blue-accent); text-decoration: none; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,30,60,0.92) 0%, rgba(10,30,60,0.75) 45%, rgba(10,30,60,0.3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-pre {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-heading strong { color: var(--blue-accent); }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-trust svg { color: var(--blue-accent); flex-shrink: 0; }
.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-img {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

/* --- SHOP BY COUNTRY --- */
.shop-country { background: var(--grey-light); }
.country-search-wrap {
  max-width: 480px;
  margin: 0 auto 40px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--grey-border);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--blue-bright); }
.search-box svg { color: var(--grey-mid); flex-shrink: 0; }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey-dark);
  background: transparent;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.country-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 52px;
}
.country-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
}
.country-flag { width: 60px; flex-shrink: 0; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); }
.country-flag svg { width: 100%; height: auto; display: block; }
.country-info { flex: 1; }
.country-info h3 { font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 2px; }
.country-info p { font-size: 0.82rem; color: var(--grey-mid); }
.arrow-icon { width: 18px; height: 18px; color: var(--blue-bright); flex-shrink: 0; transition: transform var(--transition); }
.country-card:hover .arrow-icon { transform: translateX(4px); }
.country-no-result { text-align: center; color: var(--grey-mid); padding: 32px; }

/* --- BENEFITS --- */
.benefits { background: var(--blue-dark); }
.benefits .section-header { color: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background var(--transition), transform var(--transition);
}
.benefit-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(77,184,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--blue-accent); }
.benefit-card h3 { color: var(--white); margin-bottom: 10px; }
.benefit-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* --- REVIEWS --- */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--grey-border);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; }
.review-card p { color: var(--grey-mid); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--blue-dark); font-size: 0.95rem; }
.reviewer span { font-size: 0.82rem; color: var(--grey-mid); }

/* --- ABOUT --- */
.about { background: var(--grey-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.about-text-col h2 { margin-bottom: 20px; }
.about-text-col p { color: var(--grey-mid); margin-bottom: 16px; }
.about-text-col .btn-primary { margin-top: 8px; }

/* --- FIFI --- */
.fifi { background: var(--white); }
.fifi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.fifi-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.fifi-text h2 { margin-bottom: 8px; }
.fifi-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-bright);
  margin-bottom: 20px;
}
.fifi-text p { color: var(--grey-mid); margin-bottom: 14px; font-size: 0.97rem; }
.fifi-images { display: flex; flex-direction: column; gap: 16px; }
.fifi-main-img { position: relative; }
.fifi-main-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 320px;
  box-shadow: var(--shadow-md);
}
.fifi-secondary-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fifi-sm-wrap { position: relative; }
.fifi-sm-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.fifi-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(10,30,60,0.85);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
}

/* --- FAQ --- */
.faq { background: var(--grey-light); }
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  background: transparent;
  transition: background var(--transition);
  min-height: 52px;
}
.faq-question:hover { background: var(--grey-light); }
.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  font-family: var(--font-body);
  margin: 0;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }
.faq-answer p { color: var(--grey-mid); font-size: 0.96rem; }
.faq-answer a { color: var(--blue-bright); }

/* --- BUYING GUIDE --- */
.buying-guide { background: var(--white); }
.buying-guide-inner { max-width: 860px; }
.buying-guide-inner h2 { margin-bottom: 20px; }
.buying-guide-inner .intro-text { font-size: 1.05rem; color: var(--grey-mid); margin-bottom: 40px; }
.buying-guide-inner h3 { margin: 36px 0 12px; }
.buying-guide-inner h4 { margin: 24px 0 8px; color: var(--blue-mid); }
.buying-guide-inner p { color: var(--grey-mid); margin-bottom: 14px; font-size: 0.97rem; }

/* --- COMPANY DETAILS --- */
.company-details { background: var(--blue-dark); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.detail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(77,184,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.detail-icon svg { width: 22px; height: 22px; color: var(--blue-accent); }
.detail-card h3 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.detail-card p { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.detail-card a { color: var(--blue-accent); }

/* --- CONTACT --- */
.contact-section { background: var(--grey-light); }
.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  text-align: center;
  border: 2px solid var(--grey-border);
  max-width: 340px;
  flex: 1;
  min-width: 260px;
}
.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-icon svg { width: 28px; height: 28px; color: var(--blue-bright); }
.contact-card h3 { margin-bottom: 12px; }
.contact-link { display: block; font-size: 1.05rem; font-weight: 700; color: var(--blue-bright); margin-bottom: 8px; }
.contact-card p { color: var(--grey-mid); font-size: 0.9rem; }

/* --- FINAL CTA --- */
.final-cta {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-dark) 100%);
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 36px; }
.final-cta .btn-primary {
  background: var(--white);
  color: var(--blue-bright);
}
.final-cta .btn-primary:hover { background: var(--blue-light); }

/* --- FOOTER --- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.72);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-accent); text-decoration: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { font-size: 17px; }
  .section { padding: 60px 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
  }
  .hero-image-wrap { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-col { order: -1; }

  .fifi-grid { grid-template-columns: 1fr; gap: 32px; }
  .fifi-images { order: -1; }

  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-cards { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .country-grid { grid-template-columns: 1fr; }
  .fifi-secondary-imgs { grid-template-columns: 1fr 1fr; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.8rem; }
}

/* Blog Post Styles */
.blog-post-page { max-width: 820px; margin: 0 auto; padding: 120px 24px 60px; }
.blog-post-page h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 16px; color: var(--blue-dark); }
.post-meta-bar { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; color: var(--grey-mid); font-size: 0.9rem; border-bottom: 1px solid var(--grey-border); padding-bottom: 16px; }
.blog-post-body p { margin-bottom: 18px; color: var(--grey-mid); line-height: 1.75; }
.blog-post-body h2 { margin: 40px 0 16px; }
.blog-post-body h3 { margin: 28px 0 12px; }
.back-to-blog { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-bright); font-weight: 600; margin-bottom: 32px; text-decoration: none; }
.back-to-blog:hover { text-decoration: underline; }

/* Blog Archive */
.blog-archive-page { max-width: 1100px; margin: 0 auto; padding: 120px 24px 60px; }
.blog-archive-page h1 { margin-bottom: 12px; }
.blog-archive-page .subtitle { color: var(--grey-mid); margin-bottom: 36px; }
.blog-search-wrap { margin-bottom: 40px; max-width: 480px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-date { font-size: 0.82rem; color: var(--grey-mid); margin-bottom: 10px; }
.blog-card h2 { font-size: 1.05rem; margin-bottom: 12px; }
.blog-card h2 a { color: var(--blue-dark); text-decoration: none; }
.blog-card h2 a:hover { color: var(--blue-bright); text-decoration: none; }
.blog-card p { color: var(--grey-mid); font-size: 0.92rem; }
.blog-no-result { text-align: center; color: var(--grey-mid); padding: 40px; display: none; }
