/* --- NEWS SECTION --- --- */
.news-section {
    padding: 100px 5%;
    background-color: #f7f7f7;
    text-align: center;
}
.news-header { margin-bottom: 50px; }
.news-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.news-card { text-align: left; cursor: pointer; }
.news-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 20px;
}
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-img { transform: scale(1.05); }
.news-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}
.news-item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
}
.news-mobile-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: -20px; 
    margin-bottom: 40px;
}
.news-dots { display: flex; gap: 8px; }
.news-dot {
    width: 30px;
    height: 3px;
    background-color: #ddd;
    border-radius: 2px;
    transition: 0.3s;
}
.news-dot.active { background-color: #000; }
.news-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.news-nav-btn svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .news-grid { display: block; position: relative; overflow: hidden; }
    .news-card { display: none; animation: cardFadeIn 0.5s ease forwards; }
    .news-card.active { display: block; }
    .news-mobile-controls { display: flex; }
    .news-title { font-size: 32px; }
}