
.news-events {
    background: #fff;
    padding: 180px 0 85px 0;
}
.news-header {
    text-align: center;
    margin-bottom: 50px;
}
.news-header h2 {
    font-size: 2.6rem;
    font-weight: 400;
    color: #BF9948;
}
.news-header p {
    color: #777;
    font-size: 1rem;
    margin-top: 8px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 column) */
@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
.news-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}
.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.news-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity .3s ease;
}
.news-card.has-video:hover .news-play { opacity: 1; }
.news-play img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(974%) hue-rotate(342deg) brightness(96%) contrast(93%);
    transition: transform .2s ease;
}
.news-play:hover img { transform: scale(1.1); }
.news-info {
    padding: 16px 18px;
    text-align: center;
}
.news-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 6px;
}
.news-date { font-size: 0.9rem; color: #888; }

/* === Modal === */
.news-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
}
.news-modal.is-open { display: flex; }

.news-modal__inner {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    animation: fadeUp .3s ease;
    display: flex;
    flex-direction: column;
}
@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.news-modal__media {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.news-modal__media img,
.news-modal__media video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.news-modal__body {
    padding: 24px;
}
.news-modal__body h2 {
    font-size: 1.6rem;
    color: #BF9948;
    margin-bottom: 10px;
}
.news-modal__body p {
    color: #333;
    line-height: 1.6;
}

/* Close button on top-right of image/video */
.news-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 20px;
    line-height: 38px;
    transition: background .3s ease;
    z-index: 5;
}
.news-modal__close:hover {
    background: #BF9948;
    color: #222;
}
@media (max-width: 762px) {
    .news-header h2 {
        font-size: 2.2rem !important;
    }
}
@media (max-width: 1600px) {
    .news-events {
        padding: 80px 0 50px 0 !important;
    }
}
