/* =========================================================
   ABOUT US (matches Alliances/Admin/Contact system)
   File: /assets/css/about.css
   ========================================================= */

:root{
  --ab-bg: #ffffff;
  --ab-soft: #f6f7fb;
  --ab-card: #ffffff;
  --ab-text: #0f172a;
  --ab-muted: #64748b;
  --ab-border: rgba(15, 23, 42, .10);
  --ab-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  --ab-radius: 18px;
  --ab-red: #ef4444;
}

/* Header overlap fix */
.ab.page-hero{
  background: var(--ab-bg);
  padding-top: calc(var(--site-header-offset, 110px) + 34px);
  padding-bottom: 18px;
}
.ab.page-section{
  background: var(--ab-bg);
  padding: 22px 0 70px;
}

/* Breadcrumb */
.breadcrumb{
  font-size: 13px;
  color: var(--ab-muted);
  font-weight: 700;
  display:flex;
  align-items:center;
  gap: 8px;
  margin: 6px 0 18px;
}
.breadcrumb a{ color: var(--ab-muted); text-decoration:none; }
.breadcrumb a:hover{ color: var(--ab-text); }
.crumb-sep{ opacity: .6; }

/* ---------- Global type rules (scoped) ----------
   Requirement: paragraph 14px + weight 400 throughout this page
------------------------------------------------- */
body.is-about p,
body.is-about .ab-p{
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ab-muted);
}

/* ---------- Cards ---------- */
.ab-card{
  background: var(--ab-card);
  border: 1px solid var(--ab-border);
  border-radius: var(--ab-radius);
  box-shadow: 0 14px 35px rgba(15,23,42,.07);
}

/* ---------- Hero grid ---------- */
.ab-heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}

.ab-card--copy{ padding: 18px; }
.ab-card--media{ padding: 14px; }

.ab-title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ab-text);
}

.ab-p{ margin: 0 0 12px;
font-size:14px;}
.ab-p:last-child{ margin-bottom: 0; }

.ab-muted{ color: var(--ab-muted); }

/* ---------- Media (video) ---------- */
.ab-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: var(--ab-soft);
}

.ab-iframe{
  width: 100%;
  height: 360px;
  display:block;
}

.ab-poster{
  position: relative;
  display:block;
  text-decoration:none;
  color: inherit;
}
.ab-poster img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display:block;
  filter: saturate(0.95);
}
.ab-play{
  position:absolute;
  inset:0;
  margin:auto;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.10);
  color: var(--ab-text);
  font-size: 18px;
}
.ab-posterText{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(15,23,42,.62);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Second section grid ---------- */
.ab-grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.ab-card--why{ padding: 18px; }
.ab-card--form{ padding: 18px; }

.ab-h2{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ab-text);
  letter-spacing: -0.01em;
}

/* Why list */
.ab-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ab-text);
}
.ab-list li{
  margin: 8px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ab-text);
}

/* Form */
.ab-formHead{
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.ab-form{ margin-top: 12px; }
.ab-row{ margin-bottom: 12px; }

.ab-label{
  display:block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ab-text);
}

.ab-input{
  width: 100%;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  padding: 0 12px;
  outline: none;
  background:#fff;
  font-size: 13px;
  font-weight: 400;
  color: var(--ab-text);
}
.ab-input:focus{
  border-color: rgba(239,68,68,.35);
  box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}

.ab-textarea{
  height: auto;
  padding: 10px 12px;
  resize: vertical;
}

.ab-submit{
  width: 120px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--ab-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.ab-submit:hover{ filter: brightness(.98); }

.ab-formNote{
  margin-top: 10px;
  font-size: 12px !important;
  font-weight: 400;
  color: var(--ab-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .ab-heroGrid{ grid-template-columns: 1fr; }
  .ab-grid2{ grid-template-columns: 1fr; }
  .ab-iframe,
  .ab-poster img{ height: 320px; }
}

@media (max-width: 560px){
  .ab-title{ font-size: 20px; }
  .ab-iframe,
  .ab-poster img{ height: 280px; }
  .ab-submit{ width: 100%; border-radius: 999px; }
}