/*
    Layout glue specific to Areas/Anonymous/Views/ProspectiveStudent/Index.cshtml -- just the
    2-column grid for its two side-by-side panels. Everything reusable (including .instruction-page)
    lives in instruction-panel.css; CurrentStudent/Alumni use that file directly without this one,
    since they each show a single panel, not two side by side.
*/

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .instruction-grid {
        grid-template-columns: 1fr;
    }
}
