/**
 * News page V3
 */

.news-meta-line {
    margin-top: auto;
    padding-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.news-story {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 22px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.news-story:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.news-story-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-story-meta time {
    color: var(--slate-500);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.news-story h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin: 0 0 8px;
}

.news-story h3 a {
    color: var(--slate-900);
    text-decoration: none;
}

.news-story h3 a:hover {
    color: var(--primary-600);
}

.news-story p {
    margin: 0 0 14px;
    color: var(--slate-600);
    font-size: 0.92rem;
    line-height: 1.65;
}

.news-story-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-600);
    text-decoration: none;
}

.news-story-link:hover {
    color: var(--primary-700);
}

.news-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.news-topic {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--slate-200);
    background: #fff;
    color: var(--slate-700);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-topic:hover {
    border-color: var(--primary-400);
    color: var(--primary-700);
    background: var(--primary-50);
}

.news-subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.news-subscribe h2 {
    font-size: 1.35rem;
    margin: 0 0 6px;
    color: var(--slate-900);
}

.news-subscribe p {
    margin: 0;
    color: var(--slate-600);
}

.news-subscribe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 800px) {
    .news-story-grid {
        grid-template-columns: 1fr;
    }
}
