/* css/blog_style.css (Tamamen Yenilenmiş Sürüm) */

/* GÜNCELLENDİ: Sayfa Başlığı */
.page-header.blog-header-bg {
    background: linear-gradient(rgba(13, 71, 161, 0.88), rgba(25, 118, 210, 0.8)), url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 60px 0;
    color: var(--white-color);
}

.blog-header-bg h1 {
    font-size: 3rem;
    font-weight: 800;
}

.blog-header-bg p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* GÜNCELLENDİ: Blog Listeleme Sayfası */
.blog-list-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--grey-color);
    margin-bottom: 15px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

.blog-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-card-content h3 a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--accent-color);
}

.blog-card-content p {
    color: var(--dark-color);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}
.read-more:hover i {
    transform: translateX(5px);
}


/* GÜNCELLENDİ: Tekil Blog Yazısı Sayfası */
.blog-post-section {
    padding: 80px 0;
}

.post-content {
    max-width: 850px;
    margin: 0 auto;
}

.post-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.post-content .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.8;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    font-style: italic;
}

.post-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.post-content p, .post-content ul, .post-content ol {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.post-content ul, .post-content ol {
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}


.call-to-action-box {
    background-color: var(--light-color);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    margin: 50px 0;
    border-radius: 0 8px 8px 0;
}

.call-to-action-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}