.news-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

.news-header-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.news-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.news-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

.news-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-banner {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    padding: 16px;
    margin: 28px 0;
    border-radius: 8px;
}

.news-banner strong {
    display: block;
    margin-bottom: 6px;
}

.news-banner a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    text-decoration: none;
}

.news-meta-author {
    margin-top: 40px;
    font-size: 14px;
    color: #6b7280;
}
.news-meta-author a {
    font-weight: 600;
    color: #111827;
    text-decoration: none;
}
.news-meta-author a:hover {
    text-decoration: underline;
}
.news-meta-author .deal-author-role {
    color: #6b7280;
}

.news-footer-row {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

/* LEFT: NEXT */
.news-next {
    flex: 1;
}

.news-next strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.news-next p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.news-next a {
    font-weight: 600;
    text-decoration: none;
}

/* RIGHT: AUTHOR */
.news-meta-author {
    flex: 0 0 240px;
    font-size: 13px;
    color: #6b7280;
}

/* MOBILE */
@media (max-width: 640px) {
    .news-footer-row {
        flex-direction: column;
        gap: 20px;
    }

    .news-meta-author {
        flex: unset;
    }
}
