
    /* Base Variables */
:root {
    --news-primary: #333333;
    --news-accent: #E61E15;
    --news-light: #F5F5F5;
    --news-white: #FFFFFF;
    --news-gray: #999999;
}

/* Body Styles */
body {
    background-color: var(--news-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Styles */
.news-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('../images/s6.webp') bottom/cover;
    height: 400px;
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    text-align: center;
}

.news-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.news-header p {
    color: #fff;
    font-size: 16px;
}

/* Card Styles */
.news-card {
    background-color: var(--news-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.news-card-image {
    width: 100%;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-card-tag {
    color: var(--news-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-date {
    color: var(--news-gray);
    font-size: 13px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-title a{
    color: var(--news-primary);
    text-decoration: none;
}
.news-card-text {
    color: var(--news-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-btn {
    display: inline-flex;
    align-items: center;
    color: var(--news-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-btn:hover {
    color: #e55a00;
    text-decoration: none;
}

.news-card-btn svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-card-btn:hover svg {
    transform: translateX(4px);
}

/* Pagination Styles */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom:50px;
}

.news-pagination-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--news-white);
    color: var(--news-primary);
}

.news-pagination-item:hover {
    background-color: #f0f0f0;
}

.news-pagination-item.active {
    background-color: var(--news-accent);
    color: var(--news-white);
}

.news-pagination-item.arrow {
    background-color: var(--news-white);
    color: var(--news-primary);
}

.news-pagination-item.arrow:hover {
    background-color: var(--news-accent);
    color: var(--news-white);
}

/* Section Container */
.news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-header h1 {
        font-size: 28px;
    }

    .news-card-title {
        font-size: 16px;
    }
}
