:root {
    --primary: #F4760F;
    --secondary: #134834;
    --tertiary: #4A0001;
    --background: rgba(244, 118, 15, 0.1);
}
.news {
    padding-top: 160px;
    padding-bottom: 100px;
    height: 100vh;
    background: var(--background);
}

.news p {
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px;
}

.cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 24px !important;
    border-radius: 8px !important;
    background: var(--primary) !important;
    transition: transform 0.25s ease !important;
    cursor: pointer !important;
    color: white;
}

/* CARD */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

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

.news-content {
    padding: 20px;
}

.tag {
    background: #2e7d32;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 10px;
}

.date {
    font-size: 12px;
    color: #888;
}

.news-content h3 {
    margin: 20px 0;
}

.news-content p {
    color: #666;
    font-size: 14px;
    text-align: left;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.modal.open {
    display: flex;
    z-index: 99999;
}

.modal-content {
    position: relative;
    width: min(1200px, 95vw);
}

.modal-content video {
    width: 80%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    background: #000;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
