/*
    Layout glue specific to the Student landing page (Areas/Student/Views/Home/Index.cshtml).
    Component styling itself lives in site-header.css / audience-card.css so it can be reused
    elsewhere; this file only arranges those components on this one page.
*/

.landing-page {
    text-align: left;
}

.quick-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.landing-secondary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.6rem;
}

.landing-secondary-row span {
    font-size: 0.92rem;
    color: var(--bs-secondary-color, #6c757d);
}

.landing-secondary-row a {
    font-weight: 600;
    text-decoration: none;
}
