.news-page {
    padding: 100px 5%;
    background: radial-gradient(circle at 50% 0%, #f8fafc, #e2e8f0);
    min-height: 100vh;
}

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

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Badge */
.news-badge {
    background: rgba(0, 51, 102, 0.08);
    color: #003366;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.news-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #001a33;
    font-weight: 800;
    line-height: 1.2;
}

.news-header p {
    color: #64748b;
    font-size: 1rem;
    margin-top: 10px;
}

/* GRID */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* smaller min */
    gap: 24px;
}

/* CARD */
.news-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.08);
}

/* IMAGE */
.news-image-wrapper {
    position: relative;
    height: 200px; /* slightly smaller */
}

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

/* DATE */
.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 10px;
}

/* CONTENT */
.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-location {
    font-size: 13px;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.news-highlight {
    font-size: 12px;
    padding: 8px;
}

/* BUTTON */
.news-cta {
    margin-top: auto;
    padding: 12px;
    font-size: 13px;
}

/* =========================
   TABLET
========================== */
@media (max-width: 992px) {
    .news-page {
        padding: 80px 4%;
    }

    .news-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* =========================
   MOBILE
========================== */
@media (max-width: 768px) {
    .news-page {
        padding: 60px 20px;
    }

    .news-header {
        margin-bottom: 40px;
    }

    .news-header h1 {
        font-size: 1.8rem;
    }

    .news-header p {
        font-size: 0.95rem;
    }

    .news-image-wrapper {
        height: 180px;
    }
}

/* =========================
   SMALL MOBILE
========================== */
@media (max-width: 480px) {
    .news-list {
        grid-template-columns: 1fr; /* single column */
    }

    .news-content {
        padding: 15px;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }

    .news-cta {
        font-size: 12px;
        padding: 10px;
    }
}