/* =========================
   NEWS HERO
========================= */

.news-hero {
    padding: 120px 0;
    background: radial-gradient(circle at top, #12301c, #07110C);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-hero-content {
    max-width: 900px;
    margin: auto;
}

.news-badge {
    display: inline-block;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    background: #102116;
    border: 1px solid #1c2f22;
    color: #7CB342;
    margin-bottom: 20px;
}

.news-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 20px;
}

.news-hero h1 span {
    color: #7CB342;
}

.news-hero p {
    color: #cfd8d1;
    line-height: 1.8;
}

/* STATS */
.news-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.news-stats h3 {
    font-size: 34px;
    color: #7CB342;
}

.news-stats span {
    font-size: 13px;
    color: #cbd3cc;
}

/* =========================
   FEATURED NEWS
========================= */

.featured-news {
    padding: 100px 0;
    background: #0a1710;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background: #07110C;
    border: 1px solid #1c2f22;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: #7CB342;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.breaking-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: red;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.featured-content {
    padding: 25px;
}

.featured-content h3 {
    font-family: 'Oswald';
    font-size: 26px;
    margin-bottom: 10px;
}

.featured-content p {
    color: #cbd3cc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #9fb0a6;
    margin-bottom: 15px;
}

.read-more {
    color: #7CB342;
    font-weight: bold;
}

/* =========================
   FILTER BAR
========================= */

.news-filters {
    padding: 40px 0;
    background: #07110C;
}

.filter-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 16px;
    border: 1px solid #1c2f22;
    background: #0b1a12;
    color: #cbd3cc;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 6px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #7CB342;
    color: #000;
}

/* =========================
   NEWS GRID
========================= */

.news-grid-section {
    padding: 100px 0;
    background: #0a1710;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: #07110C;
    border: 1px solid #1c2f22;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: #7CB342;
    box-shadow: 0 15px 35px rgba(124,179,66,0.15);
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-img .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #102116;
    border: 1px solid #1c2f22;
    color: #7CB342;
    padding: 5px 10px;
    font-size: 11px;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 16px;
    font-family: 'Oswald';
    margin-bottom: 8px;
}

.news-content p {
    font-size: 13px;
    color: #cbd3cc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

/* =========================
   INTELLIGENCE BRIEF
========================= */

.intel-brief {
    padding: 100px 0;
    background: #07110C;
}

.brief-box {
    background: #0b1a12;
    border: 1px solid #1c2f22;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.brief-box h2 {
    font-family: 'Oswald';
    margin-bottom: 10px;
}

.brief-box p {
    color: #cbd3cc;
    margin-bottom: 30px;
}

.brief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brief-item {
    padding: 20px;
    background: #07110C;
    border: 1px solid #1c2f22;
    border-radius: 10px;
}

.brief-item h3 {
    color: #7CB342;
    font-size: 26px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .featured-card {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brief-grid {
        grid-template-columns: 1fr;
    }

    .news-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.container{
    width:90%;
    margin:auto;
    padding:40px 0;
}

.card{
    background:#0b1a12;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
}

img, video{
    width:100%;
    max-width:500px;
    border-radius:10px;
}

h1{ color:#7CB342; }

.category{
    color:#7CB342;
    font-size:12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.news-card {
    background: #0b1a12;
    border: 1px solid #1c2f22;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: #7CB342;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.news-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-media img,
.news-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-media .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #7CB342;
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}

.news-content {
    padding: 15px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.news-content p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}

.news-meta {
    margin-top: 10px;
    font-size: 12px;
    color: #7CB342;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #7CB342;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: #aaa;
}

.news-detail {
    padding: 60px 0;
    color: #fff;
}

.breaking-badge {
    display: inline-block;
    background: red;
    padding: 6px 12px;
    font-weight: bold;
    margin-bottom: 15px;
    border-radius: 6px;
}

.news-detail h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.meta {
    color: #7CB342;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.news-img,
.news-video {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.content {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    color: #7CB342;
}
