.vof-news {
    padding: 120px 0;
    background: var(--bg);
}

.vof-news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.vof-news__header-text { max-width: 560px; }

.vof-news__header h2 { margin-bottom: 0; }

.vof-news__header .btn-secondary {
    padding: 12px 28px;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.vof-news__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
}

.vof-news__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.vof-news__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.vof-news__img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-alt);
}

.vof-news__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vof-news__card:hover .vof-news__img img {
    transform: scale(1.04);
}

.vof-news__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
}

.vof-news__body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vof-news__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.vof-news__date {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.vof-news__tag {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.vof-news__body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--ink);
}

.vof-news__body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.vof-news__body h3 a:hover { color: var(--accent); }

.vof-news__body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.vof-news__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.vof-news__link:hover { gap: 8px; }

.vof-news__empty {
    color: var(--muted);
    font-size: 0.875rem;
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .vof-news__grid { grid-template-columns: 1fr 1fr; }
    .vof-news__card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .vof-news { padding: 80px 0; }
    .vof-news__header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .vof-news__grid { grid-template-columns: 1fr; }
    .vof-news__card:first-child { grid-column: auto; }
}
