.news-hero {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 16px;
margin-bottom: 20px;
}

.news-hero h1 {
margin: 0;
font-size: 28px;
}

.news-grid {
display: grid;
gap: 18px;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-card {
display: flex;
flex-direction: column;
gap: 12px;
background: #fff;
border: 1px solid var(--border-color);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
text-decoration: none;
color: inherit;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
transform: translateY(-2px);
box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.news-card img {
width: 100%;
height: 160px;
object-fit: cover;
background: #f1f5f9;
}

.news-card-body {
display: flex;
flex-direction: column;
gap: 8px;
padding: 16px 18px 20px;
}

.news-card-body h2 {
margin: 0;
font-size: 18px;
line-height: 1.3;
}

.news-card-body p {
margin: 0;
color: var(--text-secondary);
font-size: 14px;
}

.news-meta {
color: #64748b;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.04em;
}

.news-content {
font-size: 16px;
line-height: 1.7;
color: var(--text-primary);
}

.news-content img {
max-width: 100%;
height: auto;
border-radius: 12px;
margin: 16px 0;
}

.news-content table {
width: 100%;
border-collapse: collapse;
margin: 16px 0;
}

.news-content th,
.news-content td {
border: 1px solid #e2e8f0;
padding: 10px 12px;
text-align: left;
}

.news-content h2,
.news-content h3 {
margin-top: 22px;
}

.news-back {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text-secondary);
text-decoration: none;
font-weight: 600;
margin-bottom: 12px;
}

.news-empty {
padding: 18px;
border: 1px dashed var(--border-color);
border-radius: 14px;
color: var(--text-secondary);
background: #f8fafc;
}
