
#multiCarousel .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
}

#multiCarousel .carousel-item {
    display: block;       /* force visibility */
    flex: 0 0 300px;      /* fixed width for 3 items in 900px container */
    border: 1px solid green;
}


#carouselInner {
    display:flex;
    transition:transform 0.5s ease;
    /* border: 1px solid blue; */
}

.carousel-card {
    flex:0 0 300px;
    height:300px;
    padding: 20px;
    border: none;
    /* border: 1px solid green; */
}

.carousel-card-body {
    border: 2px solid var(--footer-bg);
    border-radius: 20px;
    word-break: break-word;
    hyphens: auto;
    background-color: var(--footer-bg);
    height: 200px;

    font-family: 'Inter Tight Light', sans-serif;
    text-align: justify;
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3); /* translucent */
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

#prevBtn { left: 0px; }
#nextBtn { right: 0px; }


.carousel-card-body p {
    font-size: 1rem;
}
