div.region.region-content {
    padding: 0 !important;
}

.main-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.main-page-card {
    width: 100%;
    min-height: 720px;
    background-image: url('/themes/clipper/main_background4.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* Лёгкое затемнение фотографии */
.main-page-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .10);
    z-index: 1;
}

/* Стеклянная карточка */
.main-page-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 35px auto;
    padding: 32px 30px;
    background: rgba(255, 255, 255, .60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.main-page-content:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .18);
}

/* Заголовок */
.alter-main-page-title {
    max-width: 650px;
    margin: 0 auto 14px;
    text-align: center;
    font-family: "Plus Jakarta", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #1d2733;
}

/* Контакты */
.alter-main-page-contact {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #394b59;
    margin-bottom: 24px;
}

/* Кнопка */
.alter-analytics-button {
    display: block;
    width: 230px;
    margin: 0 auto;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    border-radius: 12px;
    background: linear-gradient(
        180deg,
        #2f7d4b 0%,
        #205c37 100%
    );
    box-shadow:
        0 6px 20px rgba(32, 92, 55, .35);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.alter-analytics-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(32, 92, 55, .45);
}

.alter-analytics-button:active {
    transform: translateY(1px);
}

/* Планшеты */
@media (max-width: 993px) {
    .main-page-card {
        background-image: url('/themes/clipper/main_background2.jpg');
    }
    .main-page-content {
        margin: 20px;
        padding: 28px 22px;
    }
}

/* Небольшие ноутбуки и планшеты */
@media (max-width: 768px) {
    .alter-main-page-title {
        font-size: 30px;
    }
    .alter-main-page-contact {
        font-size: 17px;
    }
    .alter-analytics-button {
        width: 220px;
    }
}

/* Телефоны */
@media (max-width: 560px) {
    .main-page-content {
        margin: 10px;
        padding: 22px 15px;
    }
    .alter-main-page-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .alter-main-page-contact {
        font-size: 16px;
        line-height: 1.5;
    }
    .alter-analytics-button {
        width: 180px;
        font-size: 15px;
        padding: 11px 0;
    }
}
