.empty-state { text-align: center; padding: 60px; background: var(--bg-panel); border: 1px dashed var(--border); border-radius: 16px; color: var(--text-muted); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; transition: 0.3s; display: flex; flex-direction: column; overflow: hidden; text-decoration: none;}

/* Tento kód zaručí, že 1. novinka sa roztiahne */
.news-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; }

.news-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.card-img-wrapper { width: 100%; height: 220px; overflow: hidden; background-color: #18181b;}
.news-card.featured .card-img-wrapper { height: 100%; min-height: 380px; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .card-img { transform: scale(1.05); }
.card-content { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.news-card.featured .card-content { padding: 40px; }
.news-meta { font-size: 12px; color: var(--accent); font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.news-meta span { color: var(--text-muted); margin-left: 10px; font-weight: normal; text-transform: none;}
.news-title { font-size: 22px; font-weight: 800; color: white; margin-bottom: 15px; line-height: 1.3; transition: 0.2s;}
.news-card.featured .news-title { font-size: 36px; margin-bottom: 20px; }
.news-card:hover .news-title { color: var(--accent); }
.news-text { color: var(--text-muted); font-size: 15px; margin-bottom: 25px; line-height: 1.6; flex: 1; }
.news-btn { display: inline-flex; align-items: center; gap: 8px; color: white; font-weight: 600; font-size: 14px; padding: 10px 20px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); width: fit-content; }
.news-card:hover .news-btn { background: var(--accent); border-color: var(--accent); }

@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } .news-card.featured { grid-column: span 1; grid-template-columns: 1fr; } }