/* Blog Styles */

.blog_section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog_taital {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.blog_text {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Article */
.featured_article {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 50px;
    transition: transform 0.3s ease;
}

.featured_article:hover {
    transform: translateY(-5px);
}

.featured_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured_content {
    padding: 40px;
}

.article_date {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured_content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
    line-height: 1.3;
}

.featured_content h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured_content h2 a:hover {
    color: #e74c3c;
}

.featured_content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read_more_btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read_more_btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Blog Cards */
.blog_card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog_img {
    overflow: hidden;
    height: 200px;
}

.blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog_card:hover .blog_img img {
    transform: scale(1.05);
}

.blog_content {
    padding: 25px;
}

.blog_content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 15px 0 10px 0;
    line-height: 1.3;
}

.blog_content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_content h3 a:hover {
    color: #e74c3c;
}

.blog_content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read_more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read_more:hover {
    color: #c0392b;
    text-decoration: none;
}

/* Pagination */
.pagination {
    margin-top: 50px;
}

.page-link {
    color: #e74c3c;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: white;
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.page-item.active .page-link {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog_taital {
        font-size: 2rem;
    }
    
    .featured_content {
        padding: 25px;
    }
    
    .featured_content h2 {
        font-size: 1.5rem;
    }
    
    .blog_content {
        padding: 20px;
    }
    
    .blog_content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .blog_section {
        padding: 50px 0;
    }
    
    .blog_taital {
        font-size: 1.8rem;
    }
    
    .featured_content {
        padding: 20px;
    }
    
    .featured_content h2 {
        font-size: 1.3rem;
    }
}
