﻿/* Главная страница */
.home-section h2 {
    font-weight: 600;
    color: #1b6ec2;
}

.home-section section {
    scroll-margin-top: 100px;
}

/* Отступы и визуальный баланс */
.home-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.home-section iframe,
.home-section img {
    border-radius: 20px;
}

/* Для планшетов и телефонов */
@media (max-width: 992px) {
    .home-section h2 {
        font-size: 1.7rem;
    }

    .home-section p {
        font-size: 1.2rem;
    }
    .home-section .btn {
        display: inline-block;
        width: auto;
        font-size: 1.1rem;
    }
}

.ratio-16x9 iframe {
    min-height: 230px; /* или 300px, как тебе нужно */
}


@media (max-width: 768px) {
    .home-section {
        text-align: center;
    }

        .home-section .row {
            flex-direction: column !important;
        }

        .home-section iframe,
        .home-section img {
            max-width: 100%;
            height: auto;
        }
}
