﻿/*
   Talkiva - css\base\utilities.css
   Utilities - container, sections, section-head, eyebrow, lead
   Extracted verbatim from the original style.css. No rules altered.
*/

/* ---------- 3. Utilities ---------- */
.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section-light .h2,
.section-light .h3 { color: var(--text-on-light); }
.section-light p.lead { color: rgba(42, 1, 5, 0.72); }

.section-head {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center;
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}
.eyebrow.plain::after { display: none; }
.eyebrow.eyebrow-light { color: #c21f45; }

.h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}
.h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 16px;
}
.section-light .lead { color: rgba(42, 1, 5, 0.72); }

.accent {
  background: linear-gradient(92deg, var(--primary) 10%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary-soft);
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.link-arrow:hover { gap: 14px; color: var(--primary); }
.link-arrow i { transition: transform 0.3s var(--ease-out); }
.link-arrow:hover i { transform: translateX(3px); }

