.news-banner {
    background: #e63946;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.news-banner a {
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
}

/* HERO */
.news-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    color: #fff;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
}

.meta {
    font-size: 14px;
    opacity: 0.9;
}

/* LAYOUT */
.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* ARTICLE */
.news-article {
    font-size: 16px;
    line-height: 1.8;
}

.lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* SIDEBAR */
.news-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.download-btn {
    display: block;
    background: #1d3557;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
}

.share-grid {
    display: flex;
    gap: 10px;
}

.share-grid a {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #457b9d;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}