.benefit-container {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    border-radius: 10px;
}

.benefit-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
    max-width: 800px;
    position: relative;
}

.benefit-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    position: relative;
    }

.swiper {
    padding-bottom: 40px;
}

.swiper-pagination {
    bottom: 10px !important;
}

.benefit-link {
    display: block;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

/* Dark overlay */
.benefit-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

/* Tooltip text */
.benefit-link::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Show overlay + text on hover */
.benefit-link:hover::before,
.benefit-link:hover::after {
    opacity: 1;
}

