/* ===== Hero ===== */
.page-hero--coverall .page-hero-overlay {
  background: linear-gradient(90deg, rgba(5,15,35,0.72) 0%, rgba(5,15,35,0.42) 55%, rgba(5,15,35,0.1) 100%);
}

/* ===== FEATURES ===== */
.cv-features {
  background: #fff;
}
.cv-features .container {
  padding-top: 72px;
  padding-bottom: 56px;
  text-align: center;
}
.cv-features-sub {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== POINT ===== */
.cv-point {
  padding: 72px 0;
  background: #fff;
}
.cv-point--alt {
  background: var(--bg-alt);
}
.cv-point-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cv-point-row--rev .cv-point-img { order: 2; }
.cv-point-row--rev .cv-point-body { order: 1; }

.cv-point-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cv-point-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.cv-point-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 14px;
}
.cv-point-num span {
  font-size: 1.5rem;
  font-family: 'Caveat', cursive;
  color: var(--blue);
  margin-left: 4px;
  vertical-align: middle;
}
.cv-point-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 20px;
}
.cv-point-desc {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 2;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cv-point-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cv-point-row--rev .cv-point-img { order: 0; }
  .cv-point-row--rev .cv-point-body { order: 0; }
  .cv-point-img img { height: 240px; }
  .cv-features .container { padding-top: 56px; padding-bottom: 40px; }
  .cv-point { padding: 56px 0; }
}
@media (max-width: 600px) {
  .cv-point-img img { height: 200px; }
}
