.woow-season-gallery {
    box-sizing: border-box;
    background-color: #ffffff;
}

.woow-season-gallery h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.woow-gallery-container {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.woow-gallery-left,
.woow-gallery-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.woow-gallery-left-top {
    display: flex;
    flex-direction: column;
	justify-content: start;
	align-items: start;
    flex: 1;
	padding: 50px;
}



.woow-gallery-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.woow-gallery-link {
    display: inline-block;
    text-decoration: none;
    color: #0073e6;
    font-size: 18px;
    border: 2px solid #0073e6;
    padding: 20px 40px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.woow-gallery-link:hover {
    background-color: #0073e6;
    color: #fff;
}

.woow-gallery-left-bottom,
.woow-gallery-right-top {
    display: flex;
    flex: 1;
	height:50% !important;
}

.woow-gallery-left-bottom .woow-gallery-item,
.woow-gallery-right-top .woow-gallery-item {
    flex: 1;
    aspect-ratio: 1 / 1; 
}

.woow-gallery-right-bottom {
    flex: 1;
    display: flex;
}

.woow-gallery-right-bottom .woow-gallery-item {
    width: 100%;
    height: 100%; 
}

.woow-gallery-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: background-size 0.3s ease, box-shadow 0.3s ease;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .woow-season-gallery {
        min-height: 1500px;
    }
}

@media (max-width: 992px) {
    .woow-gallery-container {
        flex-direction: column;

    }
    
    .woow-gallery-left-bottom,
    .woow-gallery-right-top {
        flex-direction: column;
    }

    .woow-gallery-item {
        height: auto;
    }
}

@media (max-width: 768px) {
    .woow-season-gallery {
        min-height: auto;
    }

    .woow-gallery-container {
        flex-direction: column;
    }

    .woow-gallery-left-bottom,
    .woow-gallery-right-top {
        flex-direction: column;
    }

    .woow-gallery-item {
        height: auto;
    }
}
