/* =========================
   SUG PAGE
========================== */
body{margin:0;background:#063d20;color:var(--ink);font-family:"DM Sans",system-ui,sans-serif;line-height:1.65}
.sug-hero {
    padding: 140px 0 100px;
    background: var(--green);
    color: white;
}

.sug-hero .eyebrow {
    color: rgba(255, 255, 255, 0.65);
}

.sug-hero h1 {
    max-width: 850px;
    margin: 20px 0;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}
.page-hero {
  background:var(--ink);
  color:#fff;
  padding:200px 0;
}
.page-hero h1 {
  font:500 clamp(3rem,7vw,5.8rem)/.95 Georgia,serif;
  margin:12px 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}

.page-hero p {
  max-width:680px;
  color:#c7c3bb;
  font-size:1.05rem;
}
.sug-hero-text {
    max-width: 500px;
    margin: 30px 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.session-badge {
    display: inline-block;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* =========================
   INTRODUCTION
========================== */

.sug-introduction {
    padding: 100px 0;
    background:#00c914;
    margin-top:-80px;
}

.sug-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.sug-intro-grid h2 {
    margin-top: 20px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}

.sug-intro-grid > p {
    max-width: 550px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}


/* =========================
   ARM SECTIONS
========================== */

.sug-arm {
    padding: 100px 0;
    background: #47ab00;
}

.sug-arm-alt {
    background: #f5f6f1;
}
.sug-arm-arm-alt {
    background: #05ad59;
}
.arm-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.arm-number {
    display: block;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
}

.arm-heading h2 {
    margin: 10px 0 0;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.arm-heading > p {
    margin: 0;
    max-width: 500px;
    color: #666;
    line-height: 1.7;
}


/* =========================
   PEOPLE GRID
========================== */

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =========================
   PERSON CARD
========================== */

.person-card {
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.09);
}

.person-image {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    overflow: hidden;
    background: #e8ebe5;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.person-card:hover .person-image img {
    transform: scale(1.04);
}

.person-details {
    padding: 22px 22px 25px;
}

.person-details span {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.person-details h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    line-height: 1.2;
}

.person-details p {
    margin: 0;
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
}


/* =========================
   FEATURED PERSON
========================== */

.featured-person {
    grid-column: span 2;
}

.featured-person .person-image {
    aspect-ratio: 16 / 9;
}

.featured-person .person-details h3 {
    font-size: 1.7rem;
}


/* =========================
   TABLET
========================== */

@media (max-width: 900px) {

    .sug-intro-grid,
    .arm-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .featured-person {
        grid-column: span 2;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 600px) {

    .sug-hero {
        padding: 100px 0 75px;
    }

    .sug-hero h1 {
        font-size: 3.3rem;
    }

    .sug-introduction,
    .sug-arm {
        padding: 70px 0;
    }

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

    .featured-person {
        grid-column: span 1;
    }

    .featured-person .person-image {
        aspect-ratio: 4 / 4.7;
    }

    .arm-heading h2 {
        font-size: 2.8rem;
    }

}