/* ============================================================
   Traveronto — about.css
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 45%, #C93D26 100%);
  color: #fff;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  font-weight: 800;
  line-height: 1.15;
}
.about-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  max-width: 580px;
  margin: 16px auto 0;
  position: relative;
}

/* ── About text block (CKEditor content) ───────────────────── */
.about-text-content p,
.about-raw-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.about-text-content h2,
.about-text-content h3,
.about-raw-content h2,
.about-raw-content h3 {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.about-raw-content { padding: 56px 0; }

/* Tighten global .section padding on about page only */
.about-blocks-content .section {
  padding-top: 56px;
  padding-bottom: 56px;
}
.about-blocks-content .section-head {
  margin-bottom: 36px;
}

/* ── How It Works section ───────────────────────────────────── */
.hiw-section {
  padding: 64px 0;
  background: var(--light);
}
.hiw-head {
  text-align: center;
  margin-bottom: 48px;
}
.hiw-head h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 14px;
}
.hiw-divider {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.hiw-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hiw-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(231,78,53,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hiw-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.hiw-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hiw-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}
.hiw-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Why / List Featured cards (keep consistent) ───────────── */
.why-card {
  padding: 32px;
  height: 100%;
}
.why-card .ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(231,78,53,0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p  { color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-hero        { padding: 110px 0 60px; }
  .hiw-section       { padding: 48px 0; }
  .hiw-grid          { grid-template-columns: 1fr; gap: 16px; }
  .about-blocks-content .section { padding-top: 40px; padding-bottom: 40px; }
}
