/* ==========================================================================
   HOMEPAGE WINE SHOP — sponsored card (4th slot in .hm-grid)
   Matches .wine-tasting-card cell size; creative fills the full card.
   ========================================================================== */

.home-wine-ad-card {
    position: relative;
    padding: 0;
    height: 100%;
    min-height: 100%;
    background: #ffffff;
}

.home-wine-ad-card:hover {
    transform: translateY(-5px);
}

.home-wine-ad-sponsored {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(2, 8, 6, 0.62);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.home-wine-ad-sponsored:hover {
    background: rgba(2, 8, 6, 0.82);
    color: #fff;
}

.home-wine-ad-link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-wine-ad-link picture {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.home-wine-ad-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.home-wine-ad-card:hover .home-wine-ad-image {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .home-wine-ad-link picture,
    .home-wine-ad-image {
        min-height: 340px;
    }
}
