/* GENEL AYARLAR */
body {
    background-color: #f4f7f6;
    /* Çok hafif gri, göz yormaz */
    color: #444;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.blog-area {
    padding-top: 80px;
    padding-bottom: 100px;
}

/* KART TASARIMI */
.blog-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Yumuşak gölge */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Yaylanma efekti */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Kartın üzerine gelince */
.blog-card:hover {
    transform: translateY(-10px);
    /* Yukarı kalkma */
    box-shadow: 0 20px 40px rgba(235, 37, 37, 0.15);
    /* Kırmızımsı gölge */
}

/* GÖRSEL ALANI */
.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    /* Resim hafif yakınlaşır */
}

/* TARİH KUTUSU (Sol Üst) */
.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(235, 37, 37, 0.95);
    /* Dual Metal Kırmızısı */
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* İÇERİK ALANI */
.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
    /* Alt çizgi efekti için hazırlık */
    transition: border-color 0.3s;
}

.blog-card:hover .blog-content {
    border-bottom-color: #eb2525;
    /* Hoverda altta kırmızı çizgi çıkar */
}

/* Meta (Kategori/Yazar) */
.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-meta i {
    color: #eb2525;
    margin-right: 5px;
}

/* Başlık */
.blog-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #222;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(#eb2525, #eb2525);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    /* Başlangıçta çizgi yok */
    transition: background-size .3s, color .3s;
}

.blog-card:hover .blog-title a {
    background-size: 100% 2px;
    /* Hoverda altı çizilir */
    color: #eb2525;
}

/* Açıklama Metni */
.blog-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Buton */
.btn-outline-primary {
    color: #eb2525;
    border: 2px solid #eb2525;
    border-radius: 50px;
    /* Yuvarlak buton */
    padding: 8px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    align-self: flex-start;
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: #eb2525;
    color: #fff;
    box-shadow: 0 5px 15px rgba(235, 37, 37, 0.4);
    transform: translateX(5px);
    /* Sağa doğru hafif hareket */
}