/* ================================================================
   SAUVEGARDE DU PATRIMOINE MARITIME GIRONDIN — BRUGES
   Refined Editorial / Literary Magazine
   ================================================================ */

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

:root {
  --ivory:       #f7f3ec;
  --ivory-dark:  #ede8df;
  --ink:         #1c1c1a;
  --ink-mid:     rgba(28,28,26,0.55);
  --ink-light:   rgba(28,28,26,0.25);
  --accent:      #c8a96e;
  --navy:        #1b3a5c;
  --rule-heavy:  #1c1c1a;
  --rule:        rgba(28,28,26,0.22);
  --max-w:       1100px;
  --side:        clamp(1.5rem, 6vw, 5rem);
  --col-gap:     clamp(2rem, 4vw, 4rem);
}

/* ---------------------------------------------------------------
   BASE
--------------------------------------------------------------- */
html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { transition: color 0.18s; }

p { margin-bottom: 1.35em; }
p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------
   PAGE CONTAINER
--------------------------------------------------------------- */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side);
}

/* ---------------------------------------------------------------
   TYPOGRAPHY UTILITIES
--------------------------------------------------------------- */

/* Kicker / section label */
.kicker {
  display: block;
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.8rem;
}
.kicker--accent { color: var(--accent); }
.kicker--navy   { color: var(--navy);   }

/* Display headlines */
.display {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display--xl { font-size: clamp(2.8rem, 6.5vw, 5.4rem); }
.display--lg { font-size: clamp(2rem,   4.5vw, 3.6rem); }
.display--md { font-size: clamp(1.6rem, 3vw,   2.5rem); }
.display--sm { font-size: clamp(1.25rem,2vw,   1.85rem);}

/* Italic display variant */
.display--italic { font-style: italic; }

/* Dek / subhead */
.dek {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.4em;
  font-weight: normal;
  float: left;
  line-height: 0.8;
  margin-right: 0.1em;
  margin-top: 0.1em;
  color: var(--accent);
  padding-right: 0.04em;
}

/* Pull quote */
.pull-quote {
  border-top:    2px solid var(--rule-heavy);
  border-bottom: 1px solid var(--rule-heavy);
  padding: 2.2rem 0 1.8rem;
  margin: 3.5rem 0;
}
.pull-quote--inset {
  margin-left: 3rem;
  margin-right: 3rem;
}
.pull-quote__text {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.32;
  color: var(--ink);
}
.pull-quote__source {
  display: block;
  margin-top: 1rem;
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------------------------------------------------------------
   HORIZONTAL RULES
--------------------------------------------------------------- */
.rule         { border: none; border-top: 1px solid var(--rule);       margin: 3rem 0; }
.rule--heavy  { border: none; border-top: 2px solid var(--rule-heavy); margin: 3.5rem 0; }
.rule--thin   { border: none; border-top: 0.5px solid var(--rule);     margin: 1.5rem 0; }
.rule--accent { border: none; border-top: 1px solid var(--accent);     margin: 2rem 0; }
.rule--flush  { margin-left: 0; margin-right: 0; }

/* ---------------------------------------------------------------
   SITE HEADER / NAV
--------------------------------------------------------------- */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--rule-heavy);
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup__icon {
  height: 42px;
  width: auto;
}

.brand-lockup__wordmark {
  height: 34px;
  width: auto;
  /* dark artwork on transparent — renders correctly on ivory */
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 2rem);
  list-style: none;
}

.site-nav a {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  border-bottom: 1px solid var(--rule-heavy);
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
}

.hero__image-wrap img {
  width: 100%;
  height: clamp(300px, 52vw, 560px);
  object-fit: cover;
}

.hero__text-band {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--side) clamp(3rem, 5vw, 5rem);
}

.hero__kicker { margin-bottom: 1.2rem; }

.hero__headline {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.hero__caption {
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-mid);
  padding: 0.55rem 0 0 0.7rem;
  border-left: 1px solid var(--rule);
  line-height: 1.4;
  max-width: 560px;
  margin-top: 0.6rem;
}

.hero__sub {
  max-width: 640px;
}

/* ---------------------------------------------------------------
   SECTION CONTAINER
--------------------------------------------------------------- */
.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.section--tight {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.section--ruled-top {
  border-top: 2px solid var(--rule-heavy);
}
.section--ruled-both {
  border-top:    2px solid var(--rule-heavy);
  border-bottom: 1px solid var(--rule-heavy);
}
.section--tinted {
  background: var(--ivory-dark);
}

.section__head { margin-bottom: 2.5rem; }
.section__head--center { text-align: center; }
.section__head .display { margin-top: 0.6rem; }

/* ---------------------------------------------------------------
   HOME INTRO — multi-column magazine prose
--------------------------------------------------------------- */
.intro-prose {
  max-width: 900px;
}
.intro-columns {
  column-count: 2;
  column-gap: var(--col-gap);
  column-rule: 0.5px solid var(--rule);
  orphans: 3;
  widows: 3;
}
.intro-columns p { margin-bottom: 1.2em; }

/* ---------------------------------------------------------------
   HIGHLIGHTS — editorial ruled list
--------------------------------------------------------------- */
.highlights-list {
  list-style: none;
  border-top: 2px solid var(--rule-heavy);
  margin-top: 2rem;
}

.highlight-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0 1.6rem;
  padding: 2.2rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.highlight-item__icon { font-size: 1.3rem; line-height: 1.4; padding-top: 0.15rem; }

.highlight-item__title {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.highlight-item__blurb { font-size: 0.93rem; margin: 0; }

/* ---------------------------------------------------------------
   IMPACT STATS — editorial register
--------------------------------------------------------------- */
.impact-strip {
  border-top: 2px solid var(--rule-heavy);
  border-bottom: 2px solid var(--rule-heavy);
  display: flex;
  flex-wrap: wrap;
}

.impact-item {
  flex: 1;
  min-width: 200px;
  padding: 2.2rem 2.5rem 2.2rem 0;
  border-right: 0.5px solid var(--rule);
}
.impact-item:last-child { border-right: none; }

.impact-item__stat {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: normal;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.impact-item__label {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

/* ---------------------------------------------------------------
   PHOTO MATTE
--------------------------------------------------------------- */
.photo-matte {
  margin: 3rem 0;
  padding: 1.4rem;
  background: var(--ivory);
  border: 0.5px solid var(--rule);
}

.photo-matte img {
  width: 100%;
  object-fit: cover;
}

.photo-matte__caption {
  font-style: italic;
  font-size: 0.78rem;
  margin-top: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.45;
}

/* Full-bleed matte (no border, generous padding) */
.photo-matte--wide {
  border: none;
  padding: 2rem 0;
}

/* ---------------------------------------------------------------
   CONTENTS REGISTER — programmes
--------------------------------------------------------------- */
.contents-register {
  list-style: none;
  border-top: 2px solid var(--rule-heavy);
  counter-reset: prog;
}

.register-item {
  counter-increment: prog;
  display: grid;
  grid-template-columns: 2.2rem 2.2rem 1fr;
  gap: 0 1.4rem;
  padding: 2.6rem 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
}

.register-item__num {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.3rem;
  line-height: 1;
}
.register-item__num::before { content: counter(prog, decimal-leading-zero); }

.register-item__icon { font-size: 1.25rem; padding-top: 0.1rem; }

.register-item__title {
  font-size: 1.12rem;
  font-style: italic;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.register-item__blurb { font-size: 0.92rem; margin: 0 0 0.8rem; }

.register-item__detail {
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.72;
  margin: 0;
}

/* ---------------------------------------------------------------
   CTA BLOCK
--------------------------------------------------------------- */
.cta-block {
  border: 1px solid var(--rule-heavy);
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.cta-block__headline { margin-bottom: 1.6rem; }

.btn {
  display: inline-block;
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--navy);
  padding: 0.78rem 2.4rem;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background 0.2s, border-color 0.2s;
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ivory);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

/* ---------------------------------------------------------------
   MISSION BOX
--------------------------------------------------------------- */
.mission-box {
  border-top: 1px solid var(--rule-heavy);
  border-bottom: 1px solid var(--rule-heavy);
  border-left: 3px solid var(--accent);
  padding: 2.4rem 2.4rem 2.4rem 2rem;
  margin: 2.5rem 0;
}
.mission-box p { font-size: 1.02rem; line-height: 1.78; margin: 0; }

/* ---------------------------------------------------------------
   TRUSTEES / CREDITS
--------------------------------------------------------------- */
.trustees-list {
  list-style: none;
  border-top: 1px solid var(--rule-heavy);
  margin-top: 1rem;
}

.trustee-item {
  display: flex;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 0.5px solid var(--rule);
  gap: 0.5rem;
}

.trustee-item__name {
  font-style: italic;
  font-size: 1rem;
  white-space: nowrap;
}

.trustee-item__dots {
  flex: 1;
  overflow: hidden;
  /* leader dots */
  background-image: radial-gradient(circle, var(--ink-light) 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: center;
  height: 1em;
  margin: 0 0.6rem;
  position: relative;
  top: 0.05em;
}

.trustee-item__role {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   WAYS TO GET INVOLVED
--------------------------------------------------------------- */
.ways-list {
  list-style: none;
  border-top: 2px solid var(--rule-heavy);
}

.way-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0 1.6rem;
  padding: 2.4rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.way-item__icon { font-size: 1.3rem; padding-top: 0.15rem; }

.way-item__title {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.way-item__blurb { font-size: 0.93rem; margin: 0; }

/* ---------------------------------------------------------------
   BLOG / ARTICLE TEASERS
--------------------------------------------------------------- */
.blog-masthead {
  border-bottom: 2px solid var(--rule-heavy);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
}

.article-teasers { list-style: none; }

.article-teaser {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
}
.article-teaser:last-child { border-bottom: 2px solid var(--rule-heavy); }

.article-teaser__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.article-teaser__title {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: normal;
  font-style: normal;
  line-height: 1.18;
  margin-bottom: 0.8rem;
}
.article-teaser__title a {
  color: var(--ink);
  text-decoration: none;
}
.article-teaser__title a:hover { color: var(--navy); }

.article-teaser__dek {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.article-teaser__cta {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
.article-teaser__cta:hover { color: var(--navy); }

.article-teaser__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* ---------------------------------------------------------------
   ARTICLE PAGE
--------------------------------------------------------------- */
.article-masthead {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) var(--side) 2.5rem;
  text-align: center;
}

.article-masthead .rule--accent {
  max-width: 72px;
  margin-left: auto;
  margin-right: auto;
}

.article-masthead__dek {
  max-width: 560px;
  margin: 0 auto;
}

.article-canvas {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--side) clamp(3.5rem, 6vw, 5rem);
}

.article-canvas p { margin-bottom: 1.55em; }

.article-canvas .photo-matte {
  margin: 3rem -1.5rem;
}

/* ---------------------------------------------------------------
   PAGE HEADER (inner pages)
--------------------------------------------------------------- */
.page-header {
  border-bottom: 1px solid var(--rule-heavy);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-header--center { text-align: center; }
.page-header .display { margin-top: 0.7rem; margin-bottom: 0.8rem; }

/* ---------------------------------------------------------------
   CONTACT PAGE
--------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-form .form-group { margin-bottom: 1.8rem; }

.contact-form label {
  display: block;
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.38rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-heavy);
  padding: 0.55rem 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--accent); }

.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.contact-aside { }

.contact-detail {
  margin-bottom: 1.8rem;
}

.contact-detail__label {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
  display: block;
}

.contact-detail__value {
  font-size: 0.93rem;
  line-height: 1.65;
}

.contact-detail__value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0.5px solid var(--rule);
  word-break: break-all;
}
.contact-detail__value a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------------------------------------------------------------
   TWO-COLUMN LAYOUTS
--------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: start;
}
.two-col--3-2 { grid-template-columns: 3fr 2fr; }
.two-col--2-3 { grid-template-columns: 2fr 3fr; }

/* ---------------------------------------------------------------
   COLOPHON (contact page aside detail)
--------------------------------------------------------------- */
.colophon {
  border-top: 2px solid var(--rule-heavy);
  padding-top: 2rem;
}

.colophon__heading {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------------------------
   SITE FOOTER — COLOPHON
--------------------------------------------------------------- */
.site-footer {
  background: var(--ivory-dark);
  border-top: 2px solid var(--rule-heavy);
  padding: 3.5rem 0 2rem;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid var(--rule);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-brand__icon      { height: 42px; width: auto; }
.footer-brand__wordmark  { height: 28px; width: auto; }

.footer-col-label {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 1rem;
  display: block;
}

.footer-nav-links {
  list-style: none;
}
.footer-nav-links li { margin-bottom: 0.45rem; }
.footer-nav-links a {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
}
.footer-nav-links a:hover { color: var(--accent); }

.footer-contact-col p {
  font-size: 0.86rem;
  line-height: 1.68;
  margin-bottom: 0.6rem;
}
.footer-contact-col a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0.5px solid var(--rule);
  font-size: 0.84rem;
  word-break: break-all;
}
.footer-contact-col a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.6rem;
}

.footer-bottom p {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0;
}

/* ---------------------------------------------------------------
   TEAM INTRO
--------------------------------------------------------------- */
.team-intro-text {
  max-width: 680px;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ---------------------------------------------------------------
   UTILITIES
--------------------------------------------------------------- */
.text-accent { color: var(--accent); }
.text-navy   { color: var(--navy);   }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 820px) {
  .article-teaser {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .article-teaser__image { order: -1; }
  .article-teaser__image img { height: 220px; }

  .two-col,
  .two-col--3-2,
  .two-col--2-3 { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule-heavy);
    flex-direction: column;
    padding: 1.4rem var(--side);
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: block; }

  .intro-columns { column-count: 1; }

  .register-item {
    grid-template-columns: 2rem 2rem 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pull-quote--inset {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 540px) {
  .impact-strip {
    flex-direction: column;
  }
  .impact-item {
    border-right: none;
    border-bottom: 0.5px solid var(--rule);
    padding: 1.6rem 0;
  }
  .impact-item:last-child { border-bottom: none; }

  .cta-block { padding: 2rem 1.4rem; }
  .photo-matte { padding: 0.75rem; }

  .article-canvas .photo-matte { margin-left: 0; margin-right: 0; }
}
