/* -------------------------------------------------------------------------
   ALSINC 2026 page module.

   Page-specific styling for /alsinc, loaded only on that page (linked from
   alsinc.blade.php). It leans on the site's own tokens and components; what
   lives here is the handful of patterns the ALSINC page needs that the shared
   stylesheet does not already provide - the stats band, the country pills, the
   journey timeline, and the participant quote cards.

   Brand tokens reused: navy #002366, red #C40000, teal #00B1A5.
   ------------------------------------------------------------------------- */

/* Section rhythm - a little more air than the default band. */
.alsinc-section { padding: 70px 0; }
.alsinc-section .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #00B1A5;
    margin-bottom: .6rem;
}
.alsinc-section.on-dark .section-eyebrow { color: #5FCCC5; }
.alsinc-lead { max-width: 760px; }

/* ---- Stats band ------------------------------------------------------- */
.alsinc-stats {
    background: #002366;
    background-image: linear-gradient(135deg, #002366 0%, #001a4d 100%);
    padding: 48px 0;
}
.alsinc-stat { text-align: center; padding: 12px 8px; }
.alsinc-stat .num {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}
.alsinc-stat .num span { color: #5FCCC5; }
.alsinc-stat .lbl {
    margin: .5rem 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
}
.alsinc-stat + .alsinc-stat { position: relative; }
@media (min-width: 768px) {
    .alsinc-stat + .alsinc-stat::before {
        content: "";
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        height: 46px; width: 1px;
        background: rgba(255, 255, 255, .18);
    }
}

/* ---- Country pills ---------------------------------------------------- */
.alsinc-countries {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.4rem;
}
.alsinc-country {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .95rem;
    border: 1px solid rgba(0, 35, 102, .16);
    border-radius: 999px;
    background: #ffffff;
    font-weight: 600;
    font-size: .92rem;
    color: #002366;
    box-shadow: 0 2px 10px rgba(0, 35, 102, .05);
}
.alsinc-country::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #C40000;
}

/* ---- Journey timeline ------------------------------------------------- */
.alsinc-journey { position: relative; }
.alsinc-milestone {
    background: #ffffff;
    border: 1px solid rgba(0, 35, 102, .1);
    border-top: 4px solid #C40000;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 35, 102, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.alsinc-milestone:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 35, 102, .12);
}
.alsinc-milestone .yr {
    display: inline-block;
    font-weight: 800;
    color: #C40000;
    font-size: 1.05rem;
    letter-spacing: .02em;
    margin-bottom: .5rem;
}
.alsinc-milestone .mtitle {
    font-weight: 700;
    color: #002366;
    text-transform: uppercase;
    font-size: 1.05rem;
    margin-bottom: .6rem;
}
.alsinc-milestone p { margin: 0; color: #333; }

/* ---- Participant quote cards ------------------------------------------ */
.alsinc-quote {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 35, 102, .1);
    border-radius: 14px;
    padding: 30px 28px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 35, 102, .06);
}
/* .q-mark, not .mark: Bootstrap styles a bare .mark with a cream highlight
   background and padding, which bled into the quote card. */
.alsinc-quote .q-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    line-height: .6;
    color: #00B1A5;
    opacity: .35;
    margin-bottom: .3rem;
}
.alsinc-quote .body { color: #333; margin-bottom: 1rem; }
.alsinc-quote .pull {
    font-weight: 700;
    color: #002366;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 1.1rem;
}
.alsinc-quote .who { margin-top: auto; }
.alsinc-quote .who .name { font-weight: 700; color: #002366; margin: 0; }
.alsinc-quote .who .inst { color: #666; font-size: .9rem; margin: .15rem 0 0; }
.alsinc-quote .badge-place {
    display: inline-block;
    margin-top: .7rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(196, 0, 0, .08);
    color: #C40000;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ---- Gallery ---------------------------------------------------------- */
.alsinc-gallery .g-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.alsinc-gallery .g-item::after {
    content: attr(data-caption);
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 16px 12px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity .25s ease;
}
.alsinc-gallery .g-item:hover::after { opacity: 1; }
.alsinc-gallery .g-tall { min-height: 460px; }
@media (max-width: 767px) {
    .alsinc-gallery .g-tall { min-height: 240px; }
}

/* ---- Past-case / field cards small tweaks ----------------------------- */
.alsinc-field-card { height: 100%; }

/* Clearance below the registration form. The site-wide admission band pulls
   itself up with margin-top:-120px to overlap the section above it; without
   this spacer that overlap lands on top of the Submit button. */
.alsinc-reg-tail { height: 120px; }
@media (max-width: 767px) { .alsinc-reg-tail { height: 90px; } }
