#newsbanner a {
    text-decoration: none;
    color: inherit;
}

#newsbanner a:hover {
    text-decoration: none;
    color: inherit;
}

#newsbanner .newsbanner-nav-btn {
    width: 40px;
    height: 40px;
}

#newsbanner .accordion-button {
    height: 76px;
    flex-shrink: 0;
    background: #004994;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
}

#newsbanner .accordion-button:not(.collapsed) {
    background: #004994;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
}

#newsbanner .accordion-button::after {
    filter: invert(1) brightness(200%);
    opacity: 0.8;
}

#newsbanner .accordion-body {
    padding: 0;
}

#newsbanner .carousel-col-item {
    flex: 0 0 auto;
    width: 349px;
    min-height: 392px;
    margin-right: 1rem;
    transition: top 0.3s ease;
    position: relative;
    top: 0;
}

#newsbanner .carousel-col-item:last-child {
    margin-right: 0;
}

#newsbanner .carousel-col-item:hover {
    top: -10px;
}

#newsbanner .carousel-card {
    background-color: #EDEDED;
}

#newsbanner .carousel-preview-img {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

#newsbanner .carousel-card-title {
    color: #004994;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
}

#newsbanner .carousel-card-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;
}

#newsbanner .carousel-col-item {
    opacity: 0;
    animation: newsbanner-fadeIn 0.8s ease forwards;
    animation-delay: 1s;
}

#newsbanner .carousel-col-item:nth-child(1) {
    animation-delay: 0.1s;
}

#newsbanner .carousel-col-item:nth-child(2) {
    animation-delay: 0.2s;
}

#newsbanner .carousel-col-item:nth-child(3) {
    animation-delay: 0.3s;
}

#newsbanner .carousel-col-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes newsbanner-fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px) translateY(0);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 400px) {
    #newsbanner .carousel-col-item {
        width: 100%;
    }
}
