
        .blog-card a{text-decoration: none;}
        .blog-card {
            background: #fff !important;
            border-radius: 8px !important;
            overflow: hidden !important;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
            margin-bottom: 20px !important;
        }

        /* Hover Efekti - Gölge ve Yazı Rengi */
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .blog-card:hover .blog-info h2 {
            color: #e7505a !important;
        }

        /* Blog Resmi */
        .blog-img img {
            width: 100% !important;
            height: 250px !important; /* Optimum yükseklik */
            object-fit: contain !important;
            background-color: #f8f8f8; /* Arkaplan, boşluklar için */
        }

        /* Blog Bilgi Alanı */
        .blog-info {
            padding: 15px !important;
            text-align: center !important;
            text-decoration: none !important;
        }

        .blog-info h2 {
            font-size: 16px !important;
            font-weight: bold !important;
            color: #333 !important;
            margin: 0 !important;
            transition: color 0.3s ease-in-out;
            text-decoration: none !important;
        }

        /* Link Stili */
        .blog-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
       /* Başlıklar ve Paragraflar */
h1 {
    font-size: 28px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-bottom: 20px !important; /* Daha iyi boşluk */
}

p {
    font-size: 16px !important;
    text-align: center !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important; /* Uyumlu boşluk */
}

/* Mobil İçin Optimize Edildi */
@media (max-width: 768px) {
    h1 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }

    p {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
}