/* --- BÖLÜM ARKA PLANI VE GENEL AYARLAR --- */
.icerik1-section {
    width: 100%;
    padding: 100px 0; 
    background: linear-gradient(135deg, #1b44d4 0%, #893ade 100%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* --- ANA BAŞLIK --- */
.icerik1-baslik {
    text-align: center;
    font-size: clamp(42px, 5vw, 64px); 
    font-weight: 800;
    margin: 0 auto 60px auto; /* KANKACIM: Ortalamak için auto ekledik */
    line-height: 1.2;
    letter-spacing: 1px;
    max-width: 500px; /* KANKACIM: Genişliği daralttık ki "Uçtan Uca"dan sonra mecburen alt satıra insin */
}

/* --- 3'LÜ KUTU IZGARASI (GRID) --- */
.icerik1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

/* --- TEKİL KUTU TASARIMI --- */
.icerik1-kutu {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

/* Resim Alanı */
.kutu-resim {
    width: 100%;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    margin-bottom: 0; 
}

.kutu-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}

.icerik1-kutu:hover .kutu-resim img {
    transform: scale(1.05);
}

/* Kutu Altı Metni */
.icerik1-kutu p {
    background-color: rgba(255, 255, 255, 0.1); 
    width: 100%;
    margin: 0;
    /* KANKACIM: Yanlardan boşluğu (padding) artırdık ki yazı "lazer +" kelimesinden sonra sıkışıp alt satıra düşsün */
    padding: 25px 35px; 
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- MOBİL UYUM --- */
@media (max-width: 991px) {
    .icerik1-section {
        padding: 60px 0; 
    }
    .icerik1-grid {
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .icerik1-baslik {
        margin-bottom: 40px;
    }
}