/**
 * CB Styled Text Image Block Styles
 *
 * @package  cb-identity2025
 */
.cb-styled-text-image {
  background-color: var(--col-primary-black);
  color: var(--col-white);
  font-size: var(--fs-800);
  line-height: 1.5;
  text-wrap: balance;
}
.cb-styled-text-image__pre-title {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-block: 0.5rem;
  font-weight: var(--fw-regular);
  font-size: var(--fs-300);
  line-height: 1;
  text-transform: uppercase;
}
.cb-styled-text-image__image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cb-styled-text-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}