/* Students Page */

.students-page__intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.students-page__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.students-page__stat-card {
    padding: 1.5rem 1rem;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 40, 90, 0.08);
}

.students-page__stat-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #0a1e3d;
    font-size: 1.75rem;
    font-weight: 800;
}

.students-page__stat-card span {
    color: #8a94a6;
    font-size: 0.8125rem;
}

.students-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.students-page__testimonial {
    margin: 0;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 40, 90, 0.08);
}

.students-page__quote {
    margin: 0 0 1.5rem;
    color: #4a5568;
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.7;
}

.students-page__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.students-page__author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.students-page__author cite {
    display: block;
    color: #0a1e3d;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 700;
}

.students-page__author span {
    display: block;
    color: #8a94a6;
    font-size: 0.8125rem;
}

.students-page__cta {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 992px) {
    .students-page__stats,
    .students-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .students-page__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
