/* 
 * Blog Bölümü Stilleri
 */

.blog-section {
    padding: 80px 0;
    transition: all 0.3s ease;
}

.blog-section.bg-light {
    background-color: #f8f9fa;
}

.blog-section.bg-dark {
    background-color: #343a40;
}

.blog-section .section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.bg-light .section-title {
    color: #333;
}

.bg-dark .section-title {
    color: #fff;
}

.blog-section .section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.bg-light .section-description {
    color: #6c757d;
}

.bg-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-light .blog-card {
    background-color: #fff;
    border: 1px solid #eee;
}

.bg-dark .blog-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.blog-thumbnail {
    position: relative;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 20px;
}

.blog-meta {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.bg-light .blog-meta {
    color: #6c757d;
}

.bg-dark .blog-meta {
    color: rgba(255, 255, 255, 0.7);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bg-light .blog-title a {
    color: #333;
}

.bg-light .blog-title a:hover {
    color: var(--iamhere-primary-color, #0d6efd);
}

.bg-dark .blog-title a {
    color: #fff;
}

.bg-dark .blog-title a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bg-light .blog-excerpt {
    color: #666;
}

.bg-dark .blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
}

.read-more {
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bg-light .read-more {
    color: var(--iamhere-primary-color, #0d6efd);
}

.bg-light .read-more:hover {
    color: var(--iamhere-secondary-color, #6c757d);
}

.bg-dark .read-more {
    color: rgba(255, 255, 255, 0.9);
}

.bg-dark .read-more:hover {
    color: #fff;
}

.iamhere-button {
    padding: 10px 30px;
    background-color: var(--iamhere-primary-color, #0d6efd);
    border-color: var(--iamhere-primary-color, #0d6efd);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.iamhere-button:hover {
    background-color: var(--iamhere-primary-color, #0d6efd);
    opacity: 0.9;
    color: #fff;
}

/* Responsive Ayarlamalar */
@media (max-width: 991.98px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .blog-section .col-sm-6 {
        margin-bottom: 30px;
    }
    
    .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-section .section-title {
        font-size: 1.8rem;
    }
    
    .blog-section .section-description {
        font-size: 1rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
}