/* =========================================================
   ABC PROJECTS
   ABOUT PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
  padding: 92px 0 88px;

  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(198, 161, 91, 0.14),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f4f8fb 62%,
      #edf3f7 100%
    );

  border-bottom:
    1px solid var(--border);
}


.about-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(340px, 0.68fr);

  align-items: center;

  gap: 72px;
}


.about-hero-content {
  max-width: 780px;
}


.about-eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--gold);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.86rem;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.about-hero h1 {
  max-width: 830px;

  margin-bottom: 24px;

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.2rem
    );
}


.about-hero-text {
  max-width: 730px;

  margin-bottom: 32px;

  color: var(--muted);

  font-size: 1.15rem;
  line-height: 1.75;
}


/* HERO PANEL */

.about-hero-panel {
  padding: 30px;

  background:
    rgba(255, 255, 255, 0.94);

  border:
    1px solid
    rgba(23, 50, 77, 0.12);

  border-radius: 16px;

  box-shadow:
    0 18px 48px
    rgba(15, 35, 55, 0.10);
}


.about-hero-stat {
  padding: 18px 0;

  border-bottom:
    1px solid var(--border);
}


.about-hero-stat:last-child {
  border-bottom: 0;
}


.about-hero-stat strong {
  display: block;

  margin-bottom: 4px;

  color: var(--navy);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.98rem;
}


.about-hero-stat span {
  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.45;
}


/* =========================================================
   SHARED
   ========================================================= */

.about-heading {
  max-width: 820px;
}


.about-section-title {
  max-width: 510px;
}


.about-section-title h2 {
  margin-bottom: 0;
}


/* =========================================================
   WHO WE ARE
   ========================================================= */

.about-intro {
  background:
    var(--white);
}


.about-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(0, 1.22fr);

  align-items: start;

  gap: 72px;
}


.about-section-copy {
  max-width: 720px;
}


.about-section-copy p {
  color: var(--muted);

  font-size: 1.04rem;
  line-height: 1.72;
}


.about-section-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   OUR APPROACH
   ========================================================= */

.about-approach {
  background:
    #edf4f8;
}


.about-approach-track {
  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: center;

  gap: 14px;
}


.about-approach-step {
  min-height: 165px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 22px 18px;

  text-align: center;

  background:
    var(--white);

  border:
    1px solid
    rgba(23, 50, 77, 0.12);

  border-radius: 12px;

  box-shadow:
    0 5px 18px
    rgba(15, 35, 55, 0.05);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


.about-approach-step:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(198, 161, 91, 0.52);

  box-shadow:
    0 14px 28px
    rgba(15, 35, 55, 0.11);
}


.about-approach-step > span {
  display: block;

  margin-bottom: 16px;

  color: var(--gold);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.74rem;
  font-weight: 700;
}


.about-approach-step strong {
  display: block;

  margin-bottom: 7px;

  color: var(--navy);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.94rem;
}


.about-approach-step small {
  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.45;
}


.about-approach-arrow {
  color: var(--navy);

  font-size: 1.65rem;
  font-weight: 700;
}


/* =========================================================
   DIGITAL SCHOLARSHIP
   ========================================================= */

.about-digital {
  background:
    var(--deep-navy);

  color:
    #d9e2eb;
}


.about-digital-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(450px, 1.1fr);

  align-items: center;

  gap: 72px;
}


.about-digital-content h2 {
  color: var(--white);

  margin-bottom: 18px;
}


.about-digital-content p {
  max-width: 620px;

  margin-bottom: 24px;

  color: #bac8d5;

  font-size: 1.01rem;
}


.about-inline-link {
  color: var(--gold);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.88rem;
  font-weight: 700;
}


.about-inline-link:hover {
  color: var(--white);
}


.about-digital-list {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}


.about-digital-item {
  min-height: 115px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 18px 21px;

  color: var(--white);

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 11px;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.about-digital-item:hover {
  transform:
    translateY(-5px);

  background:
    rgba(255, 255, 255, 0.09);

  border-color:
    rgba(198, 161, 91, 0.52);

  box-shadow:
    0 12px 25px
    rgba(0, 0, 0, 0.12);
}


.about-platform-icon {
  flex: 0 0 69px;

  width: 69px;
  height: 69px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  overflow: hidden;
}


.about-platform-icon img {
  width: 69px;
  height: 69px;

  display: block;

  object-fit: cover;

  border-radius: 50%;
}


.about-digital-item strong {
  color: var(--white);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.95rem;
}


/* =========================================================
   OUR TEAM
   COMPACT DESIGN
   ========================================================= */

.about-team {
  background:
    #faf8f3;
}


.team-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}


.team-card {
  min-height: 118px;

  position: relative;

  padding:
    20px 20px 18px 62px;

  background:
    var(--white);

  border:
    1px solid var(--border);

  border-left:
    4px solid var(--navy);

  border-radius: 10px;

  box-shadow:
    0 4px 14px
    rgba(15, 35, 55, 0.045);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


.team-card:nth-child(2),
.team-card:nth-child(5) {
  border-left-color:
    var(--gold);
}


.team-card:nth-child(3),
.team-card:nth-child(6) {
  border-left-color:
    #688578;
}


.team-card:hover {
  transform:
    translateY(-4px);

  background:
    #fffdf8;

  border-color:
    rgba(198, 161, 91, 0.50);

  box-shadow:
    0 10px 22px
    rgba(15, 35, 55, 0.09);
}


.team-number {
  position: absolute;

  top: 21px;
  left: 20px;

  margin: 0;

  color: var(--gold);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.72rem;
  font-weight: 700;
}


.team-card h3 {
  margin:
    0 0 5px;

  color: var(--navy);

  font-size: 1rem;
  line-height: 1.35;
}


.team-role {
  display: block;

  margin-bottom: 5px;

  color: var(--navy);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.78rem;
  font-weight: 700;
}


.team-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.4;
}


/* =========================================================
   FREQUENTLY ASKED QUESTIONS
   ========================================================= */
.about-faq { background: linear-gradient(180deg,#fff 0%,#f7fafc 100%); }
.about-faq-heading { max-width:860px; margin-bottom:38px; }
.about-faq-heading h2,.about-faq-heading p { max-width:760px; }
.about-faq-heading p { color:var(--muted); }
.faq-shell { max-width:940px; margin:0 auto; }
.faq-list { display:grid; gap:11px; }
.faq-item { overflow:hidden; background:var(--white); border:1px solid var(--border); border-radius:10px; box-shadow:0 3px 12px rgba(15,35,55,.035); transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease; }
.faq-item:hover { transform:translateY(-1px); border-color:rgba(198,161,91,.48); box-shadow:0 7px 18px rgba(15,35,55,.065); }
.faq-item[open] { border-color:rgba(198,161,91,.55); box-shadow:0 8px 20px rgba(15,35,55,.07); }
.faq-item summary { position:relative; display:grid; grid-template-columns:42px minmax(0,1fr); align-items:center; gap:12px; min-height:64px; padding:15px 54px 15px 20px; color:var(--navy); font-family:"Montserrat",Arial,sans-serif; font-size:.9rem; font-weight:650; line-height:1.45; cursor:pointer; list-style:none; transition:background .2s ease; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary:hover,.faq-item[open] summary { background:#fffaf1; }
.faq-item summary::after { content:"+"; position:absolute; top:50%; right:20px; transform:translateY(-50%); color:var(--gold); font-size:1.28rem; font-weight:600; }
.faq-item[open] summary::after { content:"−"; }
.faq-number { color:var(--gold); font-size:.72rem; font-weight:700; letter-spacing:.04em; }
.faq-answer { padding:0 54px 19px 74px; background:#fffaf1; }
.faq-answer p { max-width:760px; margin:0; color:var(--muted); font-size:.89rem; line-height:1.68; }
.faq-resource-note { margin:24px 0 0; color:var(--muted); font-size:.88rem; text-align:center; }
.faq-resource-note a { margin-left:4px; color:var(--gold); font-family:"Montserrat",Arial,sans-serif; font-weight:700; text-decoration:none; }
.faq-resource-note a:hover { color:var(--navy); }

/* =========================================================
   LEGAL & POLICIES
   ========================================================= */

.about-legal {
  background:
    #f2f5f7;
}


.legal-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 17px;
}


.legal-card {
  min-height: 230px;

  padding: 24px 22px;

  background:
    var(--white);

  border:
    1px solid var(--border);

  border-left:
    4px solid var(--gold);

  border-radius:
    10px;

  box-shadow:
    0 4px 14px
    rgba(15, 35, 55, 0.04);
}


.legal-card > span {
  display: block;

  margin-bottom: 18px;

  color: var(--gold);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.72rem;
  font-weight: 700;
}


.legal-card h3 {
  margin-bottom: 11px;

  font-size: 1rem;
}


.legal-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.58;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.about-final-cta {
  padding: 80px 0;

  color: var(--white);

  background:
    radial-gradient(
      circle at 85% 22%,
      rgba(198, 161, 91, 0.18),
      transparent 27%
    ),
    var(--deep-navy);
}


.about-cta-inner {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


.about-cta-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--gold);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}


.about-cta-inner h2 {
  margin-bottom: 18px;

  color: var(--white);
}


.about-cta-inner > p {
  max-width: 720px;

  margin:
    0 auto
    30px;

  color: #bac8d5;

  font-size: 1.04rem;
}


.about-cta-buttons {
  justify-content: center;
}


.about-cta-primary {
  color: var(--deep-navy);

  background: var(--gold);
}


.about-cta-primary:hover {
  color: var(--deep-navy);

  background: #d4b574;
}


.about-cta-secondary {
  color: var(--white);

  background: transparent;

  border:
    1px solid
    rgba(255, 255, 255, 0.55);
}


.about-cta-secondary:hover {
  color: var(--deep-navy);

  background: var(--white);
}


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

@media (max-width: 1100px) {

  .about-hero-grid {
    gap: 45px;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.62fr);
  }


  .about-approach-track {
    grid-template-columns:
      repeat(4, 1fr);

    gap: 12px;
  }


  .about-approach-arrow {
    display: none;
  }


}


@media (max-width: 850px) {

  .about-hero {
    padding: 72px 0;
  }


  .about-hero-grid {
    grid-template-columns: 1fr;
  }


  .about-hero-panel {
    max-width: 650px;
  }


  .about-intro-grid,
  .about-digital-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }


  .about-approach-track {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .legal-grid {
    grid-template-columns: 1fr;
  }


  .legal-card {
    min-height: auto;
  }

}


@media (max-width: 640px) {

  .about-hero {
    padding: 58px 0;
  }


  .about-hero h1 {
    font-size:
      clamp(
        2.15rem,
        11vw,
        3rem
      );
  }


  .about-hero-text {
    font-size: 1.05rem;
  }


  .about-hero-panel {
    padding: 25px 22px;
  }


  .about-approach-track,
  .about-digital-list,
  .team-grid {
    grid-template-columns: 1fr;
  }


  .about-approach-step {
    min-height: auto;
  }


  .about-digital-item {
    min-height: 100px;
  }


  .about-platform-icon {
  flex: 0 0 69px;

  width: 69px;
  height: 69px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  overflow: hidden;
}


.about-platform-icon img {
  width: 69px;
  height: 69px;

  display: block;

  object-fit: cover;

  border-radius: 50%;
}


  .team-card {
    min-height: auto;
  }


  .about-final-cta {
    padding: 65px 0;
  }

}


/* FAQ MOBILE */
@media (max-width:640px) {
  .about-faq-heading { margin-bottom:28px; }
  .faq-list { gap:9px; }
  .faq-item summary { grid-template-columns:34px minmax(0,1fr); gap:8px; min-height:60px; padding:14px 45px 14px 15px; font-size:.84rem; }
  .faq-item summary::after { right:15px; }
  .faq-answer { padding:0 16px 17px 57px; }
  .faq-answer p { font-size:.84rem; line-height:1.62; }
}

/* =========================================================
   TEAM RESPONSIVE OVERRIDES
   ========================================================= */

@media (max-width: 850px) {

  .team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 640px) {

  .team-grid {
    grid-template-columns:
      1fr;
  }


  .team-card {
    min-height: auto;

    padding:
      18px 18px 18px 58px;
  }


  .team-number {
    top: 19px;
    left: 18px;
  }

}



/* =========================================================
   FINAL ORDER + TEAM VISUAL UPDATE
   ========================================================= */

/* WHO WE ARE: distinct cool neutral background below Digital Scholarship */
.about-who {
  background: #f2f6f8;
  border-top: 1px solid #dbe4ea;
  border-bottom: 1px solid #dbe4ea;
}

/* OUR TEAM: clearly different warm background */
.about-team {
  background: #fbf4e8 !important;
}

/* Compact team cards */
.about-team .team-card {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 18px 20px 16px 60px;
  background: #ffffff;
  border: 1px solid #dfe5e9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(15, 35, 55, 0.04);
}

/* Deep-orange hover bars enter from BOTH sides of each team card */
.about-team .team-card::before,
.about-team .team-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  background: #d85f12;
  transition: width 0.28s ease;
}

.about-team .team-card::before {
  left: 0;
}

.about-team .team-card::after {
  right: 0;
}

.about-team .team-card:hover::before,
.about-team .team-card:hover::after {
  width: 6px;
}

.about-team .team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 95, 18, 0.45);
  box-shadow: 0 10px 22px rgba(122, 62, 20, 0.10);
}

.about-team .team-number {
  top: 19px;
  left: 20px;
}

.about-team .team-card h3 {
  margin: 0 0 4px;
}

.about-team .team-role {
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .about-team .team-card {
    min-height: auto;
    padding: 17px 18px 16px 56px;
  }

  .about-team .team-number {
    top: 18px;
    left: 18px;
  }
}
