.news-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-date {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.news-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    background: #f1f5f9;
    color: #475569;
}

.news-tag.highlight {
    background: #4a3f73;
    color: #fff;
}

.news-title {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: #324f8b;
    line-height: 1.4;
    font-weight: bold;
}

.news-content {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
}

.news-content a {
    color: #3868c9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.news-content a:hover {
    color: #7a64d1;
    border-bottom: 1px solid #7a64d1;
}

@media screen and (max-width: 767px) {
    .news-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.25rem;
    }
    
    .news-header {
        gap: 10px;
    }
    
    .news-content {
        font-size: 0.95rem;
    }
}
