

/* Start:/local/templates/main_redesing/components/bitrix/news/actions/bitrix/news.list/.default/style.css?17804087297653*/
/* Promotions page */
body.akcia main > .container-fluid.container-md {
    padding-bottom: 0;
}

body.akcia main > .container-fluid.container-md h1.text-center {
    display: none;
}

#actions {
    margin-top: 0;
}

.promotions-page {
    --promotions-blue: #004B93;
    --promotions-text: #1F2733;
    --promotions-muted: #667085;
    --promotions-border: #D9DDE4;
    --promotions-shadow: 0 14px 36px rgba(20, 35, 55, 0.12);
    margin-top: 28px;
    display: block;
    color: var(--promotions-text);
    font-family: "Inter", Arial, sans-serif;
}

.promotions-hero {
    max-width: 920px;
    padding: 8px 0 28px;
}

.promotions-hero h1 {
    margin: 0 0 18px;
    color: #151A22;
    font-family: "Source Serif 4 48pt", serif;
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
}

.promotions-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--promotions-muted);
    font-size: 17px;
    line-height: 1.65;
}

.promotions-tabs {
    display: flex;
    gap: 12px;
    margin: 0 0 30px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.promotions-tabs__item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid var(--promotions-border);
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--promotions-text);
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.promotions-tabs__item:hover {
    border-color: var(--promotions-blue);
    background: #F4F8FC;
    color: var(--promotions-blue);
}

.promotions-tabs__item.is-active {
    border-color: var(--promotions-blue);
    background: var(--promotions-blue);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 75, 147, 0.18);
}

.promotions-featured {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.promotions-featured + .promotions-featured {
    margin-top: 22px;
}

.promotions-featured-card {
    position: relative;
    min-height: 278px;
    overflow: hidden;
    border-radius: 10px;
    background: #111822;
    color: #FFFFFF;
    box-shadow: var(--promotions-shadow);
    isolation: isolate;
    text-decoration: none;
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease;
}

.promotions-featured-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .45s ease;
    z-index: -2;
}

.promotions-featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 17, 25, 0.02) 18%, rgba(11, 17, 25, 0.5) 62%, rgba(11, 17, 25, 0.88) 100%);
    z-index: -1;
}

.promotions-featured-card:hover {
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(20, 35, 55, 0.18);
}

.promotions-featured-card:hover img {
    transform: scale(1.045);
}

.promotions-featured-card__content {
    position: absolute;
    left: 24px;
    right: 58px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promotions-featured-card__title {
    font-family: "Source Serif 4 48pt", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.16;
}

.promotions-featured-card__text {
    font-size: 14px;
    line-height: 1.45;
    opacity: .92;
}

.promotions-featured-card__arrow {
    position: absolute;
    right: 24px;
    bottom: 25px;
    width: 26px;
    height: 14px;
}

.promotions-featured-card__arrow::before,
.promotions-featured-card__arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #FFFFFF;
}

.promotions-featured-card__arrow::before {
    width: 26px;
    height: 1px;
    transform: translateY(-50%);
}

.promotions-featured-card__arrow::after {
    width: 9px;
    height: 9px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 22px;
    margin-top: 34px;
}

.promotions-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--promotions-text);
    text-decoration: none;
    transition: box-shadow .22s ease, transform .22s ease;
}

.promotions-card:hover {
    color: var(--promotions-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(20, 35, 55, 0.11);
}

.promotions-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    background: #F5F7FA;
}

.promotions-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .35s ease;
}

.promotions-card:hover .promotions-card__image img {
    transform: scale(1.045);
}

.promotions-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    min-width: 54px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--promotions-blue);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 5px 16px rgba(20, 35, 55, 0.12);
}

.promotions-card__title {
    padding: 12px 2px 0;
    color: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

@media (min-width: 1440px) {
    .promotions-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .promotions-page {
        margin-top: 20px;
    }

    .promotions-featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promotions-featured-card {
        min-height: 250px;
    }

    .promotions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .promotions-hero {
        padding: 4px 0 22px;
    }

    .promotions-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .promotions-hero p {
        font-size: 15px;
        line-height: 1.55;
    }

    .promotions-tabs {
        gap: 8px;
        margin-bottom: 22px;
        padding-bottom: 10px;
    }

    .promotions-tabs__item {
        min-height: 38px;
        padding: 9px 17px;
        font-size: 13px;
    }

    .promotions-featured {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .promotions-featured + .promotions-featured {
        margin-top: 14px;
    }

    .promotions-featured-card {
        min-height: 236px;
        border-radius: 8px;
    }

    .promotions-featured-card__content {
        left: 18px;
        right: 52px;
        bottom: 18px;
    }

    .promotions-featured-card__title {
        font-size: 22px;
    }

    .promotions-featured-card__arrow {
        right: 18px;
        bottom: 22px;
    }

    .promotions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        margin-top: 26px;
    }

    .promotions-card__title {
        padding-top: 13px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.3;
    }
}

@media (max-width: 420px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .promotions-card__title {
        padding: 14px 2px 0;
        font-size: 18px;
    }
}

/* End */
/* /local/templates/main_redesing/components/bitrix/news/actions/bitrix/news.list/.default/style.css?17804087297653 */
