/* ==========================================================
   CLUTCH ABOUT PAGE V1
   Owner: clutch-about-page.css
   ========================================================== */

.page-id-369 .clutch-page-rail {
  width: 100%;
  max-width: none;
  padding: 0;
}

.clutch-about-rail {
  width: min(calc(100% - 64px), 1230px);
  margin-inline: auto;
}

/* HERO */

.clutch-about-hero {
  padding: 88px 0 84px;
  background:
    linear-gradient(90deg, #091521 0%, #0b1622 58%, #132447 100%);
  color: #ffffff;
}

.clutch-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .8fr);
  gap: 92px;
  align-items: start;
}

.clutch-about-eyebrow {
  margin: 0 0 18px;
  color: #68a9df;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.clutch-about-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.clutch-about-hero-right p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #f1f5f9;
  font-size: 17px;
  line-height: 1.8;
}

.clutch-about-text-link {
  display: inline-block;
  margin-top: 28px;
  color: #76a7ff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.clutch-about-text-link:hover {
  color: #9ac0ff;
}

/* VALUES */

.clutch-about-values {
  padding: 88px 0 94px;
  background: #f5f7fb;
}

.clutch-about-values-eyebrow {
  margin: 0 0 18px;
  color: #68a9df;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.clutch-about-values h2 {
  max-width: 720px;
  margin: 0 0 40px;
  color: #152547;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.clutch-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clutch-about-value-card {
  min-height: 290px;
  padding: 34px 30px 30px;
  background: #ffffff;
  border: 1px solid #d9e1ea;
  border-radius: 12px;
}

.clutch-about-value-card span {
  display: block;
  margin-bottom: 20px;
  color: #155eef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
}

.clutch-about-value-card h3 {
  margin: 0 0 16px;
  color: #152547;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.clutch-about-value-card p {
  margin: 0;
  color: #4b5f78;
  font-size: 16px;
  line-height: 1.75;
}

/* NEXT STEP */

.clutch-about-next {
  padding: 82px 0 88px;
  background: #ffffff;
  border-top: 1px solid #e0e7ef;
}

.clutch-about-next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .72fr);
  gap: 86px;
  align-items: center;
}

.clutch-about-next-eyebrow {
  margin: 0 0 18px;
  color: #68a9df;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.clutch-about-next h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #152547;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.clutch-about-next-left p,
.clutch-about-next-right p {
  margin: 0;
  color: #41556e;
  font-size: 18px;
  line-height: 1.75;
}

.clutch-about-next-right p {
  max-width: 460px;
  margin-bottom: 26px;
}

/* CTA — CLUTCH STANDARD / WHITE SECTION OUTLINE STATE */

.clutch-about-cta {
  box-sizing: border-box !important;

  width: 204px !important;
  min-width: 204px !important;
  height: 50px !important;
  min-height: 50px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 2px 18px 0 !important;

  background: #ffffff !important;
  border: 1.5px solid #155eef !important;
  border-radius: 5px !important;

  color: #155eef !important;

  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.clutch-about-cta:hover,
.clutch-about-cta:focus-visible {
  background: #155eef !important;
  border-color: #155eef !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  transition:
    transform .15s ease,
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease !important;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .clutch-about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .clutch-about-rail {
    width: calc(100% - 36px);
  }

  .clutch-about-hero,
  .clutch-about-values,
  .clutch-about-next {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .clutch-about-hero-grid,
  .clutch-about-next-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .clutch-about-values-grid {
    grid-template-columns: 1fr;
  }

  .clutch-about-cta {
    width: 100% !important;
  }
}
