/*
  Tapetum.in — component styles (v2 redesign)
  Header, footer, nav, hero, trust bar, product card/gallery, cart, search,
  enquiry form, sticky lead-gen CTA. Loaded after style.css.
*/

/* ---------- Top info bar (trust/contact) ---------- */
.top-bar {
  background: var(--color-navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.top-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar__contact { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar__contact a { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 500; }
.top-bar__badges { display: flex; gap: 14px; flex-wrap: wrap; opacity: .9; }
@media screen and (max-width: 749px) {
  .top-bar__badges { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(11,31,58,.02);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 20px;
}
.site-header__logo img { max-width: 56px; }
.site-header__nav { display: none; }
.site-header__nav ul { display: flex; gap: 26px; align-items: center; }
.site-header__nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
}
.site-header__nav a:hover { color: var(--color-brand); }
.site-header__nav .has-dropdown { position: relative; }
.site-header__dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: max-content;
  min-width: 160px;
  max-width: 260px;
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.site-header__nav .has-dropdown:hover .site-header__dropdown,
.site-header__nav .has-dropdown:focus-within .site-header__dropdown { display: block; }
.site-header__dropdown a {
  display: block;
  padding: 9px 18px;
  font-weight: 500;
  color: var(--color-text);
}
.site-header__dropdown a:hover { background: var(--color-bg-alt); color: var(--color-brand); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.site-header__mobile-toggle { display: inline-flex; background: none; border: 0; color: var(--color-navy); }
.site-header__cta { display: none; }

@media screen and (min-width: 750px) {
  .site-header__nav { display: block; }
  .site-header__mobile-toggle { display: none; }
  .site-header__cta { display: inline-flex; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y: auto;
  padding: 20px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close { background: none; border: 0; float: right; font-size: 22px; color: var(--color-navy); }
.mobile-nav ul { margin-top: 40px; }
.mobile-nav li { border-bottom: 1px solid var(--color-border); }
.mobile-nav a { display: block; padding: 14px 0; font-weight: 600; font-family: var(--font-heading); color: var(--color-navy); }
.mobile-nav .mobile-nav__sub { padding-left: 16px; }
.mobile-nav .mobile-nav__sub a { font-weight: 500; padding: 10px 0; font-family: var(--font-base); }
.mobile-nav__cta { margin-top: 24px; }
@media screen and (min-width: 750px) {
  .mobile-nav { display: none; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--color-text-secondary);
  padding: 14px var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
}
.breadcrumbs a { text-decoration: underline; text-underline-offset: 2px; }
.breadcrumbs span + span::before { content: " / "; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 460px;
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-navy-2) 60%, #0a3a52 100%);
  color: #fff;
  overflow: hidden;
}
/* Homepage hero — a pure image slider, no overlaid text, sized to roughly track
   the banner images' own aspect ratio (1950x687 ⇒ ~35.2vw tall) rather than the
   fixed text-hero height. NOTE: intentionally NOT using `aspect-ratio` here —
   combined with min-height on a block element it makes Chrome derive *width*
   from the clamped height instead of the other way round, blowing the box past
   its container on narrow viewports. A vw-based clamp() avoids that entirely. */
.hero--slider { width: 100%; min-height: 0; height: clamp(180px, 35.2vw, 640px); }
.hero--slider::before {
  /* light vignette — just enough to keep the dot indicators legible */
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(11,31,58,.35) 0%, transparent 30%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(600px 300px at 85% 20%, rgba(22,163,74,.25), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; padding: 76px var(--gutter) 84px; }
}
.hero__title { font-size: 34px; margin-bottom: 16px; }
@media screen and (min-width: 750px) { .hero__title { font-size: 46px; } }
.hero__title .accent { color: var(--color-brand); }
.hero__subtitle { font-size: 17px; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 26px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__stat-num { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: #fff; }
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

/* Hero quick-enquiry card */
.hero-enquiry {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}
.hero-enquiry h3 { font-size: 18px; margin-bottom: 4px; }
.hero-enquiry p { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 18px; }

/* Hero background slider — auto-rotating photos behind the hero content (see main.js) */
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__slider-dots {
  position: absolute; z-index: 4;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
}
.hero__slider-dots button {
  /* 8px visible dot inside a larger tap target (44px min recommended for touch) */
  width: 34px; height: 34px;
  padding: 13px;
  background-color: rgba(255,255,255,.4);
  background-clip: content-box;
  border-radius: 50%;
  border: none; cursor: pointer;
  transition: background-color .2s ease;
}
.hero__slider-dots button.is-active { background-color: #fff; }
@media screen and (min-width: 750px) {
  .hero__slider-dots { bottom: 18px; gap: 6px; }
}

/* ---------- Trust / USP bar ---------- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.trust-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media screen and (min-width: 750px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-brand-light);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
}
.trust-item__title { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-navy); }
.trust-item__desc { font-size: 12px; color: var(--color-text-secondary); }

/* ---------- Section heading ---------- */
.section-heading { text-align: center; margin: 56px auto 30px; max-width: 640px; padding: 0 var(--gutter); }
.section-heading h2 { margin-bottom: 10px; }
.section-heading p { color: var(--color-text-secondary); }

/* ---------- USP / feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 var(--gutter);
}
@media screen and (min-width: 750px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-eco-light);
  color: var(--color-eco);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

/* ---------- Certification strip ---------- */
.cert-strip { background: var(--color-bg-alt); padding: 34px var(--gutter); }
.cert-strip__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap;
}
.cert-badge { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-navy); }
.cert-badge .icon { color: var(--color-eco); }

/* ---------- Enquiry CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-brand) 0%, #ff9a4d 100%);
  color: #fff;
  padding: 50px var(--gutter);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 24px; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Product card ---------- */
.product-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); transition: box-shadow .15s ease, transform .15s ease; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__image-wrap {
  position: relative;
  background: var(--color-bg-alt);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-card__image-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .25s ease;
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.05); }
.product-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--color-brand); color: #fff;
  font-size: 11px; font-weight: 700; font-family: var(--font-heading);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.product-card__body { padding: 14px 16px 18px; }
.product-card__title { margin: 0 0 6px; font-size: 15px; font-weight: 600; font-family: var(--font-heading); color: var(--color-navy); }
.product-card__price { font-size: 15px; font-weight: 700; color: var(--color-navy); }
.product-card__price .compare-at {
  text-decoration: line-through;
  color: var(--color-text-secondary);
  margin-right: 6px;
  font-weight: 400;
  font-size: 13px;
}
.product-card__price .sale { color: var(--color-brand); font-weight: 700; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
@media screen and (min-width: 750px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Product carousel (e.g. "More <Category>" on product pages) ---------- */
.product-carousel-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 24px auto 0;
  padding: 0 20px;
}
.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.product-carousel .product-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
}
@media screen and (max-width: 749px) {
  .product-carousel .product-card { width: 62vw; }
}
.product-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  z-index: 5;
}
.product-carousel__nav:hover, .product-carousel__nav:focus-visible { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }
.product-carousel__nav--prev { left: -6px; }
.product-carousel__nav--next { right: -6px; }
@media screen and (max-width: 899px) {
  .product-carousel__nav { display: none; } /* touch swipe handles it on smaller viewports */
}

/* ---------- Product page ---------- */
.product-main { display: flex; flex-wrap: wrap; gap: 44px; padding: 34px var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.product-gallery { flex: 1 1 420px; min-width: 280px; }
.product-gallery__main { background: var(--color-bg-alt); border-radius: var(--radius); aspect-ratio: 1/1; margin-bottom: 12px; overflow: hidden; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-gallery__thumbs button { border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; padding: 0; width: 64px; height: 64px; overflow: hidden; }
.product-gallery__thumbs button.is-active { border-color: var(--color-brand); box-shadow: 0 0 0 2px var(--color-brand-light); }

.product-info { flex: 1 1 380px; min-width: 280px; }
.product-info h1 { color: var(--color-navy); }
.product-info__price { font-size: 26px; font-weight: 700; font-family: var(--font-heading); color: var(--color-navy); margin: 10px 0 20px; }
.product-info__price .compare-at { text-decoration: line-through; color: var(--color-text-secondary); font-weight: 400; font-size: 17px; margin-right: 10px; }

.variant-picker { margin-bottom: 20px; }
.variant-picker__label { font-weight: 600; margin-bottom: 8px; display: block; font-family: var(--font-heading); color: var(--color-navy); }
.variant-picker__options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-picker__options button {
  border: 1px solid var(--color-border); background: #fff;
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: 14px;
}
.variant-picker__options button.is-selected { border-color: var(--color-brand); background: var(--color-brand); color: #fff; }
.variant-picker__options button[disabled] { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

.qty-selector { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-pill); overflow: hidden; }
.qty-selector button { background: none; border: 0; width: 38px; height: 38px; font-size: 16px; }
.qty-selector input { width: 44px; text-align: center; border: 0; font-size: 15px; }

.product-info__actions { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.product-info__actions .btn--full { flex: 1 1 160px; }

.product-info__availability { font-size: 13px; margin-bottom: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.product-info__availability.in-stock { color: var(--color-success); }
.product-info__availability.out-of-stock { color: var(--color-error); }

.product-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 16px; margin: 20px 0; background: var(--color-bg-alt); border-radius: var(--radius-sm);
}
.product-trust__item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--color-navy); }
.product-trust__item .icon { color: var(--color-eco); }

.accordion { border-top: 1px solid var(--color-border); }
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 16px 0; font-weight: 600; font-family: var(--font-heading); color: var(--color-navy);
  display: flex; justify-content: space-between;
}
.accordion__panel { display: none; padding: 0 0 18px; }
.accordion__item.is-open .accordion__panel { display: block; }
/* Dealer/Bulk/Call CTA row inside a product description (see fix_legacy_enquiry_buttons) */
.enquiry-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.accordion__item.is-open .accordion__trigger .icon { transform: rotate(180deg); }

/* ---------- Collection page ---------- */
.collection-header { padding: 40px var(--gutter); text-align: center; max-width: 800px; margin: 0 auto; }
.collection-header h1 { color: var(--color-navy); }
.collection-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--gutter); max-width: var(--container-max); margin: 0 auto 10px;
  flex-wrap: wrap; gap: 10px;
}
.collection-toolbar select { padding: 9px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); }
.collection-layout { display: flex; gap: 30px; padding: 0 var(--gutter); max-width: var(--container-max); margin: 0 auto 60px; align-items: flex-start; }
.collection-filters { flex: 0 0 220px; }
.collection-filters h3 { font-size: 15px; margin-bottom: 10px; }
.collection-filters .filter-group { margin-bottom: 24px; }
.collection-filters label { display: block; font-size: 14px; margin-bottom: 8px; }
.collection-results { flex: 1; }
@media screen and (max-width: 749px) {
  .collection-layout { flex-direction: column; }
  .collection-filters { flex: none; width: 100%; }
}

/* ---------- Enquiry form ---------- */
.enquiry-panel {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.enquiry-panel h2 { font-size: 20px; color: var(--color-navy); }
.enquiry-panel__row { display: flex; gap: 14px; flex-wrap: wrap; }
.enquiry-panel__row .field { flex: 1 1 200px; }
.enquiry-panel__note { font-size: 12px; color: var(--color-text-secondary); margin-top: 10px; }

/* Sticky floating lead-gen buttons */
.sticky-stack {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.sticky-enquire { box-shadow: var(--shadow-lg); border: 0; }
.sticky-whatsapp {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .12s ease;
}
.sticky-whatsapp:hover, .sticky-whatsapp:focus-visible { transform: scale(1.06); }
.sticky-call {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .12s ease;
}
.sticky-call:hover, .sticky-call:focus-visible { transform: scale(1.06); }
@media screen and (max-width: 749px) {
  .sticky-stack { right: 14px; bottom: 14px; gap: 10px; }
  .sticky-enquire { padding: 12px 18px; font-size: 13px; }
  .sticky-whatsapp, .sticky-call { width: 48px; height: 48px; }
}

/* Quote request modal */
.quote-modal__overlay {
  position: fixed; inset: 0; background: rgba(11,31,58,.55);
  z-index: 490; display: none;
}
.quote-modal__overlay.is-open { display: block; }
.quote-modal {
  position: fixed; inset: 0; z-index: 500;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.quote-modal.is-open { display: flex; }
.quote-modal__panel {
  background: #fff; border-radius: var(--radius);
  max-width: 480px; width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: auto;
}
.quote-modal__panel h2 { font-size: 20px; color: var(--color-navy); margin-bottom: 6px; }
.quote-modal__intro { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 20px; }
.quote-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: var(--color-bg-alt); border: 0; border-radius: 50%;
  width: 30px; height: 30px; font-size: 14px; color: var(--color-navy);
}
@media screen and (max-width: 749px) {
  .quote-modal__panel { padding: 24px 20px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy); color: rgba(255,255,255,.72); padding: 60px var(--gutter) 24px; margin-top: 0; }
.site-footer__top { max-width: var(--container-max); margin: 0 auto 40px; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between; background: rgba(255,255,255,.04); border-radius: var(--radius); padding: 26px; }
.site-footer__top h3 { color: #fff; margin: 0 0 4px; font-size: 18px; }
.site-footer__top p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.site-footer__inner { max-width: var(--container-max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.site-footer__col h3 { color: #fff; font-size: 14px; margin-bottom: 14px; font-family: var(--font-heading); }
.site-footer__col a { display: block; padding: 5px 0; color: rgba(255,255,255,.65); font-size: 14px; }
.site-footer__col a:hover { color: var(--color-brand); }
.site-footer__social { display: flex; gap: 14px; margin-top: 12px; }
.site-footer__social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); padding: 0; }
.site-footer__social a:hover { background: var(--color-brand); color: #fff; }
.site-footer__bottom {
  max-width: var(--container-max); margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 30px var(--gutter); max-width: var(--container-max); margin: 0 auto; }
@media screen and (min-width: 750px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .15s ease, transform .15s ease; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card__image { aspect-ratio: 16/9; background: var(--color-bg-alt); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 16px 18px 20px; }
.blog-card__title { font-size: 16px; margin-bottom: 6px; color: var(--color-navy); font-family: var(--font-heading); }
.blog-card__meta { font-size: 12px; color: var(--color-text-secondary); }

.article-main { max-width: 760px; margin: 0 auto; padding: 30px var(--gutter) 60px; }
.article-main img { margin: 20px 0; border-radius: var(--radius); }
.article-main h2 { margin-top: 1.6em; color: var(--color-navy); }
.article-meta { color: var(--color-text-secondary); font-size: 13px; margin-bottom: 20px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 30px 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-block; padding: 9px 15px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 14px; }
.pagination .is-current { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }
