/* ==========================================================
   HEGAU24 — SPECIAL OFFERS
========================================================== */

.hegau-offers {
    width: min(1800px, 94%);
    margin: 34px auto 46px;
}

/* ==========================================================
   HEADER
========================================================== */

.hegau-offers__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding: 0 4px;
}

.hegau-offers__header h2 {
    margin: 0;
    color: #142b46;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.hegau-offers__all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1268c4;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.hegau-offers__all span {
    font-size: 17px;
    transition: transform .2s ease;
}

.hegau-offers__all:hover span {
    transform: translateX(4px);
}

/* ==========================================================
   GRID
========================================================== */

.hegau-offers__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

/* ==========================================================
   CARD
========================================================== */

.hegau-offer-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 7px 25px rgba(25, 58, 91, .07);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.hegau-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(25, 58, 91, .13);
}

/* ==========================================================
   IMAGE
========================================================== */

.hegau-offer-card__image {
    position: relative;
    height: 175px;
    overflow: hidden;
}

/*
 * Пока это демонстрационные изображения.
 * Позже сюда можно подключить реальные изображения
 * акций из медиатеки WordPress.
 */

.hegau-offer-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03) 20%,
            rgba(0,0,0,.18) 100%
        );
}

.hegau-offer-card__image--tires {
    background:
        radial-gradient(circle at 35% 55%, #30343a 0 18%, transparent 19%),
        radial-gradient(circle at 65% 50%, #22262b 0 22%, transparent 23%),
        linear-gradient(135deg, #d8a96b, #5e4733 55%, #1f2529);
}

.hegau-offer-card__image--dental {
    background:
        radial-gradient(circle at 55% 48%, #fff 0 18%, transparent 19%),
        linear-gradient(135deg, #b8eee9, #55b8b1 52%, #287c88);
}

.hegau-offer-card__image--food {
    background:
        radial-gradient(circle at 50% 55%, #d38a37 0 18%, transparent 19%),
        radial-gradient(circle at 65% 38%, #a93e27 0 11%, transparent 12%),
        linear-gradient(135deg, #d7b16e, #75482f 55%, #3a2720);
}

.hegau-offer-card__image--flowers {
    background:
        radial-gradient(circle at 30% 35%, #f08b9a 0 9%, transparent 10%),
        radial-gradient(circle at 55% 55%, #f5c84c 0 11%, transparent 12%),
        radial-gradient(circle at 72% 32%, #d95c77 0 10%, transparent 11%),
        linear-gradient(135deg, #bde5d2, #67a58a 55%, #427b68);
}

.hegau-offer-card__image--fitness {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.15),
            transparent 40%
        ),
        linear-gradient(135deg, #202f43, #315c7d 55%, #142332);
}

/* ==========================================================
   BADGE
========================================================== */

.hegau-offer-card__badge {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 7px;
    background: #ef3d3d;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.hegau-offer-card__badge--blue {
    background: #1268c4;
}

/* ==========================================================
   BODY
========================================================== */

.hegau-offer-card__body {
    padding: 14px 15px 17px;
}

.hegau-offer-card__body h3 {
    min-height: 38px;
    margin: 0 0 7px;
    color: #172d47;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
}

.hegau-offer-card__body p {
    margin: 0 0 5px;
    color: #718093;
    font-size: 12px;
    line-height: 1.35;
}

.hegau-offer-card__body time {
    display: block;
    color: #9aa6b4;
    font-size: 11px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1250px) {
    .hegau-offers__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .hegau-offers {
        width: calc(100% - 28px);
    }

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

@media (max-width: 520px) {
    .hegau-offers__header h2 {
        font-size: 19px;
    }

    .hegau-offers__all {
        font-size: 12px;
    }

    .hegau-offers__grid {
        grid-template-columns: 1fr;
    }

    .hegau-offer-card__image {
        height: 190px;
    }
}
