/* Blog Sayfası Özel Stilleri */

:root {
    --navy: #060649;
    --orange: #df7d06;
    --light-gray: #f8f9fa;
}

/* Header Alanı */
.blog-header {
    padding: 100px 0 100px 0;
    /* Navbar payı dahil */
    border-radius: 0 0 60px 60px;
    margin-bottom: 0px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Blog Kartları */
.blog-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none !important;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.blog-card img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* Kategori Rozetleri */
.badge-blog {
    background-color: var(--orange);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Kart Başlık ve Yazı */
.blog-card h5 {
    color: var(--navy);
    line-height: 1.4;
    margin-top: 10px;
}

.blog-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* Okuma Linki */
.read-more {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 8px;
    /* Ok işareti yana kaysın */
    color: var(--navy);
}

/* Pagination (Sayfalama) */
.pagination .page-link {
    color: var(--navy);
    border: none;
    margin: 0 5px;
    border-radius: 10px;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--orange);
    color: white;
}

/* Footer Alt Çizgi Uyumu */
.blog-footer {
    margin-top: 100px;
    background-color: var(--navy);
    border-top: 5px solid var(--orange);
}