/* FuelGuard Features Widget
   Prefix: fractured-
   ======================================== */

/* Renk Tanımlamaları */
:root {
    --ana-vurgu: #bb0a07; /* Koyu Kırmızı/Bordo */
    --neon-parlaklik: #ff3333; 
    --arkaplan-renk: #f0f0f0; /* Açık arka plan */
}

/* Ana Kapsayıcı */
.fractured-alanlar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* KART STİLİ - YENİ VE DAHA FAZLA BOŞLUK */
.fractured-kart {
    padding: 65px 30px; /* Üstten ve alttan 65px boşluk */
    background-color: var(--arkaplan-renk);
    color: #222; 
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 180px; 
    
    /* İÇERİĞİ DİKEYDE ORTALAMA/DÜZENLEME */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    
    /* KLASİK KUTU GÖRÜNÜMÜNÜ KIRMA: Köşeleri kesme */
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%); 
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    
    /* Link olduğunda varsayılan link stillerini kaldır */
    text-decoration: none;
    color: inherit;
}

/* Zemin Çizgi Efekti (::before) - Hareketsiz Dokuyu Koruyor */
.fractured-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--arkaplan-renk),
        var(--arkaplan-renk) 10px,
        rgba(187, 10, 7, 0.1) 10px, 
        rgba(187, 10, 7, 0.1) 20px
    );
    opacity: 0.7;
    z-index: 0;
    background-position: 0% 50%;
}

/* Hover Efekti - Sadece Yükselme ve Gölge Değişimi */
.fractured-kart:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px); 
}

/* İÇERİK KAPSAYICISI */
.icerik-kapsayici {
    position: relative;
    z-index: 10;
}

/* Başlık Stilleri */
.fractured-kart h4 {
    color: var(--ana-vurgu);
    font-size: 1.5em; 
    font-weight: 900; 
    margin-top: 0;
    margin-bottom: 10px;
}

/* Açıklama Metni Stili */
.fractured-kart p {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

/* İKON STİLİ */
.fractured-kart .ikon {
    font-size: 3em; 
    color: var(--ana-vurgu);
    margin-bottom: 15px;
    display: inline-block;
}

/* RESİM İKON STİLİ */
.fractured-kart .ikon.icon-image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fractured-kart .ikon.icon-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.fractured-kart:hover .ikon.icon-image img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Mobil Uyumlu Düzenleme */
@media (max-width: 768px) {
    .fractured-alanlar {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .fractured-kart {
        clip-path: none; 
        padding: 40px 20px;
    }
    .fractured-kart h4 {
        font-size: 1.3em;
    }
    .fractured-kart .ikon {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .fractured-kart {
        padding: 30px 15px;
        min-height: 150px;
    }
    .fractured-kart h4 {
        font-size: 1.2em;
    }
    .fractured-kart .ikon {
        font-size: 2em;
        margin-bottom: 10px;
    }
    .fractured-kart p {
        font-size: 0.95em;
    }
}

