/*
Theme Name: BCCC
Author: Thirst Creative
Description: Custom WordPress theme for BCCC.
Version: 1.0.0
Requires at least: 6.7
Requires PHP: 8.3
Text Domain: bccc
*/

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bccc-container: 1250px;
  --bccc-content-width: 828px;
  --bccc-page-gutter: 24px;
  --bccc-gray-1: #333333;
  --bccc-gray-4: #bdbdbd;
  --bccc-gray-5: #e0e0e0;
  --bccc-gray-6: #f7f7f7;
  --bccc-rule: #eeeeee;
  --bccc-blue: #2d9cdb;
  --bccc-blue-dark: #2f80ed;
  --bccc-blue-light: #f2f7fe;
  --bccc-green: #27ae60;
  --bccc-red: #eb5757;
  --bccc-footer: #292e36;
  --bccc-white: #ffffff;
  --bccc-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  --bccc-motion-duration-disclosure: 320ms;
  --bccc-motion-duration-disclosure-icon: 200ms;
  --bccc-motion-duration-news-filter: 320ms;
  --bccc-motion-duration-news-filter-exit: 120ms;
  --bccc-motion-duration-news-filter-enter: 260ms;
  --bccc-motion-distance-news-filter: 18px;
  --bccc-motion-easing-standard: cubic-bezier(0.16, 1, 0.3, 1);
  /* Figma FAQ icon geometry (20:4210), pixel-snapped at its authored 20px size. */
  --bccc-disclosure-icon-size: 20px;
  --bccc-disclosure-icon-stroke: 2px;
  --bccc-component-custom-icon-size: 33px;
  --bccc-component-custom-icon-compact-size: 22px;
  --bccc-component-custom-icon-feature-size: 23px;
  /* Figma type styles: desktop values from page-home (21:1955). */
  --bccc-font-h1: 72px;
  --bccc-font-h2: 54px;
  --bccc-font-h3: 35px;
  --bccc-font-h4: 28px;
  --bccc-font-h5: 24px;
  --bccc-font-display-mobile: 38px;
  --bccc-font-news-card-title: 28px;
  --bccc-font-eyebrow: 22px;
  --bccc-line-news-card-title: 1.2;
  --bccc-line-eyebrow: 34px;
  --bccc-tracking-h1: -0.0115em;
  --bccc-section-space: 128px;
  --bccc-home-section-gap: var(--bccc-section-space);
  /* Figma generic page (25:4315). */
  --bccc-generic-hero-height: 339.3789367675781px;
  --bccc-generic-copy-size: 22px;
  --bccc-generic-copy-line-height: 34px;
  /* Figma News index (21:3750). */
  --bccc-news-container: 1251px;
  --bccc-news-section-gap: var(--bccc-section-space);
  --bccc-news-filter-results-gap-mobile: 64px;
  --bccc-news-feature-height: 522px;
  --bccc-news-feature-radius: 22px;
  --bccc-news-card-height: 426px;
  --bccc-news-card-media-height: 220px;
  /* Figma Post Single (21:2180). */
  --bccc-post-content-width: 828px;
  --bccc-post-copy-size: 22px;
  --bccc-post-copy-line: 34px;
  --bccc-post-hero-copy-height: 537px;
  --bccc-post-media-width: 1536px;
  --bccc-post-media-height: 618px;
  --bccc-post-media-overlap: 224px;
  --bccc-post-media-radius: 22px;
  --bccc-post-reviewer-height: 224px;
  --bccc-post-reviewer-image-size: 160px;
  --bccc-post-reviewer-inset: 32px;
  --bccc-post-reviewer-radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bccc-gray-1);
  background: var(--bccc-white);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
}

body.mce-content-body {
  --bccc-editor-content-font-size: 16px;
  --bccc-editor-content-inset-block: 9px;
  --bccc-editor-content-inset-inline: 10px;

  font-size: var(--bccc-editor-content-font-size);
  margin: var(--bccc-editor-content-inset-block)
    var(--bccc-editor-content-inset-inline);
}

a {
  color: var(--bccc-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--bccc-blue-dark);
  outline-offset: 4px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:where(
  a,
  button,
  summary,
  [role="button"],
  [role="link"],
  [role="tab"],
  input:is([type="button"], [type="reset"], [type="submit"])
) {
  -webkit-user-select: none;
  user-select: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.5rem;
  left: 0.5rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--bccc-white);
  background: var(--bccc-gray-1);
}

.bccc-container,
.site-header__inner,
.site-footer__inner {
  width: min(calc(100% - (2 * var(--bccc-page-gutter))), var(--bccc-container));
  margin-inline: auto;
}

.site-header {
  background: var(--bccc-blue-light);
}

.site-header--white {
  background: var(--bccc-white);
}

.site-header__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 72px;
  padding-top: 32px;
}

@media (min-width: 801px) {
  .site-header--contact .site-header__inner {
    height: 81.378929px;
    padding-top: 41px;
  }
}

.site-logo {
  display: block;
  flex: 0 0 253px;
  width: 253px;
  height: 40.38px;
}

.site-logo img {
  width: 253px;
  height: 40.38px;
}

.site-navigation {
  margin-left: auto;
}

.site-navigation ul {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}

.site-navigation li {
  opacity: 0.5;
}

.site-navigation .current-menu-item,
.site-navigation .current_page_item,
.site-navigation .current-page-ancestor {
  opacity: 1;
}

.site-navigation a {
  color: var(--bccc-gray-1);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.site-navigation-toggle {
  display: none;
}

.site-main {
  min-height: 65vh;
}

.eyebrow {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  color: var(--bccc-blue);
  font-size: var(--bccc-font-eyebrow);
  font-weight: 500;
  line-height: var(--bccc-line-eyebrow);
}

.eyebrow > span {
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 6px;
  border-radius: 9px;
  background: var(--bccc-blue);
}

.component-tone-red .eyebrow {
  color: var(--bccc-red);
}

.component-tone-red .eyebrow > span {
  background: var(--bccc-red);
}

.component-tone-green .eyebrow {
  color: var(--bccc-green);
}

.component-tone-green .eyebrow > span {
  background: var(--bccc-green);
}

.text-link {
  display: inline-grid;
  grid-template-columns: auto 8px;
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: var(--bccc-blue);
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
}

.text-link img {
  width: 14px;
  max-width: none;
  height: 8px;
  justify-self: center;
  transform: rotate(-90deg);
}

.text-link--dark {
  flex: 0 0 auto;
  color: var(--bccc-gray-1);
}

.text-link--small {
  font-size: 14px;
  line-height: 22px;
}

.button-primary {
  display: inline-flex;
  width: fit-content;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding-inline: 40px;
  border-radius: 5px;
  color: var(--bccc-white);
  background: var(--bccc-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.button-primary:hover {
  background: var(--bccc-blue-dark);
  text-decoration: none;
}

.button-primary img {
  display: none;
}

.news-carousel {
  margin-top: 64px;
}

.news-cards {
  display: grid;
  grid-auto-columns: calc((100% - 96px) / 3);
  grid-auto-flow: column;
  gap: var(--bccc-news-card-gap, 48px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.news-cards.is-animating {
  scroll-snap-type: none;
}

.news-cards::-webkit-scrollbar {
  display: none;
}

.news-cards:focus-visible {
  outline: 3px solid var(--bccc-blue-dark);
  outline-offset: 8px;
}

.news-card {
  display: flex;
  height: var(--bccc-news-card-height);
  min-height: var(--bccc-news-card-height);
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--bccc-white);
  box-shadow: inset 0 0 0 1px var(--bccc-gray-5);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.news-card--no-image {
  background: #f9faff;
}

.news-card__media {
  display: block;
  flex: 0 0 var(--bccc-news-card-media-height);
  height: var(--bccc-news-card-media-height);
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card__media:hover img {
  transform: scale(1.025);
}

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  padding: 32px;
}

.news-card h3 {
  margin: 0;
  font-size: var(--bccc-font-news-card-title);
  font-weight: 500;
  line-height: var(--bccc-line-news-card-title);
}

.news-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--bccc-gray-1);
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-card:not(.news-card--no-image) h3 a {
  -webkit-line-clamp: 2;
}

.news-card__meta {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 32px;
  border-top: 1px solid var(--bccc-rule);
  color: var(--bccc-gray-4);
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
}

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

.news-card__meta img {
  width: 14px;
  height: 14px;
}

.news-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
}

.news-carousel__controls[hidden] {
  display: none;
}

.news-carousel__pagination {
  display: flex;
  flex: 0 0 auto;
  gap: var(--news-page-gap, 32px);
  width: auto;
  height: 44px;
}

.news-carousel__page {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  transform-origin: left center;
}

.news-carousel__page::before {
  position: absolute;
  inset: 50% 0 auto;
  height: 16px;
  border-radius: 999px;
  background: #d9d9d9;
  content: "";
  transform: translateY(-50%);
  transition: background-color 180ms ease-out;
}

.news-carousel__page.is-active {
  flex-basis: 108px;
  width: 108px;
}

.news-carousel__page.is-active::before {
  background: var(--bccc-blue);
}

.news-carousel__page:hover::before {
  background: var(--bccc-gray-4);
}

.news-carousel__page.is-active:hover::before {
  background: var(--bccc-blue-dark);
}

.news-carousel__page:focus-visible {
  outline: none;
}

.news-carousel__page:focus-visible::before {
  outline: 3px solid var(--bccc-blue-dark);
  outline-offset: 3px;
}

.news-carousel__actions {
  display: flex;
  gap: 32px;
}

.news-carousel__actions button {
  display: grid;
  width: 50px;
  min-height: 50px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--bccc-white);
  background: var(--bccc-blue);
  cursor: pointer;
}

.news-carousel__actions button:hover {
  background: var(--bccc-blue-dark);
}

.news-carousel__actions button:disabled {
  cursor: default;
}

.news-carousel__actions button:disabled:hover {
  background: var(--bccc-blue);
}

.news-carousel__actions button img {
  width: 16px;
  height: 13px;
}

.site-footer {
  height: 472px;
  min-height: 472px;
  color: var(--bccc-white);
  background: var(--bccc-footer);
}

.site-footer__inner {
  display: flex;
  height: 472px;
  min-height: 472px;
  flex-direction: column;
  padding-top: 96px;
}

.footer-navigation {
  height: 120px;
  min-height: 120px;
  font-size: 15px;
  line-height: 1.4;
}

.footer-navigation__title {
  margin: 0 0 20px;
}

.footer-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0.75;
}

.footer-navigation a {
  color: var(--bccc-white);
}

.footer-notice {
  display: flex;
  height: 78px;
  min-height: 78px;
  align-items: center;
  margin-top: 48px;
  padding: 20px;
  border-left: 20px solid var(--bccc-blue-dark);
  border-radius: 12px;
  color: var(--bccc-gray-1);
  background: var(--bccc-white);
  box-shadow: var(--bccc-shadow);
}

.footer-notice p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.site-footer__copyright {
  display: block;
  height: 82px;
  min-height: 82px;
  padding: 32px 0;
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.page-title,
.entry-title {
  line-height: 1.15;
  text-wrap: balance;
}

.generic-page__hero .component-hero__inner {
  min-height: var(--bccc-generic-hero-height);
  justify-content: flex-start;
  padding-block: var(--bccc-section-space);
}

.generic-page__body,
.generic-page > .component-rich-text {
  padding-block: var(--bccc-section-space);
}

.generic-page__body .entry-content,
.generic-page > .component-rich-text .prose {
  width: min(100%, var(--bccc-content-width));
  margin-left: -1px;
  margin-right: 0;
  font-size: var(--bccc-generic-copy-size);
  font-weight: 400;
  line-height: var(--bccc-generic-copy-line-height);
  overflow-wrap: break-word;
}

.generic-page__body .prose :is(p, li),
.generic-page > .component-rich-text .prose :is(p, li) {
  line-height: inherit;
}

.generic-page__body .prose :is(p, ul, ol),
.generic-page > .component-rich-text .prose :is(p, ul, ol) {
  margin-block: 0 20px;
}

.generic-page__body .prose :is(ul, ol),
.generic-page > .component-rich-text .prose :is(ul, ol) {
  padding-left: 33px;
  padding-right: 3px;
}

.generic-page__body .prose > :last-child,
.generic-page > .component-rich-text .prose > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  :root {
    --bccc-page-gutter: 40px;
  }

  .site-navigation ul {
    gap: 24px;
  }

  .site-navigation a {
    font-size: 16px;
  }

  .news-cards {
    grid-auto-columns: calc((100% - 48px) / 2);
  }
}

@media (max-width: 800px) {
  :root {
    /* Figma type styles: mobile values from page-home (151:597). */
    --bccc-font-h1: var(--bccc-font-display-mobile);
    --bccc-font-h2: var(--bccc-font-display-mobile);
    --bccc-font-h3: 26px;
    --bccc-font-h4: 20px;
    --bccc-font-news-card-title: 22px;
    --bccc-font-eyebrow: 16px;
    --bccc-line-news-card-title: 1.3;
    --bccc-line-eyebrow: 16px;
    --bccc-generic-copy-size: 17px;
    --bccc-generic-copy-line-height: 26px;
  }

  .generic-page__hero .component-hero__inner {
    min-height: 0;
    padding-block: 80px;
  }

  .generic-page__body,
  .generic-page > .component-rich-text {
    padding-block: 96px;
  }

  .generic-page__body .entry-content,
  .generic-page > .component-rich-text .prose {
    margin-left: 0;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    height: auto;
    min-height: 72px;
    gap: 20px;
    padding-bottom: 24px;
  }

  .site-navigation-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 9px;
    color: var(--bccc-blue);
    background: var(--bccc-white);
    cursor: pointer;
  }

  .site-navigation-toggle[hidden],
  .site-navigation[hidden] {
    display: none;
  }

  .site-navigation-toggle[aria-expanded="true"] {
    background: #eaf5fb;
  }

  .site-navigation-toggle > span {
    display: block;
    width: 14px;
    height: 2px;
    background: currentcolor;
    transition:
      opacity 160ms ease-out,
      transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-navigation-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-navigation-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .site-navigation-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-navigation {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    border-top: 1px solid var(--bccc-gray-5);
  }

  .site-navigation ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-top: 8px;
    white-space: normal;
  }

  .site-navigation li {
    width: 100%;
    opacity: 0.5;
  }

  .site-navigation a {
    display: flex;
    min-height: 52px;
    align-items: center;
  }

  .text-link {
    min-height: 44px;
  }

  .footer-navigation a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .news-cards {
    grid-auto-columns: min(88%, 390px);
    overflow-x: auto;
  }

  .site-footer,
  .site-footer__inner {
    height: auto;
    min-height: 0;
  }

  .site-footer__inner {
    padding-top: 72px;
  }

  .footer-navigation,
  .footer-notice,
  .site-footer__copyright {
    height: auto;
  }

  .site-footer__copyright {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  :root {
    --bccc-page-gutter: 24px;
  }

  .site-header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .generic-page__hero .component-hero__inner,
  .generic-page__body,
  .generic-page > .component-rich-text {
    padding-block: 64px;
  }

  .site-logo,
  .site-logo img {
    width: 206px;
    height: auto;
  }

  .site-logo {
    flex-basis: 206px;
  }

  .site-navigation a {
    font-size: 16px;
  }

  .news-card {
    height: 426px;
    min-height: 426px;
  }

  .news-card__body {
    padding: 32px;
  }

  .news-card__meta {
    gap: 24px;
    padding-top: 32px;
  }

  .news-carousel__controls {
    gap: 24px;
  }

  .news-carousel__actions {
    gap: 32px;
  }

  .news-carousel__actions button {
    width: 50px;
    min-height: 50px;
  }

  .site-footer__inner {
    padding-top: 64px;
  }

  .footer-notice {
    align-items: flex-start;
    padding: 20px;
    border-left-width: 20px;
  }

  .footer-notice p {
    font-size: 16px;
    line-height: 1.3;
  }

  .footer-navigation a {
    min-height: 0;
  }

  .site-footer__copyright {
    flex-wrap: nowrap;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  .news-cards {
    scroll-behavior: auto;
  }

  .site-navigation-toggle > span,
  .news-card__media img {
    transition: none;
  }

  .news-carousel__page {
    transition: none;
  }
}

/* ACF page components */

.component-hero {
  background: var(--bccc-white);
}

.component-hero--light {
  background: var(--bccc-blue-light);
}

.component-hero__inner {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding-block: 128px;
}

.component-hero--large .component-hero__inner {
  min-height: 490px;
  justify-content: flex-start;
  padding-block: 96px 32px;
}

.component-hero__announcement {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px;
  border-left: 20px solid var(--bccc-green);
  border-radius: 12px;
  background: var(--bccc-white);
  box-shadow: var(--bccc-shadow);
}

.component-hero__announcement p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.component-hero__announcement p img {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
}

.component-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.component-hero__announcement + .component-hero__heading {
  margin-top: 64px;
}

.component-hero h1 {
  max-width: 1250px;
  margin: 0;
  color: var(--bccc-gray-1);
  font-size: var(--bccc-font-h1);
  font-weight: 400;
  letter-spacing: var(--bccc-tracking-h1);
  line-height: 1.15;
  text-wrap: balance;
}

.component-hero h1 span {
  color: var(--bccc-blue);
}

.component-hero__intro {
  max-width: 52rem;
  margin: 0;
  font-size: 22px;
  line-height: 1.55;
}

.component-hero__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--bccc-gray-1);
  font-size: 14px;
}

.component-hero__featured {
  height: min(650px, 52vw);
  margin-bottom: -260px;
  overflow: hidden;
  border-radius: 12px;
  transform: translateY(64px);
}

.component-hero__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post .component-hero:has(.component-hero__featured) + .component-rich-text,
.component-hero:has(.component-hero__featured) + .component-rich-text {
  padding-top: 388px;
}

.component-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.component-heading h2,
.component-text-columns h1,
.component-text-columns h2,
.component-text-media h2,
.anchored-section h2,
.component-accordion h2,
.component-timeline h2 {
  margin: 0;
  font-size: var(--bccc-font-h2);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-wrap: balance;
}

.component-heading > p:not(.eyebrow) {
  max-width: 48rem;
  margin: -12px 0 0;
}

.component-card-grid {
  padding-block: 128px;
}

.component-card-grid--blue_transition {
  background: linear-gradient(to bottom, var(--bccc-blue-light) 0 224px, var(--bccc-white) 224px 100%);
}

.component-card-grid--muted {
  background: #f9faff;
}

.component-card-grid .component-heading {
  margin-bottom: 64px;
}

.component-card-grid__items {
  display: grid;
  grid-template-columns: repeat(var(--card-count, 3), minmax(0, 1fr));
  gap: 32px;
}

.component-card {
  display: flex;
  min-height: 308px;
  flex-direction: column;
  gap: 40px;
  padding: 32px;
  border: 0;
  border-radius: 16px;
  background: var(--bccc-white);
  box-shadow: inset 0 0 0 1px var(--bccc-gray-5);
}

.component-card-grid--pathways .component-card {
  min-height: 394px;
  gap: 48px;
}

.component-card-grid--pathways .component-card__body {
  gap: 32px;
}

.component-card-grid--callouts .component-card {
  min-height: 368px;
  gap: 32px;
  border-radius: 12px;
}

.component-card-grid--callouts {
  padding-block: 64px 0;
}

.component-card-grid--callouts .component-card__icon {
  flex-basis: 60px;
  width: 60px;
  height: 60px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%),
    linear-gradient(90deg, var(--bccc-blue-dark) 0%, var(--bccc-blue-dark) 100%);
}

.component-card-grid--callouts .component-card__icon img {
  width: 22px;
  height: 22px;
}

.component-card-grid--callouts .component-icon--custom {
  width: var(--bccc-component-custom-icon-compact-size);
  height: var(--bccc-component-custom-icon-compact-size);
}

.component-card-grid--callouts .component-icon--lock {
  width: 20px;
  height: 22px;
}

.component-card-grid--callouts .component-icon--edit {
  width: 22px;
  height: 22px;
}

.component-card-grid--callouts .component-card__copy,
.component-card-grid--callouts .component-card__copy p {
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.component-card-grid--callouts .component-card h3 {
  text-wrap: wrap;
  overflow-wrap: break-word;
}

.component-card__icon {
  display: grid;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 12px;
  color: var(--bccc-blue);
  background: #eef8fd;
}

.component-card--red .component-card__icon {
  color: var(--bccc-red);
  background: #fdf0f0;
}

.component-card--green .component-card__icon {
  color: var(--bccc-green);
  background: #eaf7ef;
}

.component-card--neutral .component-card__icon {
  color: var(--bccc-gray-1);
  background: var(--bccc-gray-6);
}

.component-card__icon img {
  width: 33px;
  height: 33px;
}

.component-card__icon .component-icon--custom {
  width: var(--bccc-component-custom-icon-size);
  height: var(--bccc-component-custom-icon-size);
  object-fit: contain;
}

.component-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.component-card__body > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.component-card h3 {
  margin: 0;
  font-size: var(--bccc-font-h4);
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}

.component-card__copy,
.component-card__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.component-card__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.component-text-columns,
.component-text-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  padding-block: 128px 0;
}

.component-text-columns__intro,
.component-text-columns__content,
.component-text-media__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.component-text-columns h1,
.component-text-columns h2,
.component-text-media h2,
.anchored-section h2 {
  font-size: var(--bccc-font-h3);
  font-weight: 500;
  letter-spacing: 0;
}

.component-hero h1,
.anchored-section h2 {
  text-wrap: wrap;
}

.component-text-columns :is(h1, h2) span {
  display: block;
  color: var(--bccc-blue);
}

.component-text-columns--contact {
  gap: 32px;
}

.component-text-columns--contact :is(h1, h2) {
  font-size: var(--bccc-font-h2);
  font-weight: 400;
  line-height: 1.2;
}

.component-text-columns--contact .component-body-copy {
  gap: 32px;
}

.component-text-columns--contact .component-body-copy > p:first-child {
  font-size: var(--bccc-font-h4);
  font-weight: 500;
  line-height: 1.2;
}

.component-text-columns--contact .component-body-copy > p:not(:first-child),
.component-text-columns--contact .component-body-copy > p:not(:first-child) strong {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
}

.component-text-media {
  align-items: center;
}

.component-text-media--image-left .component-text-media__content {
  order: 2;
}

.component-text-media__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.component-body-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.component-body-copy > * {
  margin-block: 0;
}

.component-body-copy.prose > * + * {
  margin-top: 0;
}

.component-text-media__media {
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.component-text-media__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.component-text-media--media-tall .component-text-media__media {
  height: 872px;
  min-height: 872px;
}

.component-text-media--profile {
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 828px;
  padding-top: 64px;
}

.component-text-media--profile .component-text-media__media {
  min-height: 0;
  height: 160px;
}

.component-text-media--profile .component-text-media__media img {
  border-radius: 12px;
}

.component-text-media--profile .component-text-media__content {
  gap: 16px;
}

.component-text-media--profile .component-text-media__copy {
  gap: 12px;
}

.component-text-media--profile h2 {
  font-size: 28px;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose p,
.prose li {
  line-height: 26px;
}

.prose p + p,
.prose ul + p,
.prose ol + p,
.prose p + ul,
.prose p + ol {
  margin-top: 20px;
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

.component-anchored-sections {
  padding-block: 122px 118px;
}

.component-anchored-sections__layout {
  display: grid;
  grid-template-columns: minmax(0, 828px) minmax(240px, 297px);
  gap: 125px;
  align-items: start;
}

.component-anchored-sections__content {
  display: flex;
  flex-direction: column;
  gap: 128px;
}

.anchored-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  scroll-margin-top: 48px;
}

.anchored-section__header {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}

.anchored-section > .prose {
  width: 100%;
}

.anchored-section__profile {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-block-start: 32px;
}

.anchored-section__profile img {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.anchored-section__profile div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.anchored-section__profile strong {
  font-size: var(--bccc-font-h3);
  font-weight: 500;
  line-height: 1.2;
}

.anchored-section__profile span {
  color: var(--bccc-blue);
  font-size: var(--bccc-font-eyebrow);
  font-weight: 500;
  line-height: 1.3;
}

.anchored-section__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.anchored-section__feature {
  display: flex;
  min-height: 113px;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--bccc-gray-5);
  font-size: 17px;
  line-height: 1.6;
}

.anchored-section__feature-icon {
  display: grid;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 12px;
  color: var(--bccc-blue);
  background: #eef8fd;
}

.anchored-section__feature-icon .component-icon--custom {
  width: var(--bccc-component-custom-icon-feature-size);
  height: var(--bccc-component-custom-icon-feature-size);
  object-fit: contain;
}

.anchored-section__secondary {
  width: 100%;
  margin-top: 32px;
}

.anchored-section__secondary h3 {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.component-anchored-sections__nav {
  position: sticky;
  top: 32px;
  padding: 32px;
  border: 1px solid var(--bccc-gray-5);
  border-radius: 12px;
  background: var(--bccc-white);
}

.component-anchored-sections__nav strong {
  display: block;
  margin-bottom: 32px;
  font-size: var(--bccc-font-h4);
  font-weight: 500;
  line-height: 1.2;
}

.component-anchored-sections__nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.component-anchored-sections__nav a {
  color: var(--bccc-gray-1);
  font-size: 17px;
}

.component-timeline,
.component-accordion {
  padding-block: 128px;
}

.component-timeline .component-heading,
.component-accordion .component-heading {
  margin-bottom: 48px;
}

.timeline-list {
  width: 100%;
  margin: 0;
}

.timeline-list > div {
  display: grid;
  grid-template-columns: 161px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 66px;
  padding-block: 16px;
  border-bottom: 1px solid var(--bccc-rule);
}

.timeline-list dt {
  color: var(--bccc-blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
}

.timeline-list dd {
  margin: 0;
  font-size: var(--bccc-font-h5);
  font-weight: 500;
  line-height: 1.2;
}

.timeline-list--large > div {
  min-height: 90px;
}

.milestone-list {
  width: 100%;
}

.milestone-item {
  box-shadow: inset 0 -1px 0 var(--bccc-rule);
}

.milestone-item summary {
  display: grid;
  min-height: 66px;
  grid-template-columns: 161px minmax(0, 1fr) 20px;
  gap: 32px;
  align-items: center;
  padding-block: 16px;
  cursor: pointer;
  list-style: none;
}

.milestone-item summary::-webkit-details-marker {
  display: none;
}

.milestone-item summary:focus-visible {
  outline: 3px solid var(--bccc-blue-dark);
  outline-offset: 4px;
}

.milestone-item__date {
  color: var(--bccc-blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
}

.milestone-item summary strong {
  color: var(--bccc-gray-1);
  font-size: var(--bccc-font-h5);
  font-weight: 500;
  line-height: 1.2;
}

.disclosure-icon {
  position: relative;
  display: grid;
  flex: 0 0 var(--bccc-disclosure-icon-size);
  width: var(--bccc-disclosure-icon-size);
  height: var(--bccc-disclosure-icon-size);
  place-items: center;
  color: var(--bccc-gray-1);
}

.disclosure-icon::before,
.disclosure-icon::after {
  display: block;
  grid-area: 1 / 1;
  background: currentColor;
  content: "";
}

.disclosure-icon::before {
  width: var(--bccc-disclosure-icon-stroke);
  height: 100%;
  clip-path: inset(0);
  transition: clip-path var(--bccc-motion-duration-disclosure-icon) var(--bccc-motion-easing-standard);
}

.disclosure-icon::after {
  width: 100%;
  height: var(--bccc-disclosure-icon-stroke);
}

details[open]:not(.is-closing) > summary .disclosure-icon::before {
  clip-path: inset(50% 0);
}

.milestone-item__body {
  padding: 0 52px 24px 193px;
}

.component-notice {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding: 24px;
  border-left: 20px solid var(--bccc-blue-dark);
  border-radius: 12px;
  color: var(--bccc-gray-1);
  background: var(--bccc-gray-6);
}

.component-notice--green {
  border-left-color: var(--bccc-green);
  background: #eaf7ef;
}

.component-notice--neutral {
  border-left-color: var(--bccc-gray-4);
  background: var(--bccc-gray-6);
}

.component-notice p {
  width: min(545px, 100%);
  margin: 0;
  font-size: var(--bccc-font-h4);
  font-weight: 500;
  line-height: 1.2;
}

.accordion-list {
  border-top: 1px solid var(--bccc-rule);
}

.anchored-section > .accordion-list {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--bccc-rule);
}

.accordion-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 161px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 66px;
  padding: 16px 44px 16px 0;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary:focus-visible {
  outline: 3px solid var(--bccc-blue-dark);
  outline-offset: 4px;
}

.accordion-item .disclosure-icon {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--bccc-blue-dark);
  transform: translateY(-50%);
}

.accordion-item summary > span {
  color: var(--bccc-blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
}

.accordion-item summary strong {
  font-size: var(--bccc-font-h5);
  font-weight: 500;
  line-height: 1.2;
}

.accordion-item__body {
  padding: 0 44px 24px 193px;
}

.component-accordion--contact .accordion-list {
  border-top: 0;
}

.component-accordion--contact .accordion-item {
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 var(--bccc-rule);
}

.component-accordion--contact .accordion-item summary {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
}

.component-accordion--contact .disclosure-icon {
  color: var(--bccc-gray-1);
}

.component-accordion--contact .accordion-item__body {
  padding-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  .disclosure-icon::before {
    transition: none;
  }
}

@media (min-width: 801px) {
  .component-text-columns--contact {
    left: -1px;
    position: relative;
  }

  .component-text-columns--contact .component-body-copy > p:first-child {
    min-height: 136px;
  }

  .component-accordion--contact {
    padding-bottom: 127.625px;
  }

  .component-accordion--contact .component-heading {
    min-height: 131px;
  }

  .component-accordion--contact .accordion-item summary {
    height: 61px;
  }
}

.component-latest-posts {
  margin-top: 128px;
  padding-block: 128px;
  border-top: 1px solid var(--bccc-gray-5);
}

.component-latest-posts .component-heading {
  margin-bottom: 64px;
}

.component-latest-posts--grid .news-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-columns: auto;
  grid-auto-flow: row;
  overflow: visible;
}

.component-latest-posts--grid {
  margin-top: 0;
  padding-top: 96px;
  border-top: 0;
}

.component-latest-posts--has-featured {
  position: relative;
  z-index: 1;
  margin-top: -64px;
  padding-top: 0;
}

.news-featured {
  display: grid;
  width: 100%;
  height: var(--bccc-news-feature-height);
  min-height: var(--bccc-news-feature-height);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  overflow: hidden;
  border: 0;
  border-radius: var(--bccc-news-feature-radius);
  background: var(--bccc-white);
  box-shadow: inset 0 0 0 1px var(--bccc-gray-5);
}

.news-featured__media {
  height: var(--bccc-news-feature-height);
  min-height: var(--bccc-news-feature-height);
  overflow: hidden;
}

.news-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured__body {
  min-width: 0;
  padding: 48px;
}

.news-featured--no-media .news-featured__body {
  grid-column: 1 / -1;
}

.news-featured__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.news-featured__meta {
  padding: 0 0 32px;
  border-top: 0;
  border-bottom: 1px solid var(--bccc-rule);
  color: var(--bccc-gray-1);
}

.news-featured__meta img {
  filter: brightness(27%);
}

.news-featured__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-featured__copy h2,
.news-featured__copy p {
  margin: 0;
}

.news-featured__copy h2 {
  font-size: var(--bccc-font-h3);
  font-weight: 500;
  line-height: 1.2;
}

.news-featured__copy h2 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-featured__copy p {
  display: -webkit-box;
  overflow: hidden;
  line-height: 26px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.component-latest-posts--has-featured .news-filters {
  margin-top: var(--bccc-news-section-gap);
}

.news-filters {
  position: relative;
  display: grid;
  height: 58px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 var(--bccc-news-section-gap);
}

.news-filters a {
  display: flex;
  height: 61px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 32px;
  border: 0;
  border-bottom: 1px solid var(--bccc-gray-5);
  border-radius: 0;
  color: var(--bccc-gray-1);
  font-size: var(--bccc-font-h5);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.5;
}

.news-filters__indicator {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: var(--news-filter-indicator-width, 0);
  height: 1px;
  background: var(--bccc-blue);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--news-filter-indicator-x, 0), 0, 0);
}

.news-filters a:hover,
.news-filters a.is-active {
  border-color: var(--bccc-blue);
  color: var(--bccc-blue);
  background: transparent;
  text-decoration: none;
  opacity: 1;
}

.news-carousel.is-enhanced .news-filters a,
.news-carousel.is-enhanced .news-filters a:hover,
.news-carousel.is-enhanced .news-filters a.is-active {
  border-bottom-color: var(--bccc-gray-5);
}

.news-carousel.is-enhanced .news-filters__indicator {
  opacity: 1;
}

.news-carousel.is-enhanced .news-filters.is-ready .news-filters__indicator {
  transition:
    width var(--bccc-motion-duration-news-filter) var(--bccc-motion-easing-standard),
    transform var(--bccc-motion-duration-news-filter) var(--bccc-motion-easing-standard);
}

.news-filter-results {
  position: relative;
}

.news-filter-results[aria-busy="true"] {
  pointer-events: none;
}

.news-card[hidden],
.news-filter-empty[hidden],
.pagination[hidden] {
  display: none;
}

@supports selector(.news-carousel:has(.news-filter-target:target)) {
  .news-carousel:not(.is-enhanced):has(.news-filter-target:target) .news-filters a.is-active {
    border-bottom-color: var(--bccc-gray-5);
    color: var(--bccc-gray-1);
    opacity: 0.5;
  }

  .news-carousel:not(.is-enhanced):has(#updates-announcements:target) .news-filters a[data-news-category="updates-announcements"],
  .news-carousel:not(.is-enhanced):has(#key-documents:target) .news-filters a[data-news-category="key-documents"],
  .news-carousel:not(.is-enhanced):has(#published-submissions:target) .news-filters a[data-news-category="published-submissions"] {
    border-bottom-color: var(--bccc-blue);
    color: var(--bccc-blue);
    opacity: 1;
  }

  .news-carousel:not(.is-enhanced):has(#updates-announcements:target) .news-card:not([data-news-categories~="updates-announcements"]),
  .news-carousel:not(.is-enhanced):has(#key-documents:target) .news-card:not([data-news-categories~="key-documents"]),
  .news-carousel:not(.is-enhanced):has(#published-submissions:target) .news-card:not([data-news-categories~="published-submissions"]) {
    display: none;
  }

  .news-carousel:not(.is-enhanced):has(.news-filter-target:target) .pagination {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-carousel.is-enhanced .news-filters.is-ready .news-filters__indicator {
    transition: none;
  }
}

/* The News index uses the exact desktop composition from Figma node 21:3750. */
.blog .site-main {
  background: linear-gradient(
    to bottom,
    var(--bccc-blue-light) 0 584px,
    var(--bccc-white) 584px 100%
  );
}

.blog .component-hero {
  background: transparent;
}

.blog .component-hero__inner {
  height: 360.378929px;
  min-height: 360.378929px;
  padding-block: 128px 0;
}

.blog .component-latest-posts--has-featured {
  margin-top: 56.621071px;
}

@media (min-width: 1300px) {
  .blog .component-latest-posts > .bccc-container {
    position: relative;
    left: -0.5px;
    width: var(--bccc-news-container);
  }
}

.component-empty-state {
  max-width: 48rem;
  padding: 48px;
  border-radius: 12px;
  background: var(--bccc-blue-light);
}

.component-empty-state h3,
.component-empty-state p {
  margin: 0;
}

.component-empty-state h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 500;
}

.pagination {
  margin-top: 64px;
}

.pagination .page-numbers {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 50%;
}

.pagination .current {
  color: var(--bccc-white);
  background: var(--bccc-blue);
}

.component-rich-text {
  padding-block: 96px 128px;
}

.component-rich-text--narrow .prose {
  width: min(100%, var(--bccc-content-width));
  margin-inline: auto;
}

.component-rich-text--wide .prose {
  width: 100%;
}

.component-rich-text h2,
.component-rich-text h3 {
  margin-top: 2em;
  line-height: 1.2;
}

/* The home composition follows the exact desktop frame rhythm in Figma. */
.home .component-card-grid--pathways {
  padding-block: var(--bccc-home-section-gap) 0;
}

.home .component-text-columns,
.home .component-text-media {
  padding-top: var(--bccc-home-section-gap);
}

.home .component-text-media:not(.component-text-media--profile) .component-text-media__media {
  height: 682px;
  min-height: 682px;
}

@media (max-width: 1100px) {
  .component-anchored-sections__layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 64px;
  }

  .component-text-columns,
  .component-text-media {
    gap: 64px;
  }

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

  .component-text-columns--contact :is(h1, h2) {
    font-size: var(--bccc-font-display-mobile);
  }
}

@media (max-width: 800px) {
  .blog .site-main {
    background: var(--bccc-white);
  }

  .blog .component-hero {
    background: var(--bccc-blue-light);
  }

  .blog .component-hero__inner {
    height: auto;
    min-height: 0;
    padding-block: 80px;
  }

  .blog .component-latest-posts--has-featured {
    margin-top: -32px;
  }

  .component-hero__inner,
  .component-hero--large .component-hero__inner {
    min-height: 0;
    padding-block: 80px;
  }

  .component-card-grid,
  .component-timeline,
  .component-accordion,
  .component-latest-posts {
    padding-block: 96px;
  }

  .component-card-grid__items,
  .component-latest-posts--grid .news-cards,
  .component-text-columns,
  .component-text-media,
  .component-anchored-sections__layout {
    grid-template-columns: 1fr;
  }

  .component-text-media--image-left .component-text-media__content {
    order: 0;
  }

  .component-text-media--profile {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .component-text-media__media {
    min-height: 0;
    height: min(620px, 90vw);
  }

  .component-text-media--media-tall .component-text-media__media {
    min-height: 0;
    height: min(620px, 90vw);
  }

  .component-anchored-sections__nav {
    position: static;
    grid-row: 1;
  }

  .component-anchored-sections__content {
    gap: 96px;
  }

  .component-latest-posts--grid .news-card {
    width: 100%;
  }

  .component-latest-posts--has-featured {
    margin-top: -32px;
    padding-top: 0;
  }

  .news-featured {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .news-featured__media {
    height: min(320px, 72vw);
    min-height: 260px;
  }

  .news-featured__body {
    min-height: 360px;
    padding: 32px;
  }

  .news-filters {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .news-filters a {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  :root {
    --bccc-home-section-gap: 64px;
  }

  .blog .component-hero__inner {
    padding-block: 64px;
  }

  .news-filters {
    height: 72px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: var(--bccc-news-filter-results-gap-mobile);
    overflow: visible;
  }

  .news-filters a {
    height: 75px;
    padding: 0 8px 16px;
    font-size: 14px;
    text-align: center;
  }

  .component-hero__inner,
  .component-hero--large .component-hero__inner,
  .component-card-grid,
  .component-timeline,
  .component-accordion,
  .component-latest-posts {
    padding-block: 64px;
  }

  .component-hero__announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-left-width: 20px;
  }

  .component-latest-posts--has-featured {
    padding-top: 0;
  }

  .news-featured__body {
    padding: 32px 24px;
  }

  .component-hero__announcement + .component-hero__heading {
    margin-top: 48px;
  }

  .component-hero__heading,
  .component-heading {
    gap: 24px;
  }

  .component-card-grid__items,
  .anchored-section__features {
    grid-template-columns: 1fr;
  }

  .component-card {
    min-height: 0;
    padding: 24px;
  }

  .component-text-columns,
  .component-text-media {
    gap: 48px;
    padding-top: 80px;
  }

  .component-text-media--profile {
    grid-template-columns: 1fr;
  }

  .component-text-media--profile .component-text-media__media {
    width: 160px;
  }

  .component-anchored-sections {
    padding-block: 80px;
  }

  .component-anchored-sections__layout {
    gap: 64px;
  }

  .component-anchored-sections__content {
    gap: 80px;
  }

  .anchored-section__profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-list > div,
  .accordion-item summary {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .milestone-item summary {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 6px 16px;
  }

  .milestone-item__date {
    grid-column: 1 / -1;
  }

  .accordion-item__body {
    padding-left: 0;
  }

  .milestone-item__body {
    padding: 0 0 24px;
  }

  .component-notice {
    margin-top: 48px;
    padding: 20px;
  }

  .component-notice p {
    font-size: 18px;
  }

  .component-latest-posts--carousel .news-carousel__controls {
    justify-content: flex-end;
  }

  .component-latest-posts--carousel .news-carousel__pagination {
    display: none;
  }

  .home .component-hero--large .component-hero__inner {
    min-height: 635px;
    padding-block: 24px 154px;
  }

  .home .component-hero__announcement p img {
    display: none;
  }

  .home .component-hero__announcement {
    height: 149px;
  }

  .home .component-hero__announcement .text-link,
  .home .component-text-columns .text-link,
  .home .component-text-media .text-link {
    min-height: 26px;
  }

  .home .component-card-grid--pathways {
    margin-top: -96px;
    padding-block: 0;
    background: transparent;
  }

  .home .component-card-grid--pathways .component-card-grid__items {
    gap: 16px;
  }

  .home .component-card-grid--pathways .component-card {
    width: 100%;
    min-height: 0;
    min-width: 0;
    flex-direction: row;
    gap: 16px;
    padding: 24px;
  }

  .home .component-card-grid--pathways .component-card__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .home .component-card-grid--pathways .component-card__icon img {
    width: 16px;
    height: 16px;
  }

  .home .component-card-grid--pathways .component-card--green .component-card__icon img {
    width: 14px;
  }

  .home .component-card-grid--pathways .component-card__body {
    justify-content: flex-start;
    gap: 12px;
  }

  .home .component-card-grid--pathways .component-card:nth-child(odd) .component-card__body {
    flex: 0 0 246px;
  }

  .home .component-card-grid--pathways .component-card__body > div:first-child {
    gap: 12px;
  }

  .home .component-card-grid--pathways .component-card__links {
    gap: 4px;
  }

  .home .component-card-grid--pathways .text-link {
    min-height: 22px;
  }

  .home .component-text-columns,
  .home .component-text-media {
    gap: 32px;
  }

  .home .component-text-columns__intro {
    gap: 24px;
  }

  .home .component-text-media__media {
    order: -1;
  }

  .home .component-text-media:not(.component-text-media--profile) .component-text-media__media {
    height: 233px;
    min-height: 233px;
  }

  .home .component-latest-posts {
    margin-top: 64px;
  }

  .home .component-latest-posts .component-heading {
    gap: 32px;
    margin-bottom: 32px;
  }

  .home .component-latest-posts .news-carousel {
    margin-top: 32px;
  }

  .home .component-latest-posts .news-cards {
    grid-auto-columns: 100%;
    gap: 32px;
  }

  .home .component-latest-posts .news-carousel__controls {
    justify-content: flex-end;
    margin-top: 32px;
  }

  .home .component-latest-posts .news-carousel__pagination {
    display: none;
  }
}

/* Post Single follows Figma node 21:2180 while reusing the shared components. */
.single-post .component-hero__heading {
  width: 100%;
}

.single-post .component-hero__meta {
  display: flex;
  width: 100%;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bccc-rule);
  line-height: 17px;
}

.single-post .component-hero__meta span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.single-post .component-hero__meta img {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.single-post .component-hero__featured {
  width: min(calc(100% - (2 * var(--bccc-page-gutter))), var(--bccc-post-media-width));
  height: auto;
  aspect-ratio: 1536 / 618;
  margin: 0 auto;
  border-radius: var(--bccc-post-media-radius);
  transform: none;
}

.single-post .single-entry .component-hero:has(.component-hero__featured) + .component-rich-text,
.single-post .single-entry .component-hero + .component-rich-text {
  padding-block: var(--bccc-section-space) 0;
}

.single-post .component-rich-text--narrow .prose {
  display: flex;
  width: min(100%, var(--bccc-post-content-width));
  flex-direction: column;
  gap: 20px;
  font-size: var(--bccc-post-copy-size);
  font-weight: 500;
  line-height: var(--bccc-post-copy-line);
}

.single-post .component-rich-text .prose :is(p, li) {
  line-height: inherit;
}

.single-post .component-rich-text .prose :is(p, ul, ol) {
  margin-block: 0;
}

.single-post .component-text-media--profile {
  width: min(calc(100% - (2 * var(--bccc-page-gutter))), var(--bccc-container));
  min-height: var(--bccc-post-reviewer-height);
  max-width: var(--bccc-container);
  grid-template-columns: var(--bccc-post-reviewer-image-size) minmax(0, 1fr);
  gap: var(--bccc-post-reviewer-inset);
  align-items: center;
  margin-top: var(--bccc-section-space);
  padding: var(--bccc-post-reviewer-inset);
  border: 0;
  border-radius: var(--bccc-post-reviewer-radius);
  box-shadow: inset 0 0 0 1px var(--bccc-gray-5);
}

.single-post .component-text-media--profile.component-text-media--image-left .component-text-media__content {
  order: 2;
}

.single-post .component-text-media--profile .component-text-media__media {
  width: var(--bccc-post-reviewer-image-size);
  height: var(--bccc-post-reviewer-image-size);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}

.single-post .component-text-media--profile .component-text-media__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.single-post .component-text-media--profile .component-text-media__content {
  height: var(--bccc-post-reviewer-image-size);
  min-width: 0;
  gap: 0;
}

.single-post .component-text-media--profile .component-text-media__copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: var(--bccc-post-reviewer-inset);
}

.component-text-media__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.component-text-media__subheading {
  margin: 0;
  color: var(--bccc-blue);
  font-size: var(--bccc-font-eyebrow);
  font-weight: 500;
  line-height: 1.3;
}

.single-post .component-text-media--profile .component-text-media__heading {
  flex: 0 0 76px;
}

.single-post .component-text-media--profile h2 {
  font-size: var(--bccc-font-h3);
  font-weight: 500;
  line-height: 1.2;
}

.single-post .component-text-media--profile .component-body-copy {
  font-size: 17px;
  line-height: 26px;
}

.single-post .component-latest-posts {
  margin-top: var(--bccc-section-space);
}

@media (min-width: 801px) {
  .single-post .component-hero--light {
    background: linear-gradient(
      to bottom,
      var(--bccc-blue-light) 0 calc(var(--bccc-post-hero-copy-height) + var(--bccc-post-media-overlap)),
      var(--bccc-white) calc(var(--bccc-post-hero-copy-height) + var(--bccc-post-media-overlap)) 100%
    );
  }

  .single-post .component-hero__inner {
    height: var(--bccc-post-hero-copy-height);
    min-height: var(--bccc-post-hero-copy-height);
    justify-content: flex-start;
    padding-block: var(--bccc-section-space) 0;
  }

  .single-post .component-hero__heading {
    gap: 64px;
  }

  .single-post .component-hero__meta {
    height: 50px;
    min-height: 50px;
  }

  .single-post .component-hero__featured {
    height: var(--bccc-post-media-height);
    aspect-ratio: auto;
  }

}

@media (max-width: 800px) {
  .single-post .component-hero__heading {
    gap: 48px;
  }

  .single-post .single-entry .component-hero:has(.component-hero__featured) + .component-rich-text,
  .single-post .single-entry .component-hero + .component-rich-text {
    padding-top: 96px;
  }

  .single-post .component-rich-text--narrow .prose {
    font-size: 19px;
    line-height: 30px;
  }

  .single-post .component-text-media--profile,
  .single-post .component-latest-posts {
    margin-top: 96px;
  }

  .single-post .component-text-media--profile .component-text-media__content,
  .single-post .component-text-media--profile .component-text-media__copy {
    height: auto;
  }

  .single-post .component-text-media--profile .component-text-media__heading {
    flex-basis: auto;
  }
}

@media (max-width: 560px) {
  .single-post .component-hero__heading {
    gap: 32px;
  }

  .single-post .component-hero__meta {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
  }

  .single-post .single-entry .component-hero:has(.component-hero__featured) + .component-rich-text,
  .single-post .single-entry .component-hero + .component-rich-text {
    padding-top: 64px;
  }

  .single-post .component-text-media--profile {
    grid-template-columns: 1fr;
    margin-top: 64px;
    padding: 24px;
  }

  .single-post .component-text-media--profile .component-text-media__media {
    width: 112px;
    height: 112px;
  }

  .single-post .component-text-media--profile .component-text-media__subheading {
    font-size: 18px;
  }

  .single-post .component-latest-posts {
    margin-top: 64px;
  }
}
