:root {
  --page-pad: clamp(54px, 6vw, 86px);
  --card-border: 1px solid rgba(8, 47, 73, 0.11);
}

/* Font Awesome 6 icons generated from react-icons/fa6. */
svg.fa6-icon {
  fill: currentColor !important;
  stroke: none !important;
}

.page-shell {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.page-title,
.block-title,
.sidebar-title,
.cta-title {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(48px, 5.7vw, 78px);
}

.page-title .accent,
.cta-title .accent {
  color: var(--red);
}

.block-title {
  font-size: clamp(30px, 3vw, 42px);
}

.sidebar-title {
  font-size: 27px;
}

.title-rule {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 16px;
  background: var(--red);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 46px;
  color: #6b7f8c;
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span[aria-hidden="true"] {
  color: #a9b8c1;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  overflow: hidden;
  background: #f4f7f8;
}

.page-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 61%;
  overflow: hidden;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f7f8 0%, rgba(244, 247, 248, 0.92) 12%, rgba(244, 247, 248, 0.18) 53%, transparent 100%);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-copy {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding-top: 28px;
  padding-bottom: 52px;
}

.page-hero-copy .breadcrumb {
  align-self: start;
  margin-bottom: auto;
}

.page-hero-copy-inner {
  max-width: 590px;
}

.page-hero-lead {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.7;
}

.inner-section {
  padding-top: var(--page-pad);
  padding-bottom: var(--page-pad);
}

.inner-section.is-tinted {
  background: linear-gradient(180deg, #f7fafb, #f1f6f8);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.inline-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-link span,
.card-link span {
  color: var(--red);
  font-size: 21px;
  line-height: 0;
}

.panel {
  border: var(--card-border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.line-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--red);
  background: #fff6f6;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.line-icon svg,
.mini-icon svg,
.sidebar-icon svg,
.share-button svg,
.meta-row svg,
.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-accent {
  stroke: var(--red);
}

/* Actualites */
.news-hero .page-hero-media {
  width: 57%;
}

.news-hero .page-hero-media img {
  object-position: 36% center;
}

.filter-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr minmax(230px, 300px);
  gap: 28px;
  align-items: center;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.mobile-category-filter {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-button:first-child {
  border-left: 0;
}

.filter-button.is-active {
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
}

.news-search {
  position: relative;
}

.news-search input {
  width: 100%;
  height: 48px;
  padding: 0 50px 0 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

.news-search button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
}

.news-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.news-listing {
  padding: 54px 0 70px;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  overflow: hidden;
  margin-bottom: 28px;
}

.featured-story img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.story-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 3vw, 42px);
}

.story-category,
.card-category {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-date {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-story h2 {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.25;
}

.featured-story .summary,
.listing-card .summary {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.listing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.listing-card[hidden] {
  display: none;
}

.listing-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.listing-card-copy {
  display: grid;
  align-content: start;
  padding: 22px;
}

.listing-card .card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.listing-card h3 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.listing-card .card-link {
  align-self: end;
  margin-top: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.pagination a.is-current {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.sidebar-stack {
  display: grid;
  gap: 24px;
}

.sidebar-panel {
  padding: 28px;
  background: linear-gradient(145deg, #f8fafb, #eef3f6);
}

.sidebar-panel .title-rule {
  margin-bottom: 22px;
}

.category-list {
  display: grid;
  gap: 2px;
}

.category-list a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.category-list a.is-current {
  color: var(--red);
}

.mini-icon {
  color: var(--navy);
}

.mini-icon svg {
  width: 18px;
  height: 18px;
}

.newsletter-panel {
  padding: 34px 26px;
  text-align: center;
}

.newsletter-panel .sidebar-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  color: var(--navy);
}

.newsletter-panel .sidebar-icon svg {
  width: 58px;
  height: 58px;
}

.newsletter-panel p {
  margin: 18px 0 24px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.stacked-form {
  display: grid;
  gap: 10px;
}

.stacked-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5e0e6;
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

.stacked-form input {
  height: 46px;
  padding: 0 14px;
}

.solid-submit {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.follow-panel {
  padding: 24px;
  text-align: center;
}

.follow-panel h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.follow-panel .socials {
  justify-content: center;
}

.follow-panel .socials a {
  border: 0;
  color: var(--white);
  background: var(--navy);
}

/* Adherer */
.join-hero .page-hero-media img {
  object-position: 64% center;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.form-panel {
  padding: clamp(28px, 3.2vw, 44px);
}

.form-intro {
  margin: 14px 0 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-group label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field-group label span {
  color: var(--red);
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 160px;
  padding: 15px;
  resize: vertical;
}

.textarea-wrap {
  position: relative;
}

.textarea-wrap textarea {
  padding-bottom: 35px;
}

.char-count {
  position: absolute;
  right: 13px;
  bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.privacy-note {
  display: flex;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-note svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
}

.contact-form .solid-submit {
  justify-self: start;
  min-width: 230px;
}

.info-panel {
  padding: 32px;
  background: linear-gradient(145deg, #f8fafb, #eef3f6);
}

.info-list {
  display: grid;
  gap: 26px;
  margin-top: 24px;
}

.info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.info-item .line-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: transparent;
}

.info-item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 14px;
}

.info-item p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.dark-cta {
  padding: 32px;
  color: var(--white);
  background: linear-gradient(145deg, #073d5d, #022c46);
}

.dark-cta .cta-title {
  color: var(--white);
  font-size: 28px;
  line-height: 1.15;
}

.dark-cta p {
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.dark-cta .button {
  width: 100%;
  color: var(--ink);
  background: var(--white);
}

.request-examples {
  margin-top: 40px;
  padding: 24px 28px;
  background: linear-gradient(145deg, #f8fafb, #eef3f6);
}

.request-examples h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.example-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.example-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.example-item svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
}

/* AFOC */
.afoc-hero {
  min-height: 500px;
}

.afoc-hero .page-hero-copy {
  min-height: 500px;
  padding-bottom: 64px;
}

.afoc-hero .page-hero-media {
  width: 61%;
}

.afoc-hero .page-hero-media img {
  object-position: 55% center;
}

.afoc-hero .page-hero-media::after {
  background: linear-gradient(90deg, #f4f7f8 0%, rgba(244, 247, 248, 0.94) 14%, rgba(244, 247, 248, 0.18) 58%, transparent 100%);
}

.afoc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.afoc-values {
  color: var(--white);
  background: linear-gradient(135deg, #073d5d, #022a43);
}

.afoc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 160px;
}

.afoc-values-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 20px;
  padding: 32px 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.afoc-values-grid article:first-child {
  border-left: 0;
}

.afoc-values-grid article > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ff777b;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.afoc-values-grid h2 {
  margin: 0 0 7px;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.afoc-values-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.afoc-missions-section {
  padding: var(--page-pad) 0;
  background: linear-gradient(180deg, #f7fafb, #eef4f6);
  scroll-margin-top: 100px;
}

.afoc-missions-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.afoc-missions-intro {
  position: sticky;
  top: 100px;
}

.afoc-missions-intro > p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.afoc-since {
  display: grid;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.afoc-since strong {
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.afoc-since span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.afoc-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.afoc-mission-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  min-height: 188px;
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.afoc-mission-card:hover {
  border-color: rgba(227, 35, 41, 0.32);
  transform: translateY(-3px);
}

.afoc-mission-card.is-wide {
  grid-column: 1 / -1;
  min-height: 160px;
}

.afoc-mission-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--red);
  background: linear-gradient(145deg, #fff8f8, #ffeaea);
}

.afoc-mission-icon svg,
.afoc-audience-copy svg,
.afoc-expertise-points svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.afoc-mission-card small {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
}

.afoc-mission-card h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 17px;
}

.afoc-mission-card p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.afoc-audience-section {
  padding: var(--page-pad) 0;
  background: var(--white);
}

.afoc-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.afoc-audience-card {
  position: relative;
  isolation: isolate;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.afoc-audience-card > img,
.afoc-audience-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.afoc-audience-card > img {
  object-fit: cover;
  transition: transform 350ms ease;
}

.afoc-audience-card:hover > img {
  transform: scale(1.035);
}

.afoc-audience-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 31, 49, 0.92), rgba(3, 31, 49, 0.68) 58%, rgba(3, 31, 49, 0.18));
}

.afoc-audience-copy {
  display: grid;
  align-content: center;
  width: min(70%, 400px);
  min-height: 380px;
  padding: 38px;
}

.afoc-audience-copy > svg {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: #ff777b;
}

.afoc-audience-copy small,
.afoc-audience-copy strong,
.afoc-audience-copy em,
.afoc-audience-copy b {
  display: block;
}

.afoc-audience-copy small {
  color: #ff777b;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.afoc-audience-copy strong {
  margin-top: 8px;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 40px;
  text-transform: uppercase;
}

.afoc-audience-copy em {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}

.afoc-audience-copy b {
  font-size: 10px;
  text-transform: uppercase;
}

.afoc-expertise-section {
  padding: var(--page-pad) 0;
  background: linear-gradient(180deg, #f7fafb, #eef4f6);
}

.afoc-expertise {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  padding: 0;
  overflow: hidden;
}

.afoc-expertise-media {
  position: relative;
  min-height: 500px;
}

.afoc-expertise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afoc-expertise-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(7, 58, 89, 0.88);
  backdrop-filter: blur(8px);
}

.afoc-expertise-badge strong {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.afoc-expertise-badge small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
}

.afoc-expertise-copy {
  display: grid;
  align-content: center;
  padding: clamp(38px, 5vw, 66px);
}

.afoc-expertise-copy > p:not(.eyebrow) {
  margin: 24px 0 28px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.afoc-expertise-points {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.afoc-expertise-points > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: start;
}

.afoc-expertise-points svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.afoc-expertise-points span {
  display: grid;
}

.afoc-expertise-points strong {
  color: var(--ink);
  font-size: 13px;
}

.afoc-expertise-points small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.afoc-expertise-copy .button {
  justify-self: start;
}

.afoc-actions-section {
  padding: var(--page-pad) 0;
  background: var(--white);
}

.afoc-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.afoc-actions-grid article {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  padding: 32px;
}

.afoc-actions-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 95px;
  height: 95px;
  border: 18px solid #f2f6f8;
  border-radius: 50%;
}

.afoc-actions-grid article > span {
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.afoc-actions-grid h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 16px;
}

.afoc-actions-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.afoc-final-cta {
  padding: 54px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.2), transparent 26%),
    radial-gradient(circle at 8% 100%, rgba(109, 0, 7, 0.22), transparent 34%),
    linear-gradient(135deg, #ee3036 0%, #d51e25 58%, #b9141b 100%);
}

.afoc-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.afoc-final-inner .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.afoc-final-inner h2 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.afoc-final-inner h2 span {
  color: #ffd6d8;
}

.afoc-final-inner > div > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.afoc-final-actions {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.afoc-final-actions .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(115, 0, 7, 0.12);
}

.afoc-final-actions .button-primary {
  color: var(--red-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(92, 0, 5, 0.2);
}

/* Consommation */
.consumer-hero {
  min-height: 410px;
  background: #f3f7f9;
}

.consumer-hero .page-hero-copy {
  min-height: 410px;
}

.consumer-hero .page-hero-media {
  width: 62%;
}

.consumer-hero .page-hero-media img {
  object-position: 48% center;
}

.consumer-hero .page-hero-media::after {
  background: linear-gradient(90deg, #f3f7f9 0%, rgba(243, 247, 249, 0.92) 12%, rgba(243, 247, 249, 0.16) 58%, transparent 100%);
}

.consumer-quick {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.consumer-quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 132px;
}

.consumer-quick-grid > a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 22px 17px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  transition: background 160ms ease, transform 160ms ease;
}

.consumer-quick-grid > a:first-child {
  border-left: 0;
}

.consumer-quick-grid > a:hover {
  background: #f8fbfc;
  transform: translateY(-2px);
}

.consumer-quick-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--red);
  background: #fff1f1;
}

.consumer-quick-icon svg,
.consumer-dossier-icon svg,
.consumer-assistance-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.consumer-quick-grid strong,
.consumer-quick-grid small {
  display: block;
}

.consumer-quick-grid strong {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.25;
}

.consumer-quick-grid small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
}

.consumer-news-section {
  padding: var(--page-pad) 0;
  background: linear-gradient(180deg, #f7fafb, #eff5f7);
}

.consumer-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: stretch;
}

.consumer-stories {
  display: grid;
  gap: 22px;
}

.consumer-featured {
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
}

.consumer-featured-media {
  position: relative;
  min-height: 320px;
}

.consumer-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consumer-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 12px;
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.consumer-featured-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 3vw, 44px);
}

.consumer-featured-copy time,
.consumer-story time {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.consumer-featured-copy h3 {
  margin: 13px 0 16px;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.22;
}

.consumer-featured-copy p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.consumer-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.consumer-story {
  display: grid;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
}

.consumer-story img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.consumer-story > div {
  display: grid;
  align-content: start;
  padding: 23px 20px;
}

.consumer-story .card-category {
  margin-bottom: 7px;
}

.consumer-story h3 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.consumer-story .card-link {
  align-self: end;
  margin-top: auto;
  font-size: 10px;
}

.consumer-assistance {
  position: relative;
  overflow: hidden;
  padding: 38px 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #073d5d, #022b45);
}

.consumer-assistance::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(227, 35, 41, 0.8) 2px, transparent 2px);
  background-size: 13px 13px;
}

.consumer-assistance-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
}

.consumer-assistance-icon > svg {
  width: 48px;
  height: 48px;
}

.consumer-assistance-icon > span {
  position: absolute;
  right: -9px;
  bottom: -5px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 3px solid #063653;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
}

.consumer-assistance-icon > span svg {
  width: 20px;
  height: 20px;
}

.consumer-assistance .eyebrow {
  color: #ff777b;
}

.consumer-assistance h2 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 33px;
  line-height: 1.06;
  text-transform: uppercase;
}

.consumer-assistance > p:not(.eyebrow) {
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.consumer-assistance .button {
  width: 100%;
}

.consumer-assistance ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.consumer-assistance li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
}

.consumer-assistance li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff777b;
}

.consumer-dossiers-section {
  padding: var(--page-pad) 0;
  background: var(--white);
}

.consumer-dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.consumer-dossier-card {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.consumer-dossier-card img,
.consumer-dossier-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.consumer-dossier-card img {
  object-fit: cover;
  transition: transform 350ms ease;
}

.consumer-dossier-card:hover img {
  transform: scale(1.035);
}

.consumer-dossier-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 31, 49, 0.1), rgba(3, 31, 49, 0.92) 78%);
}

.consumer-dossier-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 58, 89, 0.54);
  backdrop-filter: blur(8px);
}

.consumer-dossier-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 32px;
}

.consumer-dossier-copy small,
.consumer-dossier-copy strong,
.consumer-dossier-copy em,
.consumer-dossier-copy b {
  display: block;
}

.consumer-dossier-copy small {
  margin-bottom: 8px;
  color: #ff7c80;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.consumer-dossier-copy strong {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
}

.consumer-dossier-copy em {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.consumer-dossier-copy b {
  font-size: 10px;
  text-transform: uppercase;
}

.consumer-advice-section {
  padding: var(--page-pad) 0;
  background: linear-gradient(180deg, #f7fafb, #eef4f6);
}

.consumer-advice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.consumer-advice-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 280px;
  padding: 26px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.consumer-advice-card:hover {
  border-color: rgba(227, 35, 41, 0.35);
  transform: translateY(-3px);
}

.consumer-advice-card > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.consumer-advice-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
}

.consumer-advice-card p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.consumer-advice-card .card-link {
  align-self: end;
  font-size: 10px;
}

.consomag-section {
  padding: var(--page-pad) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.92), transparent 31%),
    radial-gradient(circle at 92% 86%, rgba(112, 184, 212, 0.16), transparent 30%),
    linear-gradient(135deg, #edf7fa 0%, #e3f1f6 55%, #d9ebf2 100%);
}

.consomag-inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.consomag-intro .eyebrow {
  color: var(--red);
}

.consomag-intro .block-title {
  color: var(--ink);
  font-size: 50px;
}

.consomag-intro > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.consomag-intro .button {
  width: 100%;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(227, 35, 41, 0.18);
}

.consomag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.consomag-video-card {
  overflow: hidden;
  border: 1px solid rgba(8, 47, 73, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(8, 47, 73, 0.1);
}

.consomag-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #031f31;
}

.consomag-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.consomag-card {
  overflow: hidden;
  border: 1px solid rgba(8, 47, 73, 0.09);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(8, 47, 73, 0.1);
}

.consomag-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.consomag-media img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  opacity: 1;
  transition: transform 300ms ease;
}

.consomag-card:hover img {
  transform: scale(1.035);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding-left: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(3, 31, 49, 0.32);
  font-size: 17px;
  font-style: normal;
  transform: translate(-50%, -50%);
}

.consomag-media small {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(3, 31, 49, 0.78);
  font-size: 9px;
  font-weight: 900;
}

.consomag-copy {
  display: grid;
  padding: 22px;
}

.consomag-copy em {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.consomag-copy strong {
  font-size: 15px;
  line-height: 1.45;
}

/* Contact */
.contact-hero {
  min-height: 420px;
}

.contact-hero .page-hero-copy {
  min-height: 420px;
  padding-bottom: 82px;
}

.contact-hero .page-hero-media {
  width: 68%;
}

.contact-hero .page-hero-media img {
  object-position: 58% center;
}

.contact-hero .page-hero-media::after {
  background: linear-gradient(90deg, #f4f7f8 0%, rgba(244, 247, 248, 0.94) 15%, rgba(244, 247, 248, 0.28) 58%, transparent 100%);
}

.contact-info-section {
  position: relative;
  z-index: 3;
  margin-top: -76px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  min-height: 190px;
  padding: 30px 28px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 4px 24px;
  border-left: 1px solid var(--line);
}

.contact-info-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--navy);
  background: #f1f6f8;
}

.contact-icon svg,
.location-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-info-item h2 {
  margin: 5px 0 14px;
  color: var(--ink);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item small {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.contact-info-item small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}

.contact-info-item > div > a:not(.contact-value) {
  display: inline-flex;
  margin-top: 17px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-value {
  color: var(--ink);
}

.contact-main-section {
  padding: 42px 0 34px;
  scroll-margin-top: 98px;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.contact-main-layout .form-panel,
.location-panel {
  min-height: 680px;
}

.contact-main-layout .contact-form textarea {
  min-height: 170px;
}

.location-panel {
  display: grid;
  grid-template-rows: 1fr 270px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafb, #eef3f6);
}

.location-copy {
  padding: 38px 36px 28px;
}

.location-list {
  display: grid;
  gap: 21px;
  margin-top: 28px;
}

.location-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
}

.location-item p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.location-item strong {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.location-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--navy);
}

.location-icon svg {
  width: 23px;
  height: 23px;
}

.metro-icon,
.parking-icon {
  width: 25px;
  height: 25px;
  margin-top: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.parking-icon {
  border-radius: 5px;
}

.map-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(34deg, transparent 0 35%, rgba(197, 211, 218, 0.45) 35% 38%, transparent 38% 100%),
    linear-gradient(146deg, transparent 0 28%, rgba(255, 255, 255, 0.94) 28% 33%, transparent 33% 100%),
    #e9edf0;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(190, 203, 210, 0.8);
  background: rgba(255, 255, 255, 0.5);
}

.map-visual::before {
  inset: 20px 56% 124px -20px;
  transform: rotate(-12deg);
}

.map-visual::after {
  inset: 100px -34px 18px 48%;
  transform: rotate(7deg);
}

.map-road {
  position: absolute;
  z-index: 0;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #d9e0e4;
  box-shadow: 0 0 0 1px rgba(185, 199, 207, 0.8);
}

.road-one { top: 41px; left: -20px; width: 78%; transform: rotate(-10deg); }
.road-two { top: 95px; right: -30px; width: 76%; transform: rotate(17deg); }
.road-three { bottom: 74px; left: -30px; width: 86%; transform: rotate(-23deg); }
.road-four { top: -8px; left: 61%; width: 72%; transform: rotate(72deg); }

.map-label {
  position: absolute;
  z-index: 2;
  color: #4c6474;
  font-size: 10px;
  font-weight: 700;
}

.label-station { left: 18px; bottom: 72px; color: #258bd1; }
.label-avenue { right: 18px; top: 94px; transform: rotate(-17deg); }

.map-marker {
  position: absolute;
  top: 52px;
  left: 47%;
  z-index: 4;
  width: 38px;
  color: var(--red);
  filter: drop-shadow(0 6px 8px rgba(8, 47, 73, 0.22));
}

.map-marker svg {
  width: 100%;
  fill: currentColor;
}

.map-marker circle {
  fill: var(--white);
}

.map-button {
  position: absolute;
  right: 50%;
  bottom: 20px;
  z-index: 4;
  min-width: 218px;
  min-height: 44px;
  padding: 14px 18px;
  border: 1px solid #aec0cb;
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(50%);
}

.map-button .fa6-icon {
  width: 15px;
  height: 15px;
}

.contact-faq-section {
  padding: 0 0 var(--page-pad);
  scroll-margin-top: 98px;
}

.contact-faq {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  padding: 30px;
}

.contact-faq .section-bar {
  margin-bottom: 18px;
}

/* Logement */
.housing-hero .page-hero-media {
  width: 69%;
}

.housing-hero .page-hero-media img {
  object-position: 62% 56%;
}

.quick-access {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-access-inner {
  display: grid;
  grid-template-columns: 135px repeat(5, minmax(0, 1fr)) 148px;
  align-items: stretch;
  min-height: 124px;
}

.quick-title {
  align-self: center;
}

.quick-title .block-title {
  font-size: 27px;
  line-height: 0.95;
}

.quick-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.quick-item .line-icon {
  width: 44px;
  height: 44px;
  background: transparent;
}

.quick-item .line-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.65;
}

.quick-all {
  align-self: center;
  min-height: 66px;
  padding: 0 16px;
  color: var(--white);
  background: var(--navy);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}

.housing-content {
  padding: 52px 0 66px;
  background: linear-gradient(180deg, #f7fafb, #f1f6f8);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.theme-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 26px;
}

.theme-card .line-icon {
  border: 1px solid rgba(227, 35, 41, 0.08);
  background: linear-gradient(145deg, #fff8f8, #ffeeee);
}

.theme-card .line-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.65;
}

.theme-card h3 {
  margin: 3px 0 10px;
  color: var(--ink);
  font-size: 15px;
}

.theme-card p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.theme-card .card-link {
  font-size: 10px;
}

.housing-side-cta {
  padding: 34px 28px;
  color: var(--white);
  background: linear-gradient(145deg, #073d5d, #022c46);
}

.housing-side-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.15;
  text-transform: uppercase;
}

.housing-side-cta .feature-icon {
  width: 84px;
  height: 84px;
  margin: 20px auto 14px;
  color: var(--white);
}

.housing-side-cta .feature-icon svg {
  width: 82px;
  height: 82px;
}

.housing-side-cta p,
.mini-join p {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.housing-side-cta .button {
  width: 100%;
  color: var(--red);
  background: var(--white);
}

.mini-join {
  padding: 28px;
  background: linear-gradient(145deg, #f8fafb, #eaf1f4);
}

.mini-join .cta-title {
  font-size: 27px;
}

.mini-join p {
  margin-top: 12px;
  color: var(--text);
}

.faq-section {
  margin-top: 52px;
}

.faq-grid {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 20px;
  width: 100%;
}

.faq-column {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  width: 100%;
}

.faq-grid details {
  align-self: start;
  min-width: 0;
  width: 100%;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.faq-column:first-child details:first-child,
.faq-column:last-child details:first-child {
  border-top: 1px solid var(--line);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  color: var(--red);
  font-size: 20px;
  font-weight: 500;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  margin: 0;
  padding: 0 14px 18px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

/* Article */
.article-hero {
  position: relative;
  overflow: hidden;
  background: #f7f9fa;
}

.article-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
}

.article-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f9fa 0%, rgba(247, 249, 250, 0.82) 14%, transparent 60%);
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 420px;
  padding-top: 28px;
  padding-bottom: 54px;
}

.article-hero-copy .breadcrumb {
  margin-bottom: auto;
}

.article-heading {
  max-width: 610px;
}

.article-heading .story-category {
  font-size: 12px;
}

.article-heading h1 {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.05;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-row svg {
  width: 16px;
  height: 16px;
}

.article-intro {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

.article-body-section {
  padding: 52px 0 70px;
}

.article-layout {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 300px;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

.share-rail {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
}

.share-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.share-button svg {
  width: 18px;
  height: 18px;
}

.article-content {
  min-width: 0;
}

.article-toc {
  padding: 28px 34px;
  margin-bottom: 34px;
  background: linear-gradient(145deg, #f8fafb, #eef3f6);
}

.article-toc h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

.article-toc-heading {
  margin-bottom: 22px;
}

.article-toc-heading .title-rule {
  margin-top: 12px;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.toc-list a::before {
  content: counter(toc) ".";
  color: var(--red);
  font-weight: 900;
}

.article-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border: 1px solid #fed8d9;
  border-radius: 6px;
  background: #fff3f3;
  margin-top: 34px;
}

.article-help p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.article-help .button {
  flex: 0 0 auto;
  color: var(--red);
  border: 1px solid var(--red);
  background: var(--white);
}

.recent-list {
  display: grid;
  gap: 17px;
}

.recent-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
}

.recent-item img {
  width: 82px;
  height: 68px;
  border-radius: 4px;
  object-fit: cover;
}

.recent-item h3 {
  margin: 3px 0 7px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.recent-item time {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.recent-panel .button {
  width: 100%;
  margin-top: 24px;
  color: var(--ink);
  border: 1px solid #b8c9d3;
  background: var(--white);
}

.article-join {
  padding: 32px 28px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(145deg, #073d5d, #022c46);
}

.article-join .feature-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 60px;
  margin: 0 auto 12px;
  color: var(--white);
}

.article-join .feature-icon svg {
  width: 60px;
  height: 60px;
}

.article-join .cta-title {
  color: var(--white);
  font-size: 28px;
}

.article-join p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.article-join .button {
  width: 100%;
}

@media (max-width: 1120px) {
  .content-layout,
  .join-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .listing-grid,
  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-access-inner {
    display: flex;
    overflow-x: auto;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: x mandatory;
  }

  .quick-title,
  .quick-item,
  .quick-all {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .quick-title {
    flex-basis: 135px;
  }

  .article-layout {
    grid-template-columns: 44px minmax(0, 1fr) 270px;
    gap: 22px;
  }

  .examples-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-info-grid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-info-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-main-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.85fr);
  }

  .example-item:nth-child(4) {
    border-left: 0;
  }

  .consumer-quick-grid {
    display: flex;
    min-height: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .consumer-quick-grid::-webkit-scrollbar {
    display: none;
  }

  .consumer-quick-grid > a {
    flex: 0 0 210px;
    min-height: 118px;
    scroll-snap-align: start;
  }

  .consumer-news-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .consumer-featured {
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1fr);
  }

  .consumer-story {
    grid-template-columns: 120px 1fr;
  }

  .consumer-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .afoc-values-grid article {
    padding-right: 24px;
    padding-left: 24px;
  }

  .afoc-missions-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 38px;
  }

  .afoc-mission-card {
    grid-template-columns: 52px 1fr;
    padding: 24px 20px;
  }

  .afoc-mission-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 900px) {
  .page-hero,
  .page-hero-copy {
    min-height: 330px;
  }

  .page-hero-media {
    width: 72%;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .news-search {
    max-width: 420px;
  }

  .content-layout,
  .join-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-stack > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-hero-media {
    width: 62%;
  }

  .article-layout {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .article-aside {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .article-aside .sidebar-panel:last-child {
    grid-column: 1 / -1;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .contact-info-item {
    min-height: 140px;
    padding: 20px;
    border-top: 1px solid var(--line);
  }

  .contact-info-item:nth-child(odd) {
    border-left: 0;
  }

  .contact-info-item:nth-child(-n + 2) {
    border-top: 0;
  }

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

  .contact-main-layout .form-panel,
  .location-panel {
    min-height: 0;
  }

  .location-panel {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .consumer-news-layout {
    grid-template-columns: 1fr;
  }

  .consumer-assistance {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: 24px;
    align-items: start;
  }

  .consumer-assistance-icon {
    grid-column: 1;
    grid-row: 1 / span 5;
  }

  .consumer-assistance > :not(.consumer-assistance-icon) {
    grid-column: 2;
  }

  .consumer-assistance .button {
    width: auto;
    justify-self: start;
  }

  .consumer-assistance ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .consumer-dossier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consumer-dossier-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .consomag-inner {
    grid-template-columns: 1fr;
  }

  .consomag-intro {
    max-width: 540px;
  }

  .consomag-intro .button {
    width: auto;
  }

  .afoc-values-grid article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 24px 16px;
  }

  .afoc-values-grid article > span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .afoc-missions-layout {
    grid-template-columns: 1fr;
  }

  .afoc-missions-intro {
    position: static;
    max-width: 620px;
  }

  .afoc-audience-copy {
    width: 82%;
    padding: 30px;
  }

  .afoc-expertise {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }

  .afoc-expertise-copy {
    padding: 34px;
  }

  .afoc-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .page-hero-copy {
    min-height: 0;
  }

  .page-hero {
    display: flex;
    flex-direction: column;
  }

  .page-hero-media {
    position: relative;
    order: -1;
    width: 100% !important;
    height: 225px;
  }

  .page-hero-media::after {
    background: linear-gradient(0deg, #f4f7f8 0%, transparent 50%);
  }

  .page-hero-copy {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .page-hero-copy .breadcrumb {
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 48px;
  }

  .page-hero-lead {
    font-size: 15px;
  }

  .filter-section {
    padding: 22px 0;
  }

  .filter-row {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 14px;
  }

  .filter-tabs {
    grid-column: 1 / -1;
    width: 100%;
  }

  .mobile-category-filter {
    position: relative;
    display: block;
  }

  .mobile-category-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--navy);
    background: var(--white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-category-toggle[aria-expanded="true"] {
    border-color: var(--navy);
    box-shadow: 0 0 0 2px rgba(8, 47, 73, 0.08);
  }

  .mobile-category-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .mobile-category-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    width: min(310px, calc(100vw - (var(--gutter) * 2)));
    max-height: min(430px, 62vh);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(8, 47, 73, 0.18);
  }

  .mobile-category-popover[hidden] {
    display: none;
  }

  .mobile-category-heading {
    margin: 3px 6px 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-category-option {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    padding: 7px 10px;
    border: 0;
    border-radius: 5px;
    color: var(--ink);
    background: transparent;
    text-align: left;
  }

  .mobile-category-option:hover,
  .mobile-category-option.is-current {
    color: var(--navy);
    background: var(--mist);
  }

  .mobile-category-option.is-current {
    font-weight: 800;
  }

  .mobile-category-option .mini-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
  }

  .mobile-category-option .mini-icon svg,
  .mobile-category-option .mini-icon img {
    width: 17px;
    height: 17px;
  }

  .mobile-category-option small {
    color: var(--muted);
    font-size: 11px;
  }

  .news-search {
    width: 100%;
    max-width: none;
  }

  .news-categories-panel {
    display: none;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story img {
    min-height: 220px;
  }

  .listing-grid,
  .theme-grid,
  .faq-grid,
  .sidebar-stack,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    flex-direction: column;
  }

  .faq-column {
    width: 100%;
  }

  .sidebar-stack > :last-child:nth-child(odd),
  .article-aside .sidebar-panel:last-child,
  .article-aside {
    grid-column: auto;
  }

  .form-panel,
  .info-panel,
  .dark-cta {
    padding: 24px 20px;
  }

  .contact-form .solid-submit {
    width: 100%;
    min-width: 0;
  }

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

  .example-item,
  .example-item:nth-child(4) {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .example-item:first-child {
    border-top: 0;
  }

  .theme-card {
    grid-template-columns: 50px 1fr;
    min-height: 0;
    padding: 22px 18px;
  }

  .faq-grid details {
    border-bottom: 1px solid var(--line);
  }

  .article-hero {
    display: flex;
    flex-direction: column;
  }

  .article-hero-media {
    position: relative;
    order: -1;
    width: 100%;
    height: 245px;
  }

  .article-hero-media::after {
    background: linear-gradient(0deg, #f7f9fa 0%, transparent 50%);
  }

  .article-hero-copy {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .article-hero-copy .breadcrumb {
    margin-bottom: 28px;
  }

  .article-heading h1 {
    font-size: 40px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .share-rail {
    position: static;
    grid-row: auto;
    display: flex;
  }

  .article-toc {
    padding: 24px 20px;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .article-aside {
    grid-column: 1;
  }

  .article-help {
    display: grid;
  }

  .article-help .button {
    width: 100%;
  }

  .section-bar {
    align-items: start;
    flex-direction: column;
  }

  .contact-hero,
  .contact-hero .page-hero-copy {
    min-height: 0;
  }

  .contact-hero .page-hero-copy {
    padding-bottom: 42px;
  }

  .contact-info-section {
    margin-top: 0;
    padding-top: 22px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    width: calc(100% - var(--gutter) * 2);
    padding: 8px 18px;
  }

  .contact-info-item,
  .contact-info-item:nth-child(-n + 2) {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-info-item:first-child {
    border-top: 0;
  }

  .contact-main-section {
    padding-top: 24px;
  }

  .location-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 250px;
  }

  .location-copy {
    padding: 28px 22px;
  }

  .contact-faq {
    width: calc(100% - var(--gutter) * 2);
    padding: 22px 18px;
  }

  .consumer-hero,
  .consumer-hero .page-hero-copy {
    min-height: 0;
  }

  .consumer-quick-grid > a {
    flex-basis: 225px;
    min-height: 104px;
  }

  .consumer-featured {
    grid-template-columns: 1fr;
  }

  .consumer-featured-media {
    min-height: 230px;
  }

  .consumer-story-grid {
    grid-template-columns: 1fr;
  }

  .consumer-story {
    grid-template-columns: 115px 1fr;
  }

  .consumer-story img {
    min-height: 205px;
  }

  .consumer-assistance {
    display: block;
    padding: 30px 24px;
  }

  .consumer-assistance-icon {
    margin-bottom: 24px;
  }

  .consumer-assistance ul {
    grid-template-columns: 1fr;
  }

  .consumer-dossier-grid,
  .consumer-advice-grid,
  .consomag-grid {
    grid-template-columns: 1fr;
  }

  .consumer-dossier-card,
  .consumer-dossier-card:last-child {
    grid-column: auto;
    min-height: 360px;
  }

  .consumer-advice-card {
    min-height: 0;
  }

  .consomag-intro .button {
    width: 100%;
  }

  .afoc-hero,
  .afoc-hero .page-hero-copy {
    min-height: 0;
  }

  .afoc-hero .page-hero-copy {
    padding-bottom: 44px;
  }

  .afoc-hero-actions {
    display: grid;
  }

  .afoc-values-grid {
    grid-template-columns: 1fr;
  }

  .afoc-values-grid article {
    grid-template-columns: 48px 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .afoc-values-grid article:first-child {
    border-top: 0;
  }

  .afoc-mission-grid,
  .afoc-audience-grid,
  .afoc-actions-grid {
    grid-template-columns: 1fr;
  }

  .afoc-mission-card,
  .afoc-mission-card.is-wide {
    grid-column: auto;
    min-height: 0;
  }

  .afoc-audience-card,
  .afoc-audience-copy {
    min-height: 350px;
  }

  .afoc-audience-copy {
    width: 100%;
  }

  .afoc-expertise {
    grid-template-columns: 1fr;
  }

  .afoc-expertise-media {
    min-height: 300px;
  }

  .afoc-expertise-copy .button {
    width: 100%;
  }

  .afoc-final-actions {
    display: grid;
    width: 100%;
  }
}
