.news-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 45%, #0891b2 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.news-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 45%);
    pointer-events: none;
}
.news-hero-inner { position: relative; z-index: 1; }

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.news-filter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    transition: all 0.15s;
}
.news-filter:hover { border-color: #93c5fd; color: #1d4ed8; }
.news-filter.active {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.news-cat {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}
.news-cat--news    { background: #dbeafe; color: #1d4ed8; }
.news-cat--guide   { background: #cffafe; color: #0e7490; }
.news-cat--jobs    { background: #d1fae5; color: #047857; }
.news-cat--events  { background: #ede9fe; color: #6d28d9; }
.news-cat--company { background: #fef3c7; color: #b45309; }

.news-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.news-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
@media (min-width: 768px) {
    .news-featured { grid-template-columns: 1.1fr 1fr; }
}
.news-featured-media {
    min-height: 14rem;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}
@media (min-width: 768px) {
    .news-featured-media { min-height: 100%; }
}
.news-featured-body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}
.news-card-media {
    height: 10rem;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
}
.news-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-card-title { font-size: 1.0625rem; font-weight: 700; color: #0f172a; line-height: 1.35; margin: 0.5rem 0; }
.news-card-excerpt { font-size: 0.875rem; color: #64748b; line-height: 1.5; flex: 1; }
.news-card-meta { font-size: 0.75rem; color: #94a3b8; margin-top: auto; padding-top: 1rem; }
.news-card-link { font-size: 0.8125rem; font-weight: 600; color: #2563eb; margin-top: 0.75rem; }

.news-article-hero {
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 14rem;
    background-size: cover;
    background-position: center;
    position: relative;
}
.news-article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.55), transparent 55%);
}
.news-article-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 1;
    color: #fff;
}

.news-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e2e8f0; }
