/* --- BÖLÜM ARKA PLANI --- */
.icerik3-section {
    padding: 100px 0;
    /* Merkezden dışa doğru koyulaşan radyal geçiş (Görseldeki gibi) */
    background: radial-gradient(circle, #02238c 0%, #000929 100%);
    font-family: 'Roboto', sans-serif;
}

/* --- ANA BAŞLIK --- */
.icerik3-baslik {
    text-align: center;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 60px;
}

/* --- KART IZGARASI (GRID) --- */
.icerik3-grid {
    display: grid;
    /* Kartları yan yana 2 tane olacak şekilde diziyoruz */
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; /* Kartlar arası boşluk */
    max-width: 900px; /* Çok fazla yayılmaması için genişliği sınırladık */
    margin: 0 auto; /* Ortalamak için */
}

/* --- TEKİL SEKTÖR KARTI --- */
.sektor-karti {
    display: flex;
    flex-direction: column;
    text-decoration: none; /* Link çizgisini kaldırır */
    overflow: hidden;
    background-color: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.sektor-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Kart Resmi */
.sektor-resim {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sektor-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sektor-karti:hover .sektor-resim img {
    transform: scale(1.05); /* Üzerine gelince resmi hafif büyüt */
}

/* Kartın Altındaki Mavi Metin Bloğu */
.sektor-icerik {
    background-color: #1a3296; /* Görseldeki alt kutunun mavi tonu */
    padding: 25px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.sektor-icerik h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .icerik3-grid {
        grid-template-columns: 1fr; /* Mobilde kartları alt alta diz */
    }
}