/**
 * Bemo Two Sections Module - CSS Styles
 *
 * @author    Bemo
 * @copyright 2025 Bemo
 * @license   Proprietary
 */

.bemo-two-sections {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.bemo-two-sections-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.bemo-section {
    flex: 1;
    min-width: 300px;
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.bemo-section img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bemo-section:hover img {
    transform: scale(1.02);
}

/* Responsive styles */
@media (max-width: 991px) {
    .bemo-two-sections-container {
        flex-direction: column;
    }
    
    .bemo-section {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .bemo-section:hover img {
        transform: none;
    }
}
