/* ── About: Founders Section ── */
.about-founders-section {
  background: var(--surface, #FFFFFF);
  border-top: 1px solid var(--line, #E4E8F3);
  border-bottom: 1px solid var(--line, #E4E8F3);
  padding: clamp(64px, 8vw, 96px) 0;
}
.about-founders-section .container {
  width: 100%; max-width: var(--maxw, 1240px);
  margin: 0 auto; padding: 0 var(--gutter, 24px); box-sizing: border-box;
}

/* Section heading */
.about-founders-section .ab-section-head {
  text-align: center; margin-bottom: var(--s-7, 40px);
}
.about-founders-section .ab-section-head h2 {
  font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--ink, #0A0F1E); margin: 0;
}

/* Outer 2-col grid */
.ab-founders-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5, 20px);
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Each founder card — blue, flex column ── */
.about-founders-section .ab-founder {
  display: flex;
  flex-direction: column;
  gap: var(--s-5, 20px);
  padding: 40px;
  background: var(--blu-primary, #1E50E5);
  border-radius: 16px;
  color: #fff;
}

/* Header row: small circle photo + name/role inline */
.about-founders-section .ab-founder-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--s-4, 16px);
}

/* Circular avatar — 64px */
.about-founders-section .ab-founder-photo-lg {
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.about-founders-section .ab-founder-photo-lg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
p.ab-founder-bio{
margin-bottom:0px !important;}

/* Placeholder initial when no photo uploaded */
.about-founders-section .ab-founder-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px; font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* Name + role stack */
.about-founders-section .ab-founder-author-info {
  display: flex; flex-direction: column;
}
.about-founders-section .ab-founder h3 {
  font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; color: #fff; margin: 0;
}
.about-founders-section .ab-founder-role {
  font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65); margin: 0;
}

/* Bio paragraphs — full width below the header row */
.about-founders-section .ab-founder-bios {
  display: flex; flex-direction: column; gap: 20px;
}
.about-founders-section .ab-founder-bio {
  font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; font-weight: 500;
  color: white; line-height: 1.6; margin: 0;
}

/* Responsive */
@media (max-width: 760px) {
  .ab-founders-horizontal { grid-template-columns: 1fr; }
  .about-founders-section .ab-founder{
  padding:20px;}
}
/* ── Arabic RTL font override ───────────────────────────────────── */
html[dir="rtl"] .about-founders-section .ab-section-head h2,
html[dir="rtl"] .about-founders-section .ab-founder h3,
html[dir="rtl"] .about-founders-section .ab-founder-role,
html[dir="rtl"] .about-founders-section .ab-founder-bio {
  font-family: 'Noto Sans Arabic', 'Segoe UI', sans-serif;
}