﻿.promotions-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px
}

/* Заголовки */
.promotions-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.promotions-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 18px;
}

/* Сетка */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
    gap: 28px;
    justify-content: center;
}

/* Карточка акции */
.promo-card {
    position: relative;
    padding: 30px 28px 34px;
    border-radius: 22px;

    background: linear-gradient(
            135deg,
            rgba(255,255,255,0.14),
            rgba(255,255,255,0.04)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
            0 12px 40px rgba(0,0,0,0.35),
            inset 0 1px 0 rgba(255,255,255,0.15);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow:
            0 18px 60px rgba(0,0,0,0.45),
            inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Бейдж */
.promo-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;

    background: #ff8800;
    color: #fff;
    font-weight: 700;
    font-size: 14px;

    padding: 6px 12px;
    border-radius: 12px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Заголовок */
.promo-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 22px;
    margin-bottom: 14px;
}

.promo-card h3 i {
    flex-shrink: 0;
    font-size: 26px;
    color: cornflowerblue;

    background: rgba(56,178,172,0.15);
    padding: 8px;
    border-radius: 12px;
}

/* Текст */
.promo-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* CTA */
.promotions-cta {
    margin-top: 60px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

/* Адаптив */
@media (max-width: 768px) {
    .promotions-title {
        font-size: 28px;
    }

    .promo-card h3 {
        font-size: 20px;
    }
}