﻿/* BLOG ÖNE ÇIKANLAR */
/* BAŞLANGIÇ */
.blog-feature-card {
    transition: all 0.3s ease-in-out;
    border: 2px solid #ffc10720; /* hafif sarı sınır */
    border-radius: 0.75rem;
}

    .blog-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2); /* Sarımsı hafif gölge */
    }
/* BİTİŞ */

/* --------------------------------------------------------------------------------- */

/* BLOG KART GÖRÜNÜMÜ */
/* BAŞLANGIÇ */
.cards-overview {
    display:block;    
}
/* BİTİŞ */

/* --------------------------------------------------------------------------------- */

/*.blog-section {
    max-width: 960px;
    margin: auto;
    padding: 20px;
}*/

/* MAKALE STİLLERİ */
/* BAŞLANGIÇ */
.blog-post {
    display: flex;
    position: relative;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog-thumbnail {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content h2 {
    font-size: 1.4rem;
    margin: 0 0 10px;
}

    .blog-content h2 a {
        text-decoration: none;
        color: #ffffff;
    }

        .blog-content h2 a:hover {
            color: #2196f3;
        }

.blog-snippet {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ff5a5f;
    text-decoration: none;
}

    .read-more:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .blog-post {
        flex-direction: column;
        align-items: center;
    }

    .blog-thumbnail {
        width: 100%;
        height: auto;
    }

    .blog-content {
        text-align: center;
    }

    
}
/* Tarihler */
.blog-dates {
    font-size: 0.75rem;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 6px;
    color: #ccc;
    pointer-events: none;
}
/* BİTİŞ */

/* --------------------------------------------------------------------------------- */

