/* Sonsuz genişlikte açık yeşil arka plan */
.foto-video-bg {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background-color: #65a681; /* veya #73b991 */
    box-sizing: border-box;
    margin-top: 250px;
}

/* İçerik sınırlı ve ortalı */
.foto-video-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
}

/* Diğer mevcut stillerin aynen kalabilir */
.foto-video-container {
    width: 100%;
    background-color: #65a681;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 60px 0px ;
    box-sizing: border-box;
    
}

.foto-galeri-content,
.video-galeri-content {
    width: 460px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.foto-galeri-container,
.video-galeri-container {
    width: 100%;
    height: 60px;
    background-color: #255938;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-galeri-text,
.video-galeri-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.latest-photo,
.latest-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.latest-photo img,
.latest-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-container {
    width: 100%;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
   flex-direction: column;
   border-sizing: border-box;
}

.category-item {
    width: 100%;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    color: #255938;
    background-color: #f8f8f8;
    padding-left: 20px;
}

.category-item span {
    display: block;
    width: 100%;
} 
@media (max-width: 991px) {
    .foto-video-container {
        flex-direction: column;
        align-items: center;
    }

    .foto-galeri-content,
    .video-galeri-content {
        width: 100%;
        max-width: 500px;
    }
}
@media (max-width: 768px) {
    .foto-video-container {
      flex-direction: column;
      gap: 2rem;
      padding: 40px 15px;
    }
  }
  