.news-carousel-wrapper {
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

/* Navigation Styles */
.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.nav-btn {
    background: #004a99;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #002d5d;
}

.carousel-viewport {
    height: 420px; /* Clips to 3 items */
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 12px;
}

.news-item {
    height: 120px;
    background: white;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #004a99;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-left-color: #007bff;
    z-index: 10;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.news-media {
    color: #003366;
    font-weight: 700;
}

.news-headline {
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-link {
    font-size: 12px;
    color: #004a99;
    font-weight: bold;
    text-decoration: none;
}
.color-1 {border-left: 4px solid #FFBE00; }
