/**
 * CB About Page Header Block Styles
 *
 * @package  cb-identity2025
 */
.cb-about-page-header {
  background-color: var(--col-primary-black);
  color: var(--col-white);
  background-image: var(--_bg-url);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .cb-about-page-header {
    /* iOS-specific styles */
    background-attachment: scroll;
  }
}
.cb-about-page-header__top {
  position: relative;
  padding-block: 8rem 6rem;
  isolation: isolate;
}
.cb-about-page-header__top .intro-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cb-about-page-header h1 {
  font-size: var(--fs-950);
  font-weight: var(--fw-light);
  line-height: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 1rem;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}
.cb-about-page-header__intro-text {
  font-size: var(--fs-700);
  line-height: 1.5;
  text-wrap: balance;
}
.cb-about-page-header__intro-text p:not(:first-of-type) {
  font-size: var(--fs-500);
}
.cb-about-page-header__intro-text a {
  color: var(--col-green-400);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.cb-about-page-header__intro-text a:hover {
  color: var(--col-green-300);
}
.cb-about-page-header__content-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  padding-block: 4rem 4rem;
  isolation: isolate;
  margin-bottom: 4rem;
}
.cb-about-page-header__content-wrapper .about-overlay {
  background-color: rgba(47, 19, 186, 0.8);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cb-about-page-header__intro {
  font-size: var(--fs-500);
  line-height: 1.5;
  font-weight: var(--fw-light);
  margin-bottom: 0.5em;
  color: var(--col-white);
  text-wrap: balance;
}