/* News */
.news-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    position: relative;
    color: white;
}

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

.section-title-dark {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.news-header {
    margin-bottom: 6rem;
    position: relative;
}

.news-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2rem;
    width: 60px;
    height: 4px;
    background: var(--voi-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: var(--voi-dark);
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    height: 300px;
    position: relative;
}

.news-card:hover {
    background: #3d1a7a;
}

.news-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 600;
    color: white;
}

.news-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.8;
}

.news-logos img {
    height: 24px;
    width: auto;
}

.divider {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
}

.divider::before {
    content: '×';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    font-size: 1.2rem;
}

.announcement-card {
    background: var(--voi-dark);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.announcement-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.announcement-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--voi-light);
    border-radius: 2px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.announcement-button:hover {
    background: #5726b5;
    transform: translateY(-1px);
}

@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .announcement-card {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 4rem 1.5rem;
    }

    .news-header {
        margin-bottom: 4rem;
    }

    .section-title-dark {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .announcement-card {
        padding: 2rem;
    }

    .announcement-title {
        font-size: 2rem;
    }

    .announcement-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .news-card {
        height: auto;
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 3rem 1rem;
    }

    .section-title-dark {
        font-size: 2rem;
    }

    .announcement-card {
        padding: 1.5rem;
    }

    .announcement-title {
        font-size: 1.75rem;
    }

    .announcement-text {
        font-size: 1rem;
    }

    .news-card {
        min-height: 240px;
    }
}

.news-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
    margin-top: 1rem;
}

.medium-cta {
    text-align: center;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.medium-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.medium-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--voi-light);
    border-radius: var(--radius-sm);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.medium-button:hover {
    background: #5726b5;
    transform: translateY(-1px);
}

.medium-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .news-subtitle {
        font-size: 1.1rem;
        margin-top: 0.75rem;
    }

    .medium-cta {
        padding: 3rem 0 0;
    }

    .medium-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .news-subtitle {
        font-size: 1rem;
    }

    .medium-text {
        font-size: 1rem;
    }

    .medium-button {
        padding: 0.875rem 1.5rem;
    }
}
