/* Sayfa başlığı */
.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Blog Kartı Stilleri */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden; /* Kart köşeleri için */
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #f1f1f1;
}

.blog-card .card-body {
    padding: 1.25rem;
    flex-grow: 1; /* Body'nin esnemesini sağlar */
}

.blog-card .card-title a {
    text-decoration: none;
    color: #212529;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.blog-card .card-title a:hover {
    color: #0d6efd;
}

.blog-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-card .read-more-btn {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    align-self: flex-start; /* Butonu sola yasla */
}

.blog-card .read-more-btn i {
    transition: transform 0.3s ease;
}

.blog-card .read-more-btn:hover i {
    transform: translateX(5px);
}

/* Kart Yazar Bilgi Kutusu */
.author-meta-box-card {
    display: flex;
    align-items: center;
    padding: 0 1.25rem 1.25rem; /* Sadece alt ve yan padding */
}

.author-image-card {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-image-card i {
    font-size: 1rem;
    color: #adb5bd;
}

.author-info-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #212529;
}

.author-info-card span {
    font-size: 0.75rem;
    color: #6c757d;
}


/* Sayfalama Stilleri */
.pagination .page-item .page-link {
    color: #0d6efd;
    border-radius: 0.25rem;
    margin: 0 3px;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}