/* ==========================================================================
   SSV College — Admissions page
   File: css/Admissions.css   (linked from Admissions.aspx through the "head" placeholder)

   Load order on Admissions.aspx: site-modern.css (tokens, buttons, cards, section heads)
   → css/AboutUs.css (shared .ssv-page-banner / .ssv-crumbs / .ssv-fact used by the hero
   and the "At a Glance" cards) → this file (process highlight + calendar timeline only).
   No design tokens are redeclared here — they come from site-modern.css's :root block.
   Everything is prefixed "ssv-" and lives under ".ssv-scope".
   Transition/hover speed for everything below is already handled globally by
   site-modern.css's ".ssv-scope *" / ".ssv-card:hover" reduced-motion rules.

   Contents
     1. Admission process highlight
     2. Academic calendar timeline
   ========================================================================== */


/* 1. ADMISSION PROCESS HIGHLIGHT -------------------------------------------- */
.ssv-admission-process {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.ssv-admission-process__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(145deg, #FF8A3D, #E8620A);
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 8px 18px rgba(11, 37, 69, .14);
}

.ssv-admission-process__body {
    flex: 1 1 auto;
    min-width: 0;
}

.ssv-admission-process__title {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
}

.ssv-admission-process__text {
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #334155;
}

@media (max-width: 575.98px) {
    .ssv-admission-process {
        gap: 1rem;
    }

    .ssv-admission-process__icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}


/* 2. ACADEMIC CALENDAR TIMELINE ---------------------------------------------- */
.ssv-admission-timeline {
    margin-top: .25rem;
}

.ssv-admission-event {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

/* Last item ("Commencement of Classes") gets a small accent highlight to read as the finish line */
.ssv-admission-event--final {
    border-color: var(--accent);
    background: var(--warm-bg);
}

.ssv-admission-event__index {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 2px solid var(--accent);
    color: var(--accent-ink);
    font: 700 1.05rem/1 var(--font-head);
}

.ssv-admission-event--final .ssv-admission-event__index {
    background: var(--btn-bg);
    border-color: var(--btn-bg);
    color: #fff;
}

.ssv-admission-event__body {
    min-width: 0;
}

.ssv-admission-event__title {
    margin-bottom: .5rem;
    font: 600 1rem/1.4 var(--font-body);
    letter-spacing: 0;
    color: var(--primary);
    overflow-wrap: anywhere;
}

.ssv-admission-event__date {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: #FFF1E3;
    color: var(--accent-deep);
    font: 600 .8rem/1 var(--font-body);
    white-space: nowrap;
}

    .ssv-admission-event__date .fa {
        font-size: .9em;
    }
