/* ============================================
   BREAKPOINT MIXINS
   ============================================

   Matches the Tailwind screen config from Josh's
   previous build system. All 12 breakpoints available.

   Usage:
     .component {
       padding: 2rem;

       @mixin sm {
         padding: 1.5rem;
       }

       @mixin xs {
         padding: 1rem;
       }
     }

   Compiles to:
     .component { padding: 2rem; }
     @media (max-width: 991px) { .component { padding: 1.5rem; } }
     @media (max-width: 767px) { .component { padding: 1rem; } }

   ============================================ */

/* --- Max-width (mobile-first overrides) --- */

/* --- Min-width (desktop-first overrides) --- */

/* --- Range (min + max) --- */

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* --- About Intro --- */
.section_about-intro {
  padding-top: 5rem;
  padding-bottom: 2.75rem;
}

/* --- Split Sections --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
.about-split {
    grid-template-columns: 1fr;
    gap: 2rem
}

    .about-split.is-reversed .about-split_image {
      order: -1;
    } }

/* Typography handled by .text-formatting .text-margins-sm .text-colors on .about-split_text in HTML */

.about-split_image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Background handled by .bg-light utility in HTML */


/* --- Leadership --- */
.section_leadership {
  background-color: var(--color-dark-navy);
  text-align: center;
}

.leadership_grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

@media (max-width: 767px) {

.leadership_grid {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem
} }

.leadership_card {
  text-align: center;
}

.leadership_photo {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.leadership_name {
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--text-h4);
}


/* --- Certifications --- */
.section_certifications {
  text-align: center;
}

.certifications_intro {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}
/* Typography handled by .text-formatting .text-margins-sm .text-colors on .certifications_intro in HTML */

.about-certifications_grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.cert-card {
  text-align: center;
  max-width: 10rem;
}

.cert-card img {
    width: 7.5rem;
    height: auto;
    margin: 0 auto 0.75rem;
  }

.cert-card_title {
  font-family: var(--font-body);
  font-size: var(--text-h5);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
}

/* CTA section styles now in global.css */
