/* Location Showcase Stats Module CSS */

.location-showcase-stats-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.location-showcase-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-showcase-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.location-showcase-stat-item:hover {
    transform: translateY(-5px);
}

.location-showcase-stat-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #d52028;
    /* Red color matching the image */
    margin-bottom: 0.5rem;
}

.location-showcase-stat-label {
    font-size: 1rem;
    line-height: 1.4;
    color: #555555;
}


/* Responsive Styles */

@media (max-width: 1200px) {
    .location-showcase-stat-value {
        font-size: 2.75rem;
    }
}

@media (max-width: 1024px) {
    .location-showcase-statistics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .location-showcase-stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .location-showcase-statistics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .location-showcase-stat-value {
        font-size: 2.25rem;
    }
    .location-showcase-stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 479px) {
    .location-showcase-statistics {
        grid-template-columns: repeat(1, 1fr);
    }
    .location-showcase-stat-value {
        font-size: 2rem;
    }
    .location-showcase-stat-label {
        font-size: 0.875rem;
    }
}