.offer-page {
    background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 48%);
}

.offer-hero {
    padding: 64px 20px 80px;
}

.offer-hero__inner {
    max-width: 760px;
}

.offer-grid-section,
.offer-detail-section {
    padding: 50px 20px;
}

.offer-grid-header {
    margin-bottom: 24px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.offer-card {
    overflow: hidden;
}

.offer-card__image {
    position: relative;
    display: block;
}

.offer-card__image img {
    display: block;
    width: 100%;
    /* height: 290px; */
    object-fit: cover;
}

.offer-card__label {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #16a7db;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.offer-card__body {
    padding: 22px 22px 24px;
}

.offer-card__body h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
}

.offer-card__body h3 a {
    color: #000000;
    text-decoration: none;
}

.offer-card__body p {
    margin: 0 0 18px;
    color: #000000;
    line-height: 1.75;
}

.offer-card__actions,
.offer-detail-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.offer-card__link,
.offer-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.offer-card__link {
    border: 1px solid #c8e3ee;
    background: #f6fbfe;
    color: #0996c8;
}

.offer-card__button {
    border: 0;
    background: linear-gradient(135deg, #0e8fc3 0%, #16a7db 100%);
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(22, 167, 219, 0.22);
}

.offer-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    overflow: hidden;
}

.offer-detail-card__media img {
    display: block;
    width: 100%;
    /* height: 100%; */
    min-height: 284px;
    object-fit: cover;
}

.offer-detail-card__body {
    padding: 32px 30px;
}

.offer-detail-card__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #0996c8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-detail-card__body h2 {
    margin: 0 0 14px;
    color: #000000;
    font-size: clamp(2rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.12;
}

.offer-detail-card__body p {
    margin: 0 0 22px;
    color: #000000;
    line-height: 1.85;
}

.offer-detail-card__highlights {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.offer-highlight {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f6fbfe;
    border: 1px solid #dceaf1;
}

.offer-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: #091a2c;
    font-size: 0.98rem;
    font-weight: 800;
}

.offer-highlight span {
    display: block;
    color: #607282;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-detail-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .offer-grid-section,
    .offer-detail-section {
        padding: 50px 20px;
    }

    .offer-card__image img {
        height: 240px;
    }

    .offer-card__body,
    .offer-detail-card__body {
        padding: 20px 18px 22px;
    }

    .offer-detail-card__media img {
        min-height: 280px;
    }
}
