/**
 * Offer Cards Grid Styles
 *
 * Displays offer cards with background image and title.
 * Based on tip-directory card styles with same dimensions and spacing.
 *
 * @package NearB\Assets
 */

/* ===========================================
   OFFER CARDS GRID
   =========================================== */

.nearb-offer-cards {
    width: 100%;
}

.nearb-offer-cards__grid {
    --offer-columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--offer-columns), 1fr);
    gap: 16px;
}

/* ===========================================
   OFFER CARD STYLES
   =========================================== */

.nearb-offer-card {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #dfe3ec;
}

.nearb-offer-card__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.nearb-offer-card__media {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Gradient overlay */
.nearb-offer-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

/* Content overlay */
.nearb-offer-card__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Title */
.nearb-offer-card__title {
    margin: 0;
    color: #FFF;
    font-family: "PP Hatton", 'Manrope', 'Inter', serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.3px;
}

/* Badge */
.nearb-offer-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    padding: 8px 16px;
    background: #FFF;
    color: #1a1a1a;
    border-radius: 8px;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */

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

    .nearb-offer-card {
        height: 350px;
    }

    .nearb-offer-card__title {
        font-size: 18px;
    }
}
