/**
 * Заглушки marketing-страниц без кастомного .hero.
 */

.site-page [class$="-hero"]:not(.hero) {
    max-width: var(--site-content-max);
    margin: 0 auto;
    padding: 3.75rem 0 5rem;
}

.site-page [class$="-hero__title"]:not(.hero__title) {
    margin: 0 0 1rem;
    font-size: 2.5rem;
    line-height: 3rem;
    color: var(--site-text-primary);
}

.site-page [class$="-hero__text"]:not(.hero__text) {
    margin: 0;
    max-width: 42rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--site-text-muted);
}

@media (max-width: 767px) {
    .site-page [class$="-hero"]:not(.hero) {
        padding-block: 2.5rem 3.5rem;
    }

    .site-page [class$="-hero__title"]:not(.hero__title) {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    .site-page [class$="-hero__text"]:not(.hero__text) {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
