﻿/* Промо-баннер */
.promo-banner {
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 48px;
    width: 100%;
}

.promo-banner__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

.promo-banner__buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.promo-banner__btn {
    border-radius: 16px;
    padding: 8px 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'OpenRunde-Medium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.promo-banner__btn--primary {
    background: var(--background-color-blue-100, #26445c);
    color: var(--text-color-black-10, #f4f4f4);
}

    .promo-banner__btn--primary:hover {
        background: var(--background-color-blue-80, #51697d);
    }

.promo-banner__btn--secondary {
    background: var(--background-color-blue-40, #d4dade);
    color: var(--text-color-black-60, #77797d);
}

    .promo-banner__btn--secondary:hover {
        background: var(--background-color-blue-50, #c9d0d6);
        color: var(--text-color-black-80, #494c51);
    }

.promo-banner__btn img {
    width: 20px;
    height: 20px;
}

/* Адаптив */
@media (max-width: 768px) {
    .promo-banner__buttons {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }

    .promo-banner__btn {
        padding: 6px 12px;
        font-size: 12px;
        height: 32px;
    }

        .promo-banner__btn img {
            width: 14px;
            height: 14px;
        }
}

@media (max-width: 550px) {
    .promo-banner__buttons {
        flex-direction: column;
        align-items: stretch;
        bottom: 12px;
        right: 12px;
        left: 12px;
    }

    .promo-banner__btn {
        width: 100%;
        white-space: normal;
    }
}

/* wwwroot/styles/promo-banner.css */

/* ============================================
   ПРОМО-БАННЕР (нижний)
   ============================================ */

.promo-banner-bottom {
    border-radius: 24px;
    width: 100%;
    height: 362px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 40px 0;
    position: relative;
}

.promo-banner-bottom__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Адаптив */
@media (max-width: 1200px) {
    .promo-banner-bottom {
        height: 300px;
        margin: 30px 0;
    }
}

@media (max-width: 768px) {
    .promo-banner-bottom {
        height: 200px;
        margin: 20px 0;
        border-radius: 16px;
    }

    .promo-banner-bottom__image {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .promo-banner-bottom {
        height: 150px;
        margin: 15px 0;
        border-radius: 12px;
    }

    .promo-banner-bottom__image {
        border-radius: 12px;
    }
}
