/* ============================================================
   EmailVerifyerAPI Blog — editorial layer on top of the brand tokens
   ============================================================ */
@import url("colors_and_type.css");
@import url("accessibility.css");

:root {
  --bl-ink: #060D2E;            /* deep brand navy (header logo, footer)   */
  --bl-max: 1180px;
  --bl-prose: 720px;
  --bl-shadow-card: 0 1px 2px rgba(11,16,32,0.04), 0 8px 28px rgba(11,16,32,0.06);
  --bl-shadow-hover: 0 2px 6px rgba(11,16,32,0.06), 0 18px 48px rgba(11,16,32,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.bl-container { max-width: var(--bl-max); margin: 0 auto; padding: 0 var(--container-pad); }

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -48px; left: 0; background: var(--xe-blue-hover); color: #fff; padding: 12px 20px; z-index: 9999; font-weight: 600; text-decoration: none; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: background var(--motion-normal) var(--motion-ease),
    color var(--motion-normal) var(--motion-ease), border-color var(--motion-normal) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-normal) var(--motion-ease);
}
.btn:focus-visible { outline: 2px solid var(--xe-blue-hover); outline-offset: 2px; }
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--md { height: 46px; padding: 0 22px; font-size: 15px; }
.btn--lg { height: 54px; padding: 0 28px; font-size: 16px; }
.btn--primary { background: var(--xe-blue-hover); color: #fff; box-shadow: 0 6px 18px rgba(22,59,255,0.22); }
.btn--primary:hover { background: #1430d6; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(22,59,255,0.30); }
.btn--ghost { background: #fff; color: var(--text-primary); border-color: var(--border-secondary-btn); }
.btn--ghost:hover { border-color: var(--text-secondary); background: var(--bg-secondary); }
.btn--white { background: #fff; color: var(--bl-ink); }
.btn--white:hover { background: #eef0f8; transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

/* ============================================================
   Header
   ============================================================ */
.bl-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border-default); }
.bl-header__inner { max-width: var(--bl-max); margin: 0 auto; padding: 0 var(--container-pad); height: 64px; display: flex; align-items: center; gap: 36px; }
.bl-logo { display: inline-flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 800; letter-spacing: -0.04em; color: var(--bl-ink); text-decoration: none; flex-shrink: 0; }
.bl-logo:hover { opacity: 0.82; }
.bl-logo__mark { width: 30px; height: 30px; border-radius: 7px; background: var(--xe-blue-hover); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
.bl-nav { display: flex; gap: 4px; flex: 1; align-items: center; }
.bl-nav__item { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-decoration: none; padding: 8px 12px; border-radius: var(--radius-sm); transition: color var(--motion-normal) var(--motion-ease), background var(--motion-normal) var(--motion-ease); }
.bl-nav__item:hover { color: var(--text-primary); background: var(--bg-secondary); }
.bl-nav__item.is-active { color: var(--xe-blue-hover); }
.bl-header__actions { display: flex; align-items: center; gap: 12px; }
.bl-header__login { font-size: 14px; font-weight: 600; color: var(--text-primary); text-decoration: none; padding: 8px 6px; }
.bl-header__login:hover { color: var(--xe-blue-hover); }

@media (max-width: 860px) {
  .bl-nav { display: none; }
  .bl-header__login { display: none; }
}

/* ============================================================
   Category tags + author + meta primitives
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--xe-blue-soft); color: #1430d6;
}
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.9; }
.tag--deliverability { background: #EEF2FF; color: #1430d6; }
.tag--hygiene       { background: #E6F7EF; color: #0B7A43; }
.tag--product       { background: #F0ECFB; color: #5B3FBF; }
.tag--engineering   { background: #FBF1E0; color: #9A6510; }
.tag--guide         { background: #E4F6F6; color: #0E7A78; }

.author { display: flex; align-items: center; gap: 10px; }
.author__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.01em;
  background: #EEF2FF; color: #1430d6; overflow: hidden;
}
.author__avatar image-slot { width: 100%; height: 100%; }
.author__avatar--a { background: #EEF2FF; color: #1430d6; }
.author__avatar--b { background: #E6F7EF; color: #0B7A43; }
.author__avatar--c { background: #F0ECFB; color: #5B3FBF; }
.author__avatar--d { background: #FBF1E0; color: #9A6510; }
.author__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.author__name { font-size: 13.5px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.author__role { font-size: 12px; color: var(--text-tertiary); line-height: 1.3; }

.meta-dot { color: var(--border-input); }
.meta-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--text-secondary); }
.meta-line svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.8; }
.meta-item { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.meta-item--edited { color: var(--text-tertiary); }

/* ============================================================
   Blog home — hero
   ============================================================ */
.blog-hero { padding: 64px 0 40px; }
.blog-hero__eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--xe-blue-hover); margin: 0 0 14px; }
.blog-hero__title { font-size: clamp(38px, 5vw, 56px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; margin: 0; max-width: 16ch; }
.blog-hero__sub { font-size: 18px; line-height: 1.6; color: var(--text-secondary); margin: 18px 0 0; max-width: 58ch; }

/* Category filter */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.cat-chip {
  font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
  background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-pill);
  padding: 8px 16px; cursor: pointer; transition: all var(--motion-normal) var(--motion-ease);
}
.cat-chip:hover { border-color: var(--text-tertiary); color: var(--text-primary); }
.cat-chip.is-active { background: var(--bl-ink); border-color: var(--bl-ink); color: #fff; }
.cat-chip:focus-visible { outline: 2px solid var(--xe-blue-hover); outline-offset: 2px; }

/* ============================================================
   Cover media (image-slot wrapper)
   ============================================================ */
.cover { position: relative; width: 100%; background: var(--bg-secondary); overflow: hidden; }
.cover image-slot { width: 100%; height: 100%; }
.cover--16x9 { aspect-ratio: 16 / 9; }
.cover__tag { position: absolute; top: 14px; left: 14px; z-index: 2; box-shadow: 0 2px 8px rgba(11,16,32,0.12); }

/* ============================================================
   Featured post
   ============================================================ */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 0 0 22px; }
.section-head__title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin: 0; }
.section-head__link { font-size: 14px; font-weight: 600; color: var(--xe-blue-hover); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.section-head__link:hover { gap: 9px; }

.featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--bl-shadow-card); text-decoration: none; color: inherit;
  transition: box-shadow var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease);
}
.featured:hover { box-shadow: var(--bl-shadow-hover); transform: translateY(-3px); }
.featured__media { position: relative; min-height: 340px; }
.featured__media .cover { position: absolute; inset: 0; height: 100%; }
.featured__body { padding: 36px 40px; display: flex; flex-direction: column; }
.featured__badge { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--xe-blue-hover); margin-bottom: 14px; }
.featured__title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 14px; }
.featured__excerpt { font-size: 16px; line-height: 1.65; color: var(--text-secondary); margin: 0 0 26px; }
.featured__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .featured { grid-template-columns: 1fr; }
  .featured__media { min-height: 0; aspect-ratio: 16 / 9; }
  .featured__media .cover { position: relative; }
  .featured__body { padding: 28px 24px; }
}

/* ============================================================
   Post grid + card
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border-card); border-radius: var(--radius-md); overflow: hidden;
  text-decoration: none; color: inherit; box-shadow: var(--bl-shadow-card);
  transition: box-shadow var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease), border-color var(--motion-slow) var(--motion-ease);
}
.post-card:hover { box-shadow: var(--bl-shadow-hover); transform: translateY(-4px); border-color: var(--border-input); }
.post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__tag { margin-bottom: 12px; }
.post-card__title { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.28; margin: 0 0 8px; }
.post-card:hover .post-card__title { color: var(--xe-blue-hover); }
.post-card__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-default); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.post-card__readtime { font-size: 12.5px; font-weight: 600; color: var(--text-tertiary); white-space: nowrap; }

/* compact author for cards */
.post-card .author__avatar { width: 32px; height: 32px; font-size: 12px; }
.post-card .author__name { font-size: 12.5px; }
.post-card .author__role { font-size: 11px; }

/* ============================================================
   Section spacing
   ============================================================ */
.bl-section { padding: 56px 0; }
.bl-section--tight { padding: 8px 0 56px; }
.bl-divider { border: 0; border-top: 1px solid var(--border-default); margin: 0; }

/* ============================================================
   CTA band (dark)
   ============================================================ */
.cta-band { background: var(--bl-ink); color: #fff; border-radius: var(--radius-xl); padding: 56px 56px; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 100% 0%, rgba(22,59,255,0.32), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #93c5fd; margin: 0 0 12px; }
.cta-band__title { font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin: 0; max-width: 18ch; }
.cta-band__sub { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 14px 0 0; max-width: 46ch; }
.cta-band__form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band__input { height: 54px; min-width: 260px; flex: 1; padding: 0 18px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; font-size: 15px; }
.cta-band__input::placeholder { color: rgba(255,255,255,0.5); }
.cta-band__input:focus { outline: none; border-color: rgba(147,197,253,0.8); background: rgba(255,255,255,0.1); }
.cta-band__note { font-size: 12.5px; color: rgba(255,255,255,0.5); margin: 12px 0 0; }
@media (max-width: 760px) { .cta-band { padding: 36px 26px; } }

/* ============================================================
   Article — breadcrumb
   ============================================================ */
.breadcrumb { padding: 22px 0 0; }
.breadcrumb__list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 13px; }
.breadcrumb__list a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb__list a:hover { color: var(--xe-blue-hover); }
.breadcrumb__sep { color: var(--border-input); }
.breadcrumb__current { color: var(--text-primary); font-weight: 600; max-width: 32ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* reading progress */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--xe-blue-hover); z-index: 300; transition: width 80ms linear; }

/* ============================================================
   Article — header
   ============================================================ */
.article-wrap { max-width: var(--bl-prose); margin: 0 auto; padding: 0 var(--container-pad); }
.article-head { padding: 28px 0 30px; }
.article-head__eyebrow { margin-bottom: 18px; }
.article__title { font-size: clamp(32px, 4.4vw, 46px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; margin: 0; }
.article__standfirst { font-size: 20px; line-height: 1.6; color: var(--text-secondary); margin: 20px 0 0; }

.article__byline { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.article__byline .author__avatar { width: 46px; height: 46px; font-size: 15px; }
.article__byline .author__name { font-size: 15px; }
.article__byline .author__role { font-size: 13px; }
.article__dates { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.share { display: flex; align-items: center; gap: 8px; }
.share__label { font-size: 12.5px; font-weight: 600; color: var(--text-tertiary); }
.share__btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-default); background: #fff; color: var(--text-secondary); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--motion-normal) var(--motion-ease); }
.share__btn:hover { color: var(--xe-blue-hover); border-color: var(--xe-blue-hover); background: var(--xe-blue-soft); }
.share__btn svg { width: 16px; height: 16px; }

@media (max-width: 620px) {
  .article__dates { align-items: flex-start; }
}

/* Article hero image */
.article-hero { max-width: 980px; margin: 8px auto 0; padding: 0 var(--container-pad); }
.article-hero__media { width: 100%; aspect-ratio: 1.9 / 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-secondary); }
.article-hero__media image-slot { width: 100%; height: 100%; }
.article-hero__caption { font-size: 12.5px; color: var(--text-tertiary); margin: 12px 2px 0; text-align: center; }

/* ============================================================
   Prose
   ============================================================ */
.prose { padding: 40px 0 8px; font-size: 18px; line-height: 1.75; color: #1f2535; }
.prose > * + * { margin-top: 1.4em; }
.prose h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; color: var(--text-primary); margin-top: 2em; margin-bottom: 0; scroll-margin-top: 90px; }
.prose h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; color: var(--text-primary); margin-top: 1.6em; }
.prose p { margin: 0; }
.prose a { color: var(--xe-blue-hover); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: #1430d6; }
.prose strong { font-weight: 700; color: var(--text-primary); }
.prose ul, .prose ol { margin: 0; padding-left: 1.3em; }
.prose li { margin: 0.5em 0; }
.prose li::marker { color: var(--xe-blue-hover); }
.prose blockquote {
  margin: 1.8em 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--xe-blue-hover);
  font-size: 22px; line-height: 1.5; font-weight: 600; letter-spacing: -0.01em; color: var(--text-primary);
}
.prose blockquote cite { display: block; margin-top: 12px; font-size: 14px; font-weight: 500; font-style: normal; color: var(--text-tertiary); }
.prose figure { margin: 1.8em 0; }
.prose figcaption { font-size: 13px; color: var(--text-tertiary); margin-top: 10px; text-align: center; }

/* Key-stat callout */
.keystat { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; background: var(--bg-secondary); border: 1px solid var(--border-card); border-radius: var(--radius-md); padding: 26px 28px; }
.keystat__num { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--xe-blue-hover); font-variant-numeric: tabular-nums; }
.keystat__body { font-size: 15.5px; line-height: 1.55; color: var(--text-secondary); }
.keystat__body strong { color: var(--text-primary); }
@media (max-width: 560px) { .keystat { grid-template-columns: 1fr; gap: 10px; } .keystat__num { font-size: 44px; } }

/* Info callout */
.callout { display: flex; gap: 14px; background: var(--xe-blue-soft); border: 1px solid #DBE3FF; border-radius: var(--radius-md); padding: 20px 22px; }
.callout__icon { flex-shrink: 0; width: 24px; height: 24px; color: var(--xe-blue-hover); }
.callout__title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 0 0 4px; }
.callout p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* Inline mid-article CTA */
.inline-cta { background: var(--bl-ink); border-radius: var(--radius-lg); padding: 30px 32px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; position: relative; overflow: hidden; }
.inline-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 100% 0%, rgba(22,59,255,0.3), transparent 60%); }
.inline-cta__text { position: relative; }
.inline-cta__title { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.inline-cta__sub { font-size: 14.5px; color: rgba(255,255,255,0.72); margin: 0; }
.inline-cta .btn { position: relative; flex-shrink: 0; }

/* ============================================================
   Author bio
   ============================================================ */
.author-bio { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 26px 28px; margin-top: 40px; box-shadow: var(--bl-shadow-card); }
.author-bio__avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; overflow: hidden; }
.author-bio__avatar image-slot { width: 100%; height: 100%; }
.author-bio__eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin: 0 0 5px; }
.author-bio__name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 2px; }
.author-bio__role { font-size: 13.5px; color: var(--xe-blue-hover); font-weight: 600; margin: 0 0 10px; }
.author-bio__text { font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* ============================================================
   Footer (dark navy)
   ============================================================ */
.bl-footer { background: var(--bl-ink); color: #fff; margin-top: 72px; }
.bl-footer__top { max-width: var(--bl-max); margin: 0 auto; padding: 56px var(--container-pad) 40px; display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.bl-footer__brand-logo { display: inline-flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 800; letter-spacing: -0.04em; color: #fff; text-decoration: none; }
.bl-footer__brand-logo .bl-logo__mark { background: var(--xe-blue-hover); }
.bl-footer__tag { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 16px 0 0; max-width: 38ch; }
.bl-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bl-footer__heading { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 14px; }
.bl-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.bl-footer__col a { font-size: 14px; color: rgba(255,255,255,0.78); text-decoration: none; }
.bl-footer__col a:hover { color: #fff; }
.bl-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); max-width: var(--bl-max); margin: 0 auto; padding: 20px var(--container-pad); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bl-footer__copy { font-size: 13px; color: rgba(255,255,255,0.5); }
.bl-footer__bottom-links { display: flex; gap: 20px; }
.bl-footer__bottom-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
.bl-footer__bottom-links a:hover { color: #fff; }
@media (max-width: 760px) { .bl-footer__top { grid-template-columns: 1fr; gap: 32px; } .bl-footer__cols { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Entrance animations
   Transform-only so content is ALWAYS visible (opacity:1) even in
   rendering contexts that freeze the animation clock. A non-advancing
   timeline can leave a tiny harmless offset, never invisible content.
   ============================================================ */
@keyframes blSlideUp { from { transform: translateY(14px); } to { transform: translateY(0); } }
.reveal { opacity: 1; animation: blSlideUp 560ms var(--motion-ease) both; }
.reveal-2 { animation-delay: 80ms; }
.reveal-3 { animation-delay: 160ms; }
.reveal-4 { animation-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
