/**
 * Path: nplsportspro/assets/css/templates/match/tabs/news.css
 * Description: Fetches WP Posts related to current match teams.
 */
/* News Tab Professional Styling */
.nplsp-news-tab-wrapper { padding: 20px 0; }
.news-tab-header { font-size: 22px; font-weight: 800; border-left: 5px solid #ff0000; padding-left: 15px; margin-bottom: 25px; color: #1e293b; }

.nplsp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.nplsp-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}
.nplsp-news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }

.news-thumbnail img { width: 100%; height: 180px; object-fit: cover; }
.news-placeholder { width: 100%; height: 180px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-weight: 900; color: #cbd5e1; }

.news-content { padding: 18px; }
.news-date { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.news-title { font-size: 16px; font-weight: 800; margin: 8px 0; line-height: 1.4; }
.news-title a { color: #1e293b; text-decoration: none; }
.news-title a:hover { color: #ff0000; }

.news-excerpt { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 15px; }
.news-read-more { font-size: 12px; font-weight: 700; color: #ff0000; text-decoration: none; }

/* Responsive Grid for 7 Devices */
@media (max-width: 1024px) { .nplsp-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nplsp-news-grid { grid-template-columns: 1fr; } .news-tab-header { font-size: 18px; } }