main{
    flex: 1;
    margin-top: 40px;
    padding: 40px 0 0;
    background-color: #f5f5f5;
}
.section-tin-tuc{
    
    padding: 50px 0;
    font-family: 'Inter', Arial , sans-serif;
} 
.news-container{
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-title{
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    position: relative;
}
.blog-title::after{
    content: "";
    position: absolute;
    left: 0%;
    bottom: -10px;
    width: 310px;
    height: 3px;
    border-radius: 999px;
    background-color: #e67e22;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .blog-content {
    padding: 20px;
    flex: 1;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-card a {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-card a:hover {
    background-color: #cf711f;
    transform: scale(1.05);
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 8px;
}

.pagination button {
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.pagination button:hover:not(:disabled) {
    background-color: #e67e22;
    color: #fff;
}

.pagination button.active {
    background-color: #e67e22;
    color: #fff;
    border-color: #e67e22;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: default;
}
