/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS
   Extracted from Figma variable definitions
════════════════════════════════════════════════════════════ */
:root {
  /* Colours */
  --color-biscuit:   #E4E2DA;   /* page background, header, light sections */
  --color-charcoal:  #313432;   /* dark sections bg */
  --color-dark-grey: #353B39;   /* footer bg, body text */
  --color-gold:      #C4B786;   /* h1 hero, features bg, footer headings */
  --color-orange:    #F96220;   /* labels, icons, CTA ribbon */
  --color-white:     #FFFFFF;

  /* Typography */
  --font:        'Libre Franklin', sans-serif;
  --fw-regular:  400;
  --fw-medium:   500;

  /* Type scale */
  --text-label:    16px;
  --text-body:     18px;
  --text-body-lg:  22px;
  --text-h3:       26px;
  --text-h1:       46px;

  /* Line heights */
  --lh-label:    24px;
  --lh-body:     24px;
  --lh-body-lg:  32px;
  --lh-h3:       34px;
  --lh-h1:       52px;

  /* Layout */
  --max-w:      1440px;
  --pad-x:      100px;
  --pad-y:       64px;
  --col-gap:     72px;
  --col-w:      610px;
  --header-h:   140px;
}


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

img, video { display: block; max-width: 100%; }
a          { text-decoration: none; color: inherit; }
button     { font: inherit; cursor: pointer; background: none; border: none; }
ul, ol     { list-style: none; }


/* ════════════════════════════════════════════════════════════
   BASE
════════════════════════════════════════════════════════════ */
html {
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-biscuit);
  color: var(--color-dark-grey);
  overflow-x: hidden;
}

h1 {
  font-size: var(--text-h1);
  font-weight: var(--fw-regular);
  line-height: var(--lh-h1);
}

h2 {
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: 44px;
}

h3 {
  font-size: var(--text-h3);
  font-weight: var(--fw-medium);
  line-height: var(--lh-h3);
}

p {
  font-size: var(--text-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}


/* ════════════════════════════════════════════════════════════
   FOCUS STATES
════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  height: var(--header-h);
  background-color: var(--color-biscuit);
}

.header-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo img {
  height: 112px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 90px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ── Primary nav ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.primary-nav a {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-dark-grey);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.primary-nav a:hover { opacity: 0.6; }

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

/* ── Hamburger button ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark-grey);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animated X when open (2-line version) */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}


/* ════════════════════════════════════════════════════════════
   SECTION SCAFFOLD
════════════════════════════════════════════════════════════ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

.dark-section    { background-color: var(--color-charcoal); }
.biscuit-section { background-color: var(--color-biscuit); }


/* ════════════════════════════════════════════════════════════
   TWO-COLUMN LAYOUT
════════════════════════════════════════════════════════════ */
.two-col {
  display: flex;
  align-items: center;
  gap: var(--col-gap);
  justify-content: center;
}

/* "image-left" keeps text first in DOM but flips visually */
.two-col.image-left {
  flex-direction: row-reverse;
}

.col-text {
  flex: 0 1 480px;
  max-width: 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.col-image {
  flex: 1 1 auto;
  min-width: 0;
}


/* ════════════════════════════════════════════════════════════
   SHARED TEXT PATTERNS
════════════════════════════════════════════════════════════ */
.label {
  font-size: var(--text-label);
  line-height: var(--lh-label);
  font-weight: var(--fw-regular);
  color: var(--color-orange);
}

.body-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Dark sections — white text */
.dark-section h2,
.dark-section .body-text p {
  color: var(--color-white);
}


/* ════════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════════ */
.hero-section { background-color: var(--color-biscuit); }

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  align-items: center;
  gap: var(--col-gap);
  justify-content: center;
}

.hero-text {
  flex: 0 1 480px;
  max-width: 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -60px;
}

.hero-text h1 {
  color: var(--color-gold);
  font-size: 52px;
  line-height: 58px;
}

.hero-desc {
  font-size: var(--text-body-lg);
  line-height: var(--lh-body-lg);
}

.hero-cta-label {
  font-size: var(--text-h3);
  font-weight: var(--fw-medium);
  line-height: var(--lh-h3);
}

.app-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-link {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.badge-link img {
  height: 56px;
  width: auto;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.hero-image img {
  display: block;
  max-height: calc(100vh - var(--header-h) - var(--pad-y));
  width: auto;
  max-width: 100%;
}


/* ════════════════════════════════════════════════════════════
   MASKED IMAGES
════════════════════════════════════════════════════════════ */
.circle-mask,
.rounded-mask {
  overflow: hidden;
  width: 100%;
}

.circle-mask {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.rounded-mask {
  border-radius: 20px;
  aspect-ratio: 610 / 450;
}

.circle-mask img,
.rounded-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Built-by circle: anchor to top so orange notification bar shows */
.built-by-img-mobile .circle-mask img,
.built-by-img-desktop .circle-mask img {
  object-position: center top;
}

/* Built-by section: desktop shows right-column image, mobile shows inline image */
.built-by-img-mobile { display: none; }
.built-by-img-desktop { display: block; }


/* ════════════════════════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════════════════════════ */
.features-section { background-color: var(--color-gold); }

.features-section .section-inner {
  padding-top:    80px;
  padding-bottom: 80px;
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.features-header .label { color: var(--color-white); }
.features-header h2     { color: var(--color-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 75px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card h3 {
  color: var(--color-white);
  font-size: 22px;
  line-height: 28px;
}

.feature-card p {
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

/* ── Icon tile ── */
.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Full-bleed: icon SVG already contains the orange square (e.g. thumb) */
.feature-icon--full {
  padding: 0;
  background-color: transparent;
}

/* Placeholder for Hangouts icon (needs manual export) */
.feature-icon--placeholder {
  background-color: var(--color-orange);
}


/* ════════════════════════════════════════════════════════════
   CTA RIBBON
════════════════════════════════════════════════════════════ */
.cta-ribbon {
  background-color: var(--color-orange);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--pad-x);
  text-align: center;
}

.cta-ribbon p {
  font-size: var(--text-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-regular);
  color: var(--color-white);
}


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--color-dark-grey);
  overflow-x: hidden;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Top row: logo | community | connect | badges */
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo { flex-shrink: 0; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  flex-shrink: 1;
}

.footer-heading {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  color: var(--color-gold);
}

.footer-nav a {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-white);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.footer-nav a:hover { opacity: 0.7; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  flex-shrink: 1;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: opacity 0.2s ease;
}
.social-row a:hover { opacity: 0.7; }

.social-row img {
  width: 28px;
  height: auto;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.footer-badges .badge-link img {
  height: 44px;
  width: auto;
  display: block;
}

/* Bottom row: copyright | address | legal links */
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}

.footer-legal-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.footer-legal-links a {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-white);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.footer-legal-links a:hover { opacity: 0.7; }

.footer-copyright,
.footer-address {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-white);
  opacity: 0.6;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root {
    --pad-x:    40px;
    --pad-y:    48px;
    --col-gap:  32px;
    --header-h: 120px;
  }

  /* Header needs relative positioning for the dropdown */
  .site-header { position: relative; }

  /* Logos */
  .logo img        { height: 88px; }
  .footer-logo img { height: 56px; }

  /* Show hamburger, hide inline nav */
  .nav-toggle { display: flex; }

  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--color-biscuit);
    padding: 24px var(--pad-x) 32px;
    gap: 20px;
    border-top: 1px solid rgba(53, 59, 57, 0.15);
    z-index: 99;
  }
  .primary-nav.is-open { display: flex; }

  /* Footer: stack into grid layout */
  .footer-inner {
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 48px;
  }

  /* footer-top: left col (logo + nav + social), right col (badges) */
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    row-gap: 28px;
    column-gap: 40px;
    align-items: start;
  }

  .footer-logo  { grid-column: 1; grid-row: 1; }
  .footer-logo img { height: 56px; max-width: 100%; }
  .footer-nav   { grid-column: 1; grid-row: 2; }
  .footer-social{ grid-column: 1; grid-row: 3; }
  .footer-badges{
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

  /* Badges fixed width on tablet */
  .footer-badges .badge-link { width: 180px; }
  .footer-badges .badge-link img { width: 100%; height: auto; }

  /* Bottom row: stack on mobile */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-legal-links {
    margin-left: 0;
    gap: 24px;
  }
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — CONTENT STACK  ≤ 650px
════════════════════════════════════════════════════════════ */
@media (max-width: 650px) {
  :root {
    --pad-x:   24px;
    --pad-y:   40px;
    --col-gap: 24px;
  }

  /* Stack hero — image on top, text below */
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    padding-top: 40px;
  }

  .hero-text {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin-top: 0;
    order: 2;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    order: 1;
  }

  .hero-image img {
    width: 82%;
    height: auto;
    max-height: none;
    margin: 0 auto;
  }

  /* Stack two-col sections */
  .two-col,
  .two-col.image-left {
    flex-direction: column;
    align-items: stretch;
  }

  .col-text {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .col-image {
    flex: none;
    width: 100%;
  }

  /* Built-by: swap desktop column for inline mobile image */
  .built-by-img-mobile { display: block; width: 100%; }
  .built-by-img-desktop { display: none; }

  /* Features: single column */
  .features-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  /* CTA */
  .cta-ribbon p {
    font-size: 26px;
    line-height: 34px;
  }
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 480px
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --text-h3:      22px;
    --lh-h3:        30px;
    --text-body:    16px;
    --lh-body:      24px;
    --text-body-lg: 18px;
    --lh-body-lg:   26px;
  }

  /* Hero h1 even smaller on small phones */
  .hero-text h1 {
    font-size: 28px;
    line-height: 34px;
  }

  /* Section h2 smaller on mobile */
  h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .hero-text { gap: 20px; }

  /* App badges */
  .app-badges { gap: 12px; }
  .badge-link img { height: 44px; }

  .features-header { margin-bottom: 40px; }

  /* CTA */
  .cta-ribbon {
    min-height: 100px;
    padding: 24px var(--pad-x);
  }
  .cta-ribbon p {
    font-size: 22px;
    line-height: 30px;
  }

  /* Footer: single column on small phones */
  .footer-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .footer-logo  { grid-column: 1; grid-row: auto; }
  .footer-nav   { grid-column: 1; grid-row: auto; }
  .footer-social{ grid-column: 1; grid-row: auto; }
  .footer-badges{
    grid-column: 1;
    grid-row: auto;
    align-self: start;
  }
  .footer-badges .badge-link { width: auto; }
  .footer-badges .badge-link img { width: auto; height: 44px; }

  /* Footer */
  .footer-inner { gap: 32px; }
}


/* ════════════════════════════════════════════════════════════
   BLOG LISTING PAGE
════════════════════════════════════════════════════════════ */

.blog-listing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px var(--pad-x) 140px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.blog-article {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 6%, 72px);
}

.blog-article-image {
  flex: 0 0 43%;
  max-width: 513px;
  aspect-ratio: 1 / 1;
}

.blog-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -28px;
}

.blog-article-date {
  font-size: 14px;
  line-height: 17px;
  color: var(--color-dark-grey);
  margin-bottom: 20px;
}

.blog-article-title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--color-dark-grey);
  margin-bottom: 16px;
}

.blog-article-excerpt {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark-grey);
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-orange);
  text-decoration: none;
  border-bottom: 1px solid var(--color-orange);
  padding-bottom: 1px;
  margin-top: 4px;
  transition: opacity 0.2s ease;
}
.read-more:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .blog-listing { padding: 64px var(--pad-x) 96px; gap: 64px; }
  .blog-article { gap: 32px; }
  .blog-article-image { flex: 0 0 38%; max-width: 300px; }
}


/* ════════════════════════════════════════════════════════════
   BLOG POST PAGE
════════════════════════════════════════════════════════════ */

.blog-post-section {
  background-color: var(--color-biscuit);
}

.blog-post-content {
  max-width: 712px;
  margin: 0 auto;
  padding: 96px var(--pad-x) 96px;
}

.blog-post-date {
  font-size: 14px;
  line-height: 17px;
  color: var(--color-dark-grey);
  display: block;
  margin-bottom: 32px;
}

.blog-post-title {
  font-size: 51px;
  font-weight: var(--fw-regular);
  line-height: 61px;
  color: var(--color-dark-grey);
  margin-bottom: 40px;
}

.blog-post-body p {
  font-size: 18px;
  line-height: 25px;
  color: var(--color-dark-grey);
}

.blog-post-body p + p {
  margin-top: 16px;
}

.blog-post-body .blog-step {
  margin-top: 18px;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-dark-grey);
}

.blog-post-body ul {
  list-style: none;
  padding-left: 24px;
  margin-top: 18px;
}

.blog-post-body ul li {
  position: relative;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-dark-grey);
  padding-left: 16px;
}

.blog-post-body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
}

.blog-post-body ul li + li {
  margin-top: 9px;
}

/* Next / prev article strip */
.blog-post-next {
  background-color: var(--color-biscuit);
  padding: 40px var(--pad-x);
  border-top: 1px solid rgba(53, 59, 57, 0.15);
}

/* Single-direction (next only) */
.blog-post-next-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  text-decoration: none;
  color: var(--color-dark-grey);
  transition: opacity 0.2s ease;
}
.blog-post-next-link:hover { opacity: 0.7; }

.blog-post-next-title {
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: right;
}

/* Two-direction nav (prev + next) */
.blog-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.blog-post-prev-link,
.blog-post-next-link--two {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--color-dark-grey);
  transition: opacity 0.2s ease;
  flex: 1 0 0;
  min-width: 0;
}
.blog-post-prev-link:hover,
.blog-post-next-link--two:hover { opacity: 0.7; }

.blog-post-prev-link { justify-content: flex-start; }
.blog-post-next-link--two { justify-content: flex-end; }

.blog-post-prev-title {
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: left;
}

.blog-post-nav .blog-post-next-title {
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  text-align: right;
}

.blog-post-next-icon,
.blog-post-prev-icon {
  flex-shrink: 0;
  width: 20px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-next-icon svg,
.blog-post-prev-icon svg {
  width: 18px;
  height: 30px;
}

@media (max-width: 900px) {
  .blog-post-content { padding: 64px var(--pad-x); }
  .blog-post-title { font-size: 38px; line-height: 46px; }
  .blog-post-next-title,
  .blog-post-prev-title,
  .blog-post-nav .blog-post-next-title { font-size: 28px; }
}

@media (max-width: 650px) {
  .blog-post-content { padding: 48px var(--pad-x); }
  .blog-post-title { font-size: 30px; line-height: 38px; }
  .blog-post-next-title,
  .blog-post-prev-title,
  .blog-post-nav .blog-post-next-title { font-size: 22px; }
  .blog-post-next { padding: 32px var(--pad-x); }
  .blog-post-nav { gap: 24px; }
}

@media (max-width: 480px) {
  .blog-post-title { font-size: 26px; line-height: 33px; }
  .blog-post-next-title,
  .blog-post-prev-title,
  .blog-post-nav .blog-post-next-title { font-size: 16px; }
  .blog-post-nav { gap: 16px; }
}

@media (max-width: 650px) {
  .blog-listing { padding: 48px var(--pad-x) 80px; gap: 56px; }
  .blog-article { flex-direction: column; align-items: stretch; gap: 16px; }
  .blog-article-image {
    flex: none;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: 280px;
  }
  .blog-article-text { margin-top: 0; }
  .blog-article-title { font-size: 28px; line-height: 36px; }
}

@media (max-width: 480px) {
  .blog-listing { gap: 48px; }
  .blog-article-title { font-size: 24px; line-height: 32px; }
  .blog-article-image { height: 220px; }
}
