/* About Content Section */
.about-content-section {
    padding: 76px 0;
}

.about-content-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 686px;
    margin-left: auto;
    margin-right: auto;
}

.about-content-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.27;
    margin: 0 0 16px 0;
}

.about-content-text {
    font-family: 'Manrope', 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #828282;
    line-height: 1.5;
    margin: 0;
}

.about-gallery {
    position: relative;
    width: 100%;
}

/* Desktop Grid */
.about-gallery-grid {
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-template-columns: 3fr 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 8px; 
    grid-template-areas: 
        "first-photo second-photo second-photo"
        "first-photo . ."; 
    aspect-ratio: 2 / 1;
}


.about-gallery-grid .about-gallery-item:first-child { grid-area: first-photo; }
.about-gallery-grid .about-gallery-item:nth-child(2) { 
    grid-area: second-photo; 
}


.about-gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Mobile Swiper - hidden on desktop */

.about-gallery-swiper .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.about-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
/* Mobile styles - Show Swiper, hide Grid */

@media (min-width: 500px) {
    .about-gallery-swiper {
        display: none!important;
    }
}

@media (max-width: 500px) {
    .about-content-section {
        padding: 80px 0;
    }
    
    .about-content-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .about-content-text {
        font-size: 14px;
    }
    
    .about-content-header {
        margin-bottom: 40px;
    }
    
    /* Hide grid on mobile */
    .about-gallery-grid {
        display: none;
    }
    
    /* Show swiper on mobile */
    .about-gallery-swiper {
        display: block;
        margin-bottom: 60px; /* Space for pagination */
    }
    
    .about-gallery-swiper .swiper-slide {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-content-title {
        font-size: 24px;
    }
    
    .about-content-text {
        font-size: 13px;
    }
    
    .about-gallery-swiper .swiper-slide {
        height: 200px;
    }
    
    .about-gallery-swiper .swiper-button-prev,
    .about-gallery-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .about-gallery-swiper .swiper-button-prev::after,
    .about-gallery-swiper .swiper-button-next::after {
        font-size: 14px;
    }
}
