.about-page {
    background: #ffffff;
    padding: 2rem 0 4rem 0;
}

.about-page-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    color: #2c3e50;
    margin: 0 0 2rem 0;
}

.about-top-carousel-section.carousel-section {
    margin-bottom: 0;
    min-height: 420px !important;
}

.about-top-carousel-section .carousel-skeleton,
.about-top-carousel-section .carousel-container,
.about-top-carousel-section .carousel-wrapper,
.about-top-carousel-section .carousel-slide {
    min-height: 300px !important;
    height: 300px !important;
}

/* Metin slide */
.about-slide-text {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.about-slide-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 1;
    pointer-events: none;
}

.about-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.25rem;
    text-align: center;
}

.about-slide-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-slide-text-content {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    max-width: 900px;
    line-height: 1.9;
}

/* Resim slide overlay */
.about-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    z-index: 2;
}

.about-image-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.about-empty {
    padding: 2rem 1.25rem;
    text-align: center;
    color: #6b7280;
    font-weight: 600;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px dashed #e5e7eb;
    margin: 2rem 0 0 0;
}

/* Yeni: Bölümleri sırayla alt alta / yan yana alan genişliğiyle yerleştirme */
.about-sections-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem !important;
    align-items: start;
    grid-auto-flow: row;
}

.about-section-full {
    grid-column: 1 / -1;
}

.about-section-half_left {
    grid-column: 1;
}

.about-section-half_right {
    grid-column: 2;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.about-section-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text-block {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.about-text-block.about-text-has-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 1;
    pointer-events: none;
}

.about-text-inner {
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.about-section-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.about-section-content {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .about-sections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem !important;
    }

    .about-section-full,
    .about-section-half_left,
    .about-section-half_right {
        grid-column: 1 / -1;
    }

    .about-text-inner {
        padding: 2rem 1.25rem;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

    .about-section-content {
        font-size: 1.05rem;
    }
}

