/**
 * Services — Bold typographic rows on dark background
 */

/* ==================== DARK OVERRIDES ==================== */

.section-dark .section-label {
  color: var(--color-accent);
  font-size: var(--font-size-sm);
  letter-spacing: 0.2em;
}

.section-dark .section-heading {
  color: var(--color-bg-white);
}

.section-dark .section-desc {
  color: var(--color-text-light);
}

.section-desc--services {
  margin-top: var(--space-5);
  max-width: 700px;
}

/* ==================== SERVICE ROWS ==================== */

.services-list {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.service-row__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: var(--space-1);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.service-row__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-row__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-3xl);
  color: var(--color-bg-white);
  line-height: 1.2;
}

.service-row__desc {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ==================== RESPONSIVE ==================== */

@media (min-width: 1024px) {
  .service-row {
    grid-template-columns: auto 1fr 1.5fr;
    padding: var(--space-10) 0;
    align-items: center;
  }

  .service-row__content {
    display: contents;
  }
}
