.news-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

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

.news-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-family: "Righteous", cursive;
}

.news-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.news-image {
    flex: 0 0 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    padding: 30px;
}

.news-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .news-container {
        padding: 0 15px;
        margin-top: 60px;
    }

    .news-header h1 {
        font-size: 2rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 200px;
    }

    .news-content {
        padding: 15px;
    }

    .news-content h2 {
        font-size: 1.2rem;
    }
} 