/* ========================================
   NEWS LIST STYLES
   ======================================== */

/* Container Styles */
.news-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

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

/* Link Styles */
.news-link {
    color: var(--nature-blue);
    text-decoration: none;
}

/* News Item Card */
.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;
}

/* Hover indicator line */
.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;
}

/* Hover Effects */
.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 Header Layout */
.news-header {
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Date Styling */
.news-header time {
    min-width: 100px;
    font-size: 0.95em;
    color: var(--primary-color);
    font-weight: 600;
    padding-top: 2px;
    position: relative;
    letter-spacing: 0.5px;
}

/* Date separator line */
.news-header time::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* News Title */
.news-header h3 {
    margin: 0;
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    /* News Header Mobile */
    .news-header h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .news-header p {
        font-size: 1.2em;
    }

    .news-section-more .cta-button {
        padding: 14px 32px;
        font-size: 1em;
        letter-spacing: 0.3px;
        max-width: 300px;
    }
    
    .news-section-more .cta-button:hover {
        transform: translateY(-2px) scale(1.01);
    }
}


