﻿.cj-credential {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: stretch;
}

.cj-credential__logo-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.cj-credential__kicker {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  width: fit-content;
  margin: 0 0 auto -34px;
  padding: 0 20px 0 34px;
  color: #0b0a09;
  background: #eb5d0f;
  font-family: var(--cj-font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  opacity: 1;
}

.cj-credential__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 10px;
  height: 10px;
  background: #8c3408;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.cj-credential__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  opacity: 1;
  mix-blend-mode: normal;
}

.cj-credential__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cj-credential__title {
  margin: 0;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.cj-credential__accent {
  color: #eb5d0f;
}

.cj-credential__text {
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.6;
}

.cj-credential__button {
  width: fit-content;
  margin-top: 34px;
}

.cj-credential--light {
  color: #0b0a09;
}

.cj-credential--light .cj-credential__logo-panel {
  background: transparent;
}

.cj-credential--light .cj-credential__kicker {
  color: #f5f2ec;
  background: #0b0a09;
  border: 1px solid rgba(245, 242, 236, 0.14);
  margin-left: -36px;
  padding-left: 36px;
}

.cj-credential--light .cj-credential__kicker::before {
  background: #3a352e;
}

.cj-credential--dark {
  color: #f5f2ec;
}

.cj-credential--dark .cj-credential__logo-panel {
  background: transparent;
}

.cj-credential--orange {
  color: #0b0a09;
}

.cj-credential--orange .cj-credential__logo-panel {
  background: transparent;
}

.cj-credential--orange .cj-credential__kicker {
  color: #f5f2ec;
  background: #0b0a09;
  border: 1px solid rgba(245, 242, 236, 0.14);
  margin-left: -36px;
  padding-left: 36px;
}

.cj-credential--orange .cj-credential__kicker::before {
  background: #3a352e;
}

.cj-credential--orange .cj-credential__logo {
  filter: invert(1);
}

@media (max-width: 900px) {
  .cj-credential {
    grid-template-columns: 1fr;
  }

  .cj-credential__logo-panel {
    min-height: 260px;
  }

  .cj-credential__logo {
    width: 100%;
  }
}