.offers-page {
    background: #f5f5f5;
    min-height: 70vh;
    padding: 60px 0 80px;
}


/* ==========================================
   OFFERS HEADER
========================================== */

.offers-page__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.offers-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0D5CB6;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 12px;
}

.offers-page__header h1 {
    margin: 0 0 15px;

    color: #222;

    font-size: 38px;
    font-weight: 700;
}

.offers-page__header p {
    margin: 0;

    color: #666;

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================
   OFFERS GRID
========================================== */

.offers-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* ==========================================
   OFFER CARD
========================================== */

.offer-card {
    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* ==========================================
   OFFER IMAGE AREA
========================================== */

.offer-card__image {
    position: relative;

    height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #0B57B7 0%,
        #08418D 55%,
        #062F69 100%
    );

    color: #fff;
}

.offer-card__image > i {
    font-size: 70px;
    opacity: 0.9;
}


/* ==========================================
   BADGE
========================================== */

.offer-card__badge {
    position: absolute;

    top: 18px;
    left: 18px;

    background: #F5B51D;

    color: #222;

    padding: 7px 12px;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 700;
}


/* ==========================================
   CARD CONTENT
========================================== */

.offer-card__content {
    padding: 25px;
}

.offer-card__label {
    display: block;

    margin-bottom: 8px;

    color: #0D5CB6;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.offer-card__content h2 {
    margin: 0 0 12px;

    color: #222;

    font-size: 21px;
}

.offer-card__content p {
    margin: 0 0 22px;

    color: #666;

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================
   BUTTON
========================================== */

.offer-card__button {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    background: #0D5CB6;

    color: #fff;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: background 0.2s ease;
}

.offer-card__button:hover {
    background: #08418D;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .offers-page {
        padding: 40px 0 60px;
    }

    .offers-page__header h1 {
        font-size: 30px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

}