/* ===========================================================
   ADMISSIONS PAGE — PREMIUM UPGRADE (Trinity College)
=========================================================== */

.adm-section {
    background: white;
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}

.adm-banner {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 26px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Headings */
.adm-heading {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Subhead */
.adm-sub {
    margin-top: 26px;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Card blocks */
.adm-block {
    margin-top: 14px;
    padding: 20px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background-image: linear-gradient(
        135deg,
        rgba(45,212,191,0.14),
        rgba(0,207,232,0.08)
    );
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: all .35s ease;
}
.adm-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* Fancy bullets */
.adm-list li,
.adm-olist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f3f3d;
}

/* Bullet style */
.adm-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dd4bf, #00cfe8);
    box-shadow: 0 0 8px rgba(0,207,232,0.45);
}

/* Number list style */
.adm-olist {
    counter-reset: adm-counter;
}
.adm-olist li {
    list-style: none;
}
.adm-olist li::before {
    counter-increment: adm-counter;
    content: counter(adm-counter);
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
    background: linear-gradient(135deg, #00cfe8, #2dd4bf);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0,207,232,0.45);
}

/* Hover animations */
.adm-list li:hover,
.adm-olist li:hover {
    transform: translateX(4px);
    transition: 0.25s;
    color: #075e54;
}
