/**
 * GHVM Admission page
 */
.ghvm-admission {
    --ghvm-ad-teal: var(--color-primary, #1ab69d);
    --ghvm-ad-teal-deep: #0f8f7a;
    --ghvm-ad-coral: var(--color-secondary, #ee4a62);
    --ghvm-ad-ink: var(--color-heading, #181818);
    --ghvm-ad-muted: #6b7385;
    --ghvm-ad-stage: #eef7f5;
    --ghvm-ad-ease: cubic-bezier(0.22, 1, 0.36, 1);
    background:
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(26, 182, 157, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 35% at 100% 8%, rgba(238, 74, 98, 0.05), transparent 50%),
        #fafcfb;
    padding: 48px 0 80px !important;
    font-family: var(--font-primary);
}

.ghvm-admission .container {
    max-width: 1180px;
}

.ghvm-admission-head {
    text-align: center;
    margin-bottom: 28px;
}

.ghvm-admission-head .title {
    margin: 0 0 10px;
    font-family: var(--font-secondary);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--ghvm-ad-ink);
    line-height: 1.15;
}

.ghvm-admission-head .lead {
    margin: 0 auto;
    max-width: 560px;
    color: var(--ghvm-ad-muted);
    font-size: 15.5px;
    line-height: 1.6;
}

.ghvm-admission-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 21 / 9;
    background: linear-gradient(135deg, #0f8f7a, #1ab69d 55%, #147a6a);
    box-shadow: 0 20px 48px rgba(20, 32, 43, 0.12);
}

.ghvm-admission-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.ghvm-admission-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 24, 32, 0.55) 100%);
    pointer-events: none;
}

.ghvm-admission-hero-caption {
    position: absolute;
    left: 24px;
    bottom: 20px;
    right: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ghvm-admission-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 991px) {
    .ghvm-admission-layout {
        grid-template-columns: 1fr;
    }

    .ghvm-admission-hero {
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }
}

.ghvm-admission-panel {
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 24px;
    padding: 28px 30px 32px;
    box-shadow: 0 16px 40px rgba(20, 32, 43, 0.06);
}

@media (max-width: 575px) {
    .ghvm-admission-panel {
        padding: 20px 16px 24px;
        border-radius: 18px;
    }
}

.ghvm-admission-panel h2 {
    margin: 0 0 8px;
    font-family: var(--font-secondary);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--ghvm-ad-ink);
}

.ghvm-admission-panel .intro {
    margin: 0 0 22px;
    color: var(--ghvm-ad-muted);
    font-size: 15px;
    line-height: 1.55;
}

.ghvm-admission-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ghvm-admission-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    background: linear-gradient(165deg, #f8fbfa, #fff);
    border: 1px solid rgba(20, 32, 43, 0.06);
}

.ghvm-admission-steps .num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ghvm-ad-teal), var(--ghvm-ad-teal-deep));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.ghvm-admission-steps p {
    margin: 0;
    color: #3d4656;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 500;
}

.ghvm-admission-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #9a3412;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

.ghvm-admission-note i {
    margin-right: 6px;
    vertical-align: -2px;
}

/* Sidebar */
.ghvm-admission-aside {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 14px;
}

.ghvm-admission-card {
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 14px 36px rgba(20, 32, 43, 0.06);
}

.ghvm-admission-card h3 {
    margin: 0 0 6px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 800;
    color: var(--ghvm-ad-ink);
}

.ghvm-admission-card .sub {
    margin: 0 0 16px;
    color: var(--ghvm-ad-muted);
    font-size: 13.5px;
    line-height: 1.45;
}

.ghvm-admission-actions {
    display: grid;
    gap: 10px;
}

.ghvm-admission-actions .edu-btn {
    width: 100%;
    justify-content: center;
    height: 48px !important;
    line-height: 46px !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    text-align: center;
}

.ghvm-admission-quick {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.ghvm-admission-quick a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    background: var(--ghvm-ad-stage);
    border: 1px solid rgba(26, 182, 157, 0.12);
    text-decoration: none !important;
    color: var(--ghvm-ad-ink);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.ghvm-admission-quick a:hover {
    border-color: rgba(26, 182, 157, 0.4);
    background: #e4f5f1;
}

.ghvm-admission-quick .ico {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ghvm-ad-teal-deep);
    font-size: 18px;
    flex-shrink: 0;
}

.ghvm-admission-quick .lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ghvm-ad-muted);
}

.ghvm-admission-quick .val {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ghvm-ad-ink);
    line-height: 1.3;
}

.ghvm-admission-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.ghvm-admission-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8faf9;
    border: 1px solid rgba(20, 32, 43, 0.06);
    color: var(--ghvm-ad-ink);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none !important;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.ghvm-admission-links a:hover {
    border-color: rgba(26, 182, 157, 0.35);
    color: var(--ghvm-ad-teal-deep);
}

.ghvm-admission-links i {
    color: var(--ghvm-ad-teal);
    font-size: 18px;
}
