/**
 * Spaces Statistics Cards Block Styles
 */

.vh-spaces-stats-cards {
    padding: 0;
}

.vh-spaces-stats-cards__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.vh-spaces-stats-cards__card {
    background-color: rgba(255, 255, 255, 0.3); /* #FFFFFF4D */
    padding: 28px;
}

.vh-spaces-stats-cards__image {
    margin-bottom: 32px;
    height: 215px;
    overflow: hidden;
}

.vh-spaces-stats-cards__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vh-spaces-stats-cards__title {
    font-family: 'Panama', serif;
    font-size: 30px;
    line-height: 90%;
    color: #0D0D0D;
    font-weight: 400;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.vh-spaces-stats-cards__stats {
    width: 100%;
    margin: 0 0 20px 0;
    border-collapse: collapse;
}

.vh-spaces-stats-cards__stats tr {
    border-top: 1px solid rgba(13, 13, 13, 0.12);
    border-bottom: 1px solid rgba(13, 13, 13, 0.12);
}

.vh-spaces-stats-cards__stats td {
    padding: 2px;
    vertical-align: middle;
}

.vh-spaces-stats-cards__stats td:first-child {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 150%;
    color: #0D0D0D;
    font-weight: 400;
}

.vh-spaces-stats-cards__stats td:first-child svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.vh-spaces-stats-cards__stats td:last-child {
    font-family: 'Panama', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #0D0D0D;
    text-align: right;
}

.vh-spaces-stats-cards__description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 150%;
    color: #0D0D0D;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.vh-spaces-stats-cards__link {
    --link-underline-color: #0D0D0D;
}

@media (min-width: 768px) {
    .vh-spaces-stats-cards__title {
        font-size: 44px;
    }

    .vh-spaces-stats-cards__description {
        margin: 0 0 44px 0;
    }
}

@media (min-width: 1024px) {
    .vh-spaces-stats-cards__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}
