/* News Section Styles */
.news-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
    position: relative;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

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

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    text-align: center;
}

.news-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #b0b0b0;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
}

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

.news-item {
    padding: 30px;
    background: rgba(25, 25, 25, 0.6);
    border-left: 4px solid #8b0000;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.news-item:hover {
    transform: translateY(-5px);
    background: rgba(35, 35, 35, 0.8);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2);
}

.news-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #8b0000;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.news-item-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.news-content {
    font-family: 'Inter', sans-serif;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 1px solid #8b0000;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-link:hover {
    background: #8b0000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .news-title {
        font-size: 2rem;
    }
    
    .news-item {
        padding: 20px;
    }
}
