.offers-hero {
    background: #eef8f6;
    padding: 54px 0 42px;
}

.offers-hero h1 {
    color: #173b37;
    font-size: 42px;
    margin-bottom: 14px;
}

.offers-hero p {
    color: #455e5a;
    font-size: 18px;
    max-width: 720px;
}

.offers-section {
    padding: 70px 0;
}

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

.offer-item {
    border: 1px solid #dbe5e3;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.offer-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.offer-content {
    padding: 26px;
}

.offer-content h2 {
    color: #173b37;
    font-size: 25px;
    margin-bottom: 10px;
}

.offer-price {
    color: #1a7a6b;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.offer-secondary-price {
    color: #334b47;
    font-size: 18px;
    font-weight: 600;
}

.offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.offer-link {
    color: #176f62;
    font-weight: 600;
    padding: 12px 4px;
}

.offer-note {
    background: #f7f9f9;
    border-left: 4px solid #24a38e;
    margin-top: 36px;
    padding: 20px 24px;
}

@media (max-width: 767px) {
    .offers-hero {
        padding: 38px 0 30px;
    }

    .offers-hero h1 {
        font-size: 32px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offers-section {
        padding: 48px 0;
    }
}
