/* --- 📦 İKONLU BİLGİLENDİRME ALANI STİLLERİ (MODERN & MİNİMAL) --- */

.features-wrapper {
    background-color: #ffffff;
    padding: 30px 0; /* Üstten alttan boşluğu biraz kıstık */
    margin: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    gap: 8px; /* Yazı ve ikon arası boşluğu azalttık */
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8fafc; /* Hafif modern bir arka plan kutusu */
}

.feature-item:hover {
    transform: translateY(-3px);
    background: #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.03); /* İkonun arkasına şeffaf bir yuvarlak */
    border-radius: 50%;
    font-size: 1.3rem; /* İkonu küçülttük */
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 0.85rem; /* Başlığı ufalttık */
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: 0.3px;
}

.feature-desc {
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 0.7rem; /* Açıklamayı zarifleştirdik */
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* 📱 MOBİL UYUMLULUK (KÜÇÜK VE 2'Lİ DİZİLİM) */
@media (max-width: 1024px) {
    .features-wrapper { padding: 15px 0; }

    .features-container { 
        grid-template-columns: repeat(2, 1fr); /* Mobilde kesin 2'li yan yana */
        gap: 10px; /* Ara boşlukları iyice kıstık */
    }

    .feature-item {
        padding: 10px 5px;
        border-radius: 8px;
        gap: 5px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 0.75rem;
    }

    .feature-desc {
        font-size: 0.65rem; /* Ekranda yer kaplamasın diye iyice ufalttık */
    }
}