/**
 * Общий паттерн страниц-списков: /clubs, /events, /rating
 * Менять здесь — выравниваются все три раздела.
 */

:root {
    --page-list-pad-top: calc(var(--header-height) + 24px);
    --page-list-pad-bottom: 64px;
    --page-list-head-gap: 20px;
    --page-title-margin-top: 24px;
    --page-list-title-size: clamp(26px, 3vw, 34px);
    --page-list-title-weight: 800;
    --page-list-title-lh: 1.2;
    --page-list-subtitle-size: 14px;
    --block-section-title-size: 20px;
    --block-section-title-weight: 700;
    --block-section-title-gap: 16px;
    --detail-title-size: clamp(32px, 4vw, 48px);
    --detail-title-weight: 800;
    --detail-title-lh: 1.05;
}

@media (max-width: 768px) {
    :root {
        --detail-title-size: 26px;
    }
}

.clubs-page,
.events-page,
.rating-page,
.info-page,
.info-hub,
.article-page {
    padding-top: var(--page-list-pad-top);
    padding-bottom: var(--page-list-pad-bottom);
}

.info-page {
    padding-bottom: 32px;
}

.info-page__card {
    padding: 28px 24px;
    background: var(--surface-blur-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.info-page__bullets {
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.info-page__bullets li + li {
    margin-top: 8px;
}

.clubs-page__head,
.events-page__head,
.rating-page__head {
    margin-bottom: var(--page-list-head-gap);
    position: relative;
    z-index: 20;
}

.clubs-page__title,
.events-page__title,
.rating-page__title {
    font-size: var(--page-list-title-size);
    font-weight: var(--page-list-title-weight);
    line-height: var(--page-list-title-lh);
    margin: var(--page-title-margin-top) 0 6px;
}

.clubs-page__subtitle,
.events-page__subtitle,
.rating-page__subtitle,
.page-list__subtitle,
.info-hub__subtitle {
    margin: 0;
    font-size: var(--page-list-subtitle-size);
    color: var(--text-secondary);
}

.page-list__head,
.info-hub__head {
    margin-bottom: var(--page-list-head-gap);
    position: relative;
    z-index: 20;
}

.page-list__title,
.info-hub__title {
    font-size: var(--page-list-title-size);
    font-weight: var(--page-list-title-weight);
    line-height: var(--page-list-title-lh);
    margin: var(--page-title-margin-top) 0 6px;
}

@media (max-width: 640px) {
    :root {
        --page-list-pad-top: calc(var(--header-height) + 16px);
        --page-list-head-gap: 16px;
        --page-list-title-size: 26px;
    }

    .clubs-page .breadcrumbs,
    .events-page .breadcrumbs,
    .rating-page__breadcrumbs,
    .info-hub .breadcrumbs {
        display: none;
    }

    .article-page .breadcrumbs {
        scroll-margin-top: calc(var(--header-height) + 8px);
    }
}
