/* =============================================
   Venue Features Widget – venue-features.css
   ============================================= */

.vfw-wrapper {
    width: 100%;
}

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

.vfw-card {
    border-radius: 26px;
    padding: 34px 36px;
    min-height: 265px;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vfw-card.vfw-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.vfw-card.vfw-hover-grow:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.vfw-card.vfw-hover-glow:hover {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.18), 0 18px 40px rgba(0,0,0,0.18);
}

.vfw-card.vfw-hover-none:hover {
    transform: none;
    box-shadow: none;
}

.vfw-card-top {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 28px;
}

.vfw-icon-wrap {
    width: 90px;
    min-width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    flex-shrink: 0;
}

.vfw-icon-wrap svg {
    width: 78px;
    height: 78px;
    display: block;
    stroke: currentColor;
}

.vfw-card-content {
    flex: 1;
}

.vfw-card-title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.vfw-card-desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.vfw-card-bottom-label {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1024px) {
    .vfw-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .vfw-card {
        min-height: 230px;
        padding: 28px 26px;
    }

    .vfw-card-top {
        gap: 18px;
    }

    .vfw-icon-wrap {
        width: 72px;
        min-width: 72px;
        height: 72px;
    }

    .vfw-icon-wrap svg {
        width: 60px;
        height: 60px;
    }

    .vfw-card-title {
        font-size: 20px;
    }

    .vfw-card-desc,
    .vfw-card-bottom-label {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .vfw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vfw-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .vfw-card-top {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .vfw-icon-wrap {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .vfw-icon-wrap svg {
        width: 48px;
        height: 48px;
    }

    .vfw-card-title {
        font-size: 18px;
    }

    .vfw-card-desc,
    .vfw-card-bottom-label {
        font-size: 15px;
    }
}