/* FNS — Haberler sayfası */

/* Öne çıkan haber */
.news-featured {
    padding: var(--section-py) 0;
    background: #fff;
}

.news-spotlight {
    max-width: 760px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--brand-border);
}

.news-spotlight__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--brand-gray-light);
}

.news-spotlight__meta time {
    font-weight: 500;
}

.news-spotlight__source {
    position: relative;
    padding-left: 1rem;
}

.news-spotlight__source::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-border);
    transform: translateY(-50%);
}

.news-spotlight__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-spotlight__excerpt {
    font-size: 1.05rem;
    color: var(--brand-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Badge */
.news-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1.4;
}

.news-badge--new {
    background: var(--brand-red);
    color: #fff;
}

.news-badge--ongoing {
    background: #fff;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
}

.news-badge--done {
    background: var(--brand-bg-alt);
    color: var(--brand-gray);
    border: 1px solid var(--brand-border);
}

/* Liste */
.news-list {
    display: flex;
    flex-direction: column;
}

.news-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--brand-border);
}

.news-row:first-child {
    border-top: 1px solid var(--brand-border);
}

.news-row__date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-row__date time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-black);
}

.news-row__title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.news-row__title a {
    color: var(--brand-black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-row__title a:hover {
    color: var(--brand-red);
}

.news-row__excerpt {
    font-size: 0.9rem;
    color: var(--brand-gray);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.news-row__source {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-gray-light);
}

.news-row__action {
    padding-top: 0.15rem;
    white-space: nowrap;
}

.news-row__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand-red);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.news-row__link:hover {
    gap: 0.65rem;
    color: var(--brand-red-dark);
}

@media (max-width: 767.98px) {
    .news-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }

    .news-row__date {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .news-row__action {
        padding-top: 0;
    }

    .news-spotlight__title {
        font-size: 1.35rem;
    }
}
