/* News Content */
.news-content {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.coming-soon {
    text-align: center;
    max-width: 600px;
}

.news-title {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.news-message {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-content {
        padding: 3rem 1rem;
    }

    .news-title {
        font-size: 2.5rem;
    }

    .news-message {
        font-size: 1.1rem;
    }
}
