/* News page */
.page-news .panorama-section {
    padding-top: 68px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.page-news .panorama-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

.page-news .panorama-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
}

.page-news .hero-logo-section {
    background: var(--white);
    padding: 40px 24px 30px;
    text-align: center;
}

.page-news .btn-cta-header {
    background: var(--primary);
}

.page-news .btn-cta-header:hover {
    background: var(--primary-dark);
}

.page-news .sidebar-cta button {
    background: var(--primary);
}

.page-news .sidebar-cta button:hover {
    background: var(--primary-dark);
}

.news-page-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 0;
}

.news-page-intro .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.news-page-intro .breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.news-page-intro .breadcrumb a:hover {
    color: var(--primary);
}

.news-page-intro .breadcrumb svg {
    width: 14px;
    height: 14px;
}

.news-section {
    padding: 48px 24px 80px;
    background: var(--white);
}

.news-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.news-section .section-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}

.news-section .section-header .section-label::before,
.news-section .section-header .section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gray-light);
}

.news-section .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.news-section .section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.news-section .news-grid {
    gap: 24px;
}

.news-card-body .news-company {
    color: var(--gray);
}

.news-card-badge--suppliers {
    background: var(--primary);
}

.news-card-badge--customers {
    background: #1565C0;
}

.news-card-badge--operators {
    background: #2E7D32;
}

.news-card-badge--investors {
    background: #F57C00;
}

.news-card-badge--platform {
    background: var(--dark);
}

.news-card--customers .news-company {
    color: #1565C0;
}

.news-card--operators .news-company {
    color: #2E7D32;
}

.news-card--investors .news-company {
    color: #F57C00;
}

.news-card--suppliers .news-company {
    color: var(--primary);
}

@media (max-width: 768px) {
    .news-section .section-header h2 {
        font-size: 28px;
    }

}

@media (max-width: 480px) {
    .news-page-intro {
        padding-top: 24px;
    }
}
