.deal-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* IMAGE FULL SIZE */
.deal-card .image {
    position: relative;
    height: 320px;
}

.deal-card .media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.deal-card .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.45); */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.1)) !important;
}

/* CONTENT ON TOP */
.deal-card .overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    color: #fff;
}

/* BADGE */
.deal-card .badge-duration {
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    width: fit-content;
}

/* BOTTOM CONTENT */
.deal-card .bottom-content {
    width: 100%;
}

.deal-card .location {
    font-size: 13px;
    opacity: 0.85;
}

.deal-card h5 {
    margin: 5px 0 10px;
    font-weight: 600;
    color: #fff;
}

.deal-card h5 a {
    color: #fff;
    text-decoration: none;
}

.deal-card .price {
    font-size: 18px;
    font-weight: bold;
}

/* BUTTON */
.deal-card .btn-light {
    background: #fff;
    border: none;
    font-size: 13px;
}

/* HOVER EFFECT */
.deal-card .media {
    transition: transform 0.4s ease;
}

.deal-card:hover .media {
    transform: scale(1.08);
}

@media (min-width: 992px) {
    .deal-card .image {
        height: 360px;
    }
}
