/* ============ NEWS PAGE STYLES ============ */
/* Shared design vars (fonts, colors) live in style.css — this file only adds what's new */

/* Page Header (same pattern as insights.css / about.css) */
.page-header {
    padding: 10rem 2rem 5rem;
    background: var(--bg-warm);
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(110, 218, 171, 0.08), transparent);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.06), transparent);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-title .highlight {
    color: var(--mint);
    font-style: italic;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.news-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.company { background: var(--mint); }
.legend-dot.industry { background: var(--ocean); }

/* News List — horizontal blog-style rows */
.news-main {
    padding: 4rem 2rem 6rem;
    max-width: 860px;
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
    transition: opacity 0.3s ease;
}

.news-row:first-child { padding-top: 0; }
.news-row:hover { opacity: 0.85; }

.news-row-date {
    font-size: 0.8rem;
    color: var(--text-light);
    padding-top: 0.3rem;
}

.news-row-date span {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.news-row-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.news-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

.news-badge.company {
    background: rgba(110, 218, 171, 0.15);
    color: var(--mint-dark);
}

.news-badge.industry {
    background: rgba(74, 144, 217, 0.12);
    color: var(--ocean);
}

.news-row-source {
    font-size: 0.78rem;
    color: var(--text-light);
}

.news-row-source b {
    color: var(--dark);
    font-weight: 600;
}

.news-row-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.news-row-title a {
    color: inherit;
    text-decoration: none;
}

.news-row-title a:hover { color: var(--mint-dark); }

.news-row-excerpt {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
    max-width: 640px;
}

.news-row-link {
    color: var(--mint);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.news-row.industry .news-row-link { color: var(--ocean); }

.news-row-link:hover { gap: 0.6rem; }

.news-load-more {
    text-align: center;
    margin-top: 3rem;
}

.news-load-more button {
    background: transparent;
    border: 2px solid rgba(26, 26, 46, 0.15);
    color: var(--dark);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.news-load-more button:hover {
    border-color: var(--mint);
    color: var(--mint-dark);
    transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
    .news-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 2rem 0;
    }
    .news-row-date {
        display: flex;
        align-items: baseline;
        gap: 0.4rem;
        padding-top: 0;
    }
    .news-row-date span { font-size: 1rem; }
    .news-legend { gap: 1.2rem; }
}
