/* Container */
.human-news {
    max-width: 100%;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Banner */
.news-banner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
}

.news-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.news-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-banner h2 {
    margin: 0 0 12px 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.news-banner h2 a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-banner h2 a:hover {
    opacity: 0.9;
}

.banner-date {
    font-size: 14px;
    opacity: 0.95;
}

/* List Items */
.news-list-item {
    padding: 16px;
    padding-left: 16px;
    border-left: 4px solid #22c55e;
    background: #f0fdf4;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.news-list-item:hover {
    background: #e6fddc;
    border-left-color: #16a34a;
    transform: translateX(4px);
}

.list-item-content {
    width: 100%;
}

.list-item-content h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    line-height: 1.4;
}

.list-item-content h4 a {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.list-item-content h4 a:hover {
    color: #22c55e;
    text-decoration: underline;
}

.list-item-date {
    font-size: 13px;
    color: #666;
}