/**
 * CB Pushthrough Block Styles
 *
 * @package  cb-identity2025
 */
.cb-pushthrough {
  background-color: var(--col-primary-black);
  color: var(--col-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  isolation: isolate;
}
.cb-pushthrough.has-bg {
  background-image: var(--_bg-url);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cb-pushthrough__pretitle {
  font-size: var(--fs-200);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  color: var(--col-green-400);
  margin-top: 1rem;
  padding-block: 1rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.cb-pushthrough h2 {
  font-size: var(--fs-850);
  font-weight: var(--fw-light);
}
.cb-pushthrough__left-content {
  font-size: var(--fs-600);
  line-height: 1.5;
  text-wrap: balance;
}
.cb-pushthrough__desc {
  font-size: var(--fs-400);
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-wrap: balance;
}
.cb-pushthrough__link {
  text-decoration: none;
  font-weight: var(--fw-semi);
  font-size: var(--fs-500);
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--col-white);
  margin-top: 2rem;
  transition: color 0.3s ease;
}
.cb-pushthrough__link:hover {
  color: var(--col-green-300);
}
.cb-pushthrough .overlay {
  background-color: rgba(47, 19, 186, 0.8);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cb-pushthrough .overlay--white {
  background-color: rgba(255, 255, 255, 0.2);
}
.cb-pushthrough .overlay--black {
  background-color: rgba(13, 13, 12, 0.2);
}