/**
 * Simple Slider Block Styles
 * 
 * @package Vision_Hall
 */

.simple-slider-section {
    background-color: #F2EEE5;
    overflow: hidden;
    padding-left: 40px;
    padding-bottom: 60px;
}

.simple-slider {
    overflow: visible !important;
}

.simple-slider-item {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 60px 40px 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.simple-slider-content {
    max-width: 300px;
    margin: 0 auto;
}

.simple-slider-image {
    width: 100%;
    height: 184px;
    margin-top: auto;
}

.simple-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.simple-slider-title {
    font-family: "Panama", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 44px;
    line-height: 90%;
    text-align: center;
    text-transform: uppercase;
    color: #354200;
    margin: 0 auto 21px;
}

.simple-slider-text {
    font-family: "Inter", Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #0D0D0D;
    margin-bottom: 57px;
}

/* Editor preview styles */
.simple-slider-preview {
    min-height: 100px;
}

/* Mobile styles */
@media screen and (max-width: 1200px) {а
    .simple-slider-content {
        max-width: 100%;
    }

    .simple-slider-title {
        font-size: 30px;
    }
    
    .simple-slider-text {
        margin-bottom: 32px;
    }

    .simple-slider-image {
        height: 105px;
    }
}

@media screen and (max-width: 768px) {
    .simple-slider-content {
        max-width: 220px;
    }

    .simple-slider-item {
        padding: 60px 20px 28px;
    }
}

