/* ============= News Grid ============= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.news-image {
    width: 100%;
    height: 180px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-placeholder {
    font-size: 48px;
    opacity: 0.3;
}
.news-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-category {
    display: inline-block;
    font-size: 12px;
    color: #1976d2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.news-body h3 {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: #1a1a2e;
    line-height: 1.4;
}
.news-body p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}
.news-meta {
    font-size: 12px;
    color: #9ca3af;
}
.news-meta span {
    margin-right: 4px;
}

/* Article detail */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}
.article-body p {
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
}
