/* News Hero */
.news-hero {
    padding: 180px 20px 80px;

    text-align: center;
}

.news-hero h1 {
    font-size: 72px;

    margin-bottom: 20px;
}

.news-hero p {
    font-size: 20px;

    color: rgba(255,255,255,0.7);
}

/* News Grid */
.news-grid {
    max-width: 1200px;

    margin: auto;

    padding: 40px 20px 120px;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

    gap: 30px;
}

/* News Card */
.news-card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    overflow: hidden;

    transition: 0.25s;

    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-5px);

    border-color: rgba(77,255,136,0.25);

    box-shadow: 0 0 30px rgba(77,255,136,0.08);
}

.news-card img {
    width: 100%;

    height: 220px;

    object-fit: cover;
}

.news-content {
    padding: 28px;
}

.news-date {
    color: rgba(255,255,255,0.45);

    font-size: 14px;
}

.news-content h2 {
    margin: 14px 0;

    font-size: 30px;
}

.news-content p {
    color: rgba(255,255,255,0.7);

    line-height: 1.7;

    margin-bottom: 24px;
}

.read-more {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border-radius: 14px;

    background: #1f7a45;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.2s;
}

.read-more:hover {
    background: #289c59;
}