/**
 * CB Brand Title Text Block Styles
 *
 * @package cb-identity2025
 */
.cb-brand-title-text {
  background-color: var(--col-primary-black);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.cb-brand-title-text__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding-left: 11vw;
  padding-right: 11vw;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  /* middle line gets even deeper pivot to stop clipping */
  /* horizontal offset to match layout */
  /* fine-tuned vertical spacing */
  /* final text rotations */
}
.cb-brand-title-text__title .line {
  position: relative;
  display: inline-block;
  margin: 0.1em 0;
  transform-origin: 25% center; /* slightly deeper pivot for safety */
}
.cb-brand-title-text__title .line:nth-child(2) {
  transform-origin: 35% center;
}
.cb-brand-title-text__title .bar {
  position: absolute;
  inset: -0.1em -0.6em; /* keeps bars wider than text */
  background: var(--col-green-400);
  z-index: 1;
  opacity: 0;
}
.cb-brand-title-text__title .text {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 5.5vw;
  font-weight: 500;
  opacity: 0;
  text-align: left;
}
.cb-brand-title-text__title .line:nth-child(1) {
  margin-left: 0em;
}
.cb-brand-title-text__title .line:nth-child(2) {
  margin-left: -3.6em;
}
.cb-brand-title-text__title .line:nth-child(3) {
  margin-left: 1.8em;
}
.cb-brand-title-text__title .line:nth-child(2) {
  margin-top: 0.1em;
}
.cb-brand-title-text__title .line:nth-child(3) {
  margin-top: -0.25em;
}
.cb-brand-title-text__title .text1 {
  transform: rotate(-3deg);
}
.cb-brand-title-text__title .text2 {
  transform: rotate(5deg);
}
.cb-brand-title-text__title .text3 {
  transform: rotate(-6deg);
}
.cb-brand-title-text__pre-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-block: 0.5rem;
  color: var(--col-green-500);
  font-weight: var(--fw-regular);
  font-size: var(--fs-600);
  line-height: 1;
}
.cb-brand-title-text__content-heading {
  font-size: var(--fs-800);
  line-height: 1.1;
  font-weight: var(--fw-semi);
}
.cb-brand-title-text__content {
  font-size: var(--fs-500);
}