.news-container {
    padding: 20px;
    max-width: 95%;
    margin: 0 auto;
    color: var(--secondary-color);
}

.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: #fff;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--nature-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.news-item:hover::before {
    opacity: 1;
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    font-size: 0.9rem;
    color: #666;
    background-color: #f2f2f2;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
}

.news-title {
    text-decoration: none;
    color: var(--nature-blue);
    transition: color 0.3s ease;
}

.news-title a {
    text-decoration: none;
    color: var(--nature-blue);
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--vibrant-orange);
}

.news-title::after {
    background: none !important;
    margin: 0 !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .news-title {
        text-align: left !important;
    }

    .news-title a {
        font-size: 1rem;
    }
}

.read-more {
    display: inline-block;
    font-weight: bold;
    color: var(--vibrant-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--nature-green);
}


.news-article-body p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* News Article Page */
.news-article-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.news-article-header {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.news-article-header .news-date {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.back-to-news {
    text-align: center;
    margin-top: 2rem;
}

.back-to-news a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--nature-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}