﻿.cj-didyouknow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding: 0;
  color: #f5f2ec;
}

.cj-didyouknow--text-light {
  color: #f5f2ec;
}

.cj-didyouknow--text-dark {
  color: #0b0a09;
}

.cj-didyouknow__content {
  min-width: 0;
}

.cj-didyouknow__eyebrow {
  margin: 0 0 24px;
  color: #eb5d0f;
  font-family: var(--cj-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cj-didyouknow__eyebrow::before {
  display: none;
}

.cj-didyouknow__title {
  max-width: 760px;
  margin: 0;
  color: currentColor;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.cj-didyouknow__text {
  max-width: 900px;
  margin: 18px 0 0;
  color: currentColor;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.5;
}

.cj-didyouknow__nowrap {
  white-space: nowrap;
}

.cj-didyouknow__button {
  display: inline-flex;
  align-items: stretch;
  min-height: 54px;
  color: #0b0a09;
  font-family: "Saira Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.cj-didyouknow__button span:first-child {
  display: flex;
  align-items: center;
  padding: 0 26px;
  background: #eb5d0f;
}

.cj-didyouknow__button span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-width: 54px;
  background: #f5f2ec;
  color: #0b0a09;
}

@media (max-width: 760px) {
  .cj-didyouknow {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0;
  }

  .cj-didyouknow__button {
    width: fit-content;
    max-width: 100%;
    font-size: 13px;
    white-space: normal;
  }

  .cj-didyouknow__button span:first-child {
    min-width: 0;
    padding: 0 18px;
  }
}