
.aw-commit {
  background-color: #ffffff;
  padding-top: var(--section-pad-y, 3.75rem);
  padding-bottom: var(--section-pad-y, 3.75rem);
}

.cm-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ── Bento grid ── */
.cm-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.95fr;
  column-gap: 28px;
  row-gap: 28px;
  grid-template-areas:
    "eyebrow eyebrow eyebrow"
    "photoA  text    photoC"
    "photoA  mission vision";
}

/* ── Eyebrow row ── */
.cm-eyebrow-row {
  grid-area: eyebrow;
  align-self: start;
}

.cm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.cm-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--blue-600);
}

.cm-icon-box {
  display: none !important;
}

.cm-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue-600);
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0;
}

@media (min-width: 768px) {
  .cm-heading {
    font-size: 34px;
  }
}

/* ── Photo A (left tall) ── */
.cm-photo-a {
  grid-area: photoA;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
}

.cm-photo-a picture,
.cm-photo-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cm-read-more-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 20px 28px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.cm-read-more-wrapper::before,
.cm-read-more-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 24px;
}

.cm-read-more-wrapper::before {
  left: -24px;
  background: radial-gradient(circle at 0 0, transparent 24px, #ffffff 24px);
}

.cm-read-more-wrapper::after {
  right: -24px;
  background: radial-gradient(circle at 100% 0, transparent 24px, #ffffff 24px);
}


/* ── Core values — solid navy card ── */
.cm-inline-values-bg {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--blue-500-glass);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cm-inline-values-bg:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(16, 59, 104, 0.35);
}

/* Remove the old photo-overlay layers */
.cm-inline-values-bg::before,
.cm-inline-values-bg::after {
  display: none;
}

.cm-inline-values {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1.25rem;
  flex: 1;
  justify-content: space-evenly;
}

.cm-inline-value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgb(210 200 191 / 5%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cm-inline-value:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.cm-inline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red-500);
  border-radius: 8px;
  color: #fff;
  flex-shrink: 0;
  border: none;
}

.cm-inline-label {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* ── Text + stats ── */
.cm-text-col {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.cm-lede {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

/* ── Photo C (height matches core values card) ── */
.cm-photo-c {
  grid-area: photoC;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  align-self: stretch;
}

.cm-photo-c img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Stats overlay at the bottom of photo C */
.cm-stats-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
}

.cm-stat-card {
  padding: 18px 16px;
  border-radius: 12px;
  background: rgb(255 255 255 / 54%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cm-stat-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.cm-stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--red-500);
  margin-bottom: 6px;
}

.cm-stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  /* color: rgba(255, 255, 255, 0.85); */
}

/* ── Feature cards (Mission & Vision) — solid navy ── */
.cm-feature-card {
  background: var(--blue-500-glass);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cm-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(16, 59, 104, 0.35);
}

/* Remove old photo-overlay layers from feature cards */
.cm-feature-card::before,
.cm-feature-card::after {
  display: none;
}

/* No per-card background images needed anymore */
.cm-mission::before,
.cm-mission::after,
.cm-vision::before,
.cm-vision::after {
  display: none;
}

.cm-mission { grid-area: mission; }
.cm-vision  { grid-area: vision; }

.cm-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-500);
  border-radius: 10px;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cm-feature-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cm-feature-title {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 2;
}

.cm-feature-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #E3E9F0;
  max-width: 320px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.cm-feature-text strong,
.cm-feature-text b {
  color: #ffffff;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1100px) and (min-width: 701px) {
  .cm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "eyebrow eyebrow"
      "photoA  text"
      "photoA  mission"
      "vision  photoC";
  }
  .cm-photo-a { min-height: 420px; }
  .cm-photo-c { align-self: stretch; }
  .cm-lede    { max-width: none; }
  .cm-feature-card { padding: 28px 22px; justify-content: center; }
}

@media (max-width: 700px) {
  .cm-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "photoA"
      "text"
      "mission"
      "vision"
      "photoC";
  }
  .cm-photo-a { min-height: 300px; }
  .cm-photo-c { min-height: 360px; }
  .cm-lede    { max-width: none; }
  .cm-wrap    { padding: 0 16px; }
  .cm-stats-row { grid-template-columns: 1fr 1fr; }
  .cm-feature-card { padding: 26px 18px; }
}

/* ── Read-more button — commitment-scoped overrides ── */
.cm-read-more-wrapper .btn-primary {
  background: #e8050c;
}

.cm-read-more-wrapper .btn-primary::after {
  background: var(--blue-500-glass);
}

.cm-read-more-wrapper .btn-primary::before {
  background: var(--blue-500-glass);
}

.cm-read-more-wrapper .btn-primary .btn-circle {
  background: var(--blue-500-glass);
}

.cm-read-more-wrapper .btn-primary:hover .btn-circle {
  background: var(--red-500);
}

.cm-read-more-wrapper .btn-primary:hover {
  box-shadow: 0 6px 14px rgba(20, 72, 127, 0.22);
}
