/* News Page Styles */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.news-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.news-intro p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #3498db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-item h2 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-item p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    text-decoration: underline;
}

.news-newsletter {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.news-newsletter h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ecf0f1;
}

.newsletter-form input::placeholder {
    color: #95a5a6;
} 