.offers-showcase {
    padding: 42px 0 60px;
    background: #fff;
}

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

.offer-card {
    position: relative;
}

.offer-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f8fb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    text-decoration: none;
}

.offer-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 165px;
    object-fit: cover;
}

.offer-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px 16px;
    background: rgba(38, 38, 38, 0);
    opacity: 0;
    transition: opacity 0.25s ease, background-color 0.25s ease;
}

.offer-card:hover .offer-card-overlay,
.offer-card-media:focus-visible .offer-card-overlay {
    opacity: 1;
    background: rgba(42, 42, 42, 0.5);
}

.offer-card-title {
    max-width: 84%;
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.offer-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .offers-grid {
        gap: 20px;
    }

    .offer-card-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(12, 28, 43, 0.18), rgba(12, 28, 43, 0.48));
    }
}

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

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

    .offer-card-title {
        max-width: 100%;
        font-size: 14px;
    }
}
