/* ============================================
   FEATURES PAGE STYLES — Editorial
   ============================================ */

/* Split text descriptions */
.features-desc {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

/* --- Text-only feature grid --- */
.features-text-section {
  background: var(--color-cream);
  padding: var(--spacing-5xl) var(--spacing-lg);
}

.features-text-inner {
  max-width: 900px;
  margin: 0 auto;
}

.features-text-inner h2 {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.features-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl) var(--spacing-3xl);
}

.features-text-item h4 {
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-xs);
}

.features-text-item p {
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* --- CTA Section --- */
.features-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.features-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.features-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 32, 39, 0.7);
}

.features-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: var(--spacing-lg);
}

.features-cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.features-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-md);
  margin-bottom: var(--spacing-xl);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .features-text-section {
    padding: var(--spacing-3xl) var(--spacing-sm);
  }

  .features-text-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .features-cta {
    min-height: 50vh;
  }
}
