/* Content Section */
.kazlicesme-highlight-text {
    color: #d4af37;
    font-weight: normal;
}

/* Logo Development Section */
.kazlicesme-logo-phases {
    max-width: 800px;
    margin: 0 auto;
}

.kazlicesme-phase-item img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
}

/* Social Media Posts Section */
.social-posts-section {
    background-color: #000;
}

.posts-grid {
    max-width: 1000px;
    margin: 0 auto;
    grid-template-rows: 1fr 1fr;
}

.post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Gallery Section */
.video-gallery-section {
    background-color: #fff;
}

.video-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* İlk video satırı - beyaz arka plan */
.video-row:first-child {
    background-color: #ffffff;
}

.instagram-middle {
    background-color: #000;
    text-align: center;
}

.instagram-feed-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

/* İkinci video satırı - tüm genişlikte siyah arka plan */
.video-row:last-child {
    background-color: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
}

.video-row:last-child .video-item {
    max-width: 380px;
}

.video-row {
    display: flex;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .instagram-middle {
        padding: 30px 0;
    }

    .video-gallery-section {
        padding: 0;
    }

    .video-row:first-child {
        padding: 60px 16px;
    }

    .video-row:last-child {
        padding: 60px 16px;
    }

    .video-row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .instagram-middle {
        padding: 20px 0;
    }

    .video-row {
        gap: 12px;
        margin-bottom: 12px;
    }
}