/* --- Admission Section --- */
.admission-section {
    width: 100%;
}

.student-top .student-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--primary-purple);
}

.tabs-wrapper .card-body {
    padding: 12px 16px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    margin-top: 20px;
}

.two-column-grid .card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}
