.maple-highlight-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.maple-highlight-carousel {
    overflow: hidden;
    flex: 1 1 auto;
    width: 100%;
}

.maple-carousel-item-fixed-title {
    font-family: var(--title-font-family, var(--text-font-family, sans-serif));
    font-size: var(--title-font-size, var(--text-font-size));
    font-weight: var(--title-font-weight, var(--text-font-weight));
    color: var(--title-font-color, var(--text-font-color));
    text-align: center;
    margin-bottom: 15px;
    z-index: 10;
    position: relative;
}

.maple-carousel-slides-container {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
}

.maple-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: var(--flex-direction, column);
    align-items: var(--align-items, center);
    justify-content: var(--justify-content, center);
    text-decoration: none;
    color: inherit;
    z-index: 1;
}

.maple-carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.maple-carousel-slide.exit {
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}

.maple-carousel-image img {
    width: 100%;
    object-fit: contain;
}

.maple-carousel-title {
    font-family: var(--text-font-family), sans-serif;
    font-size: var(--text-font-size);
    font-weight: var(--text-font-weight);
    color: var(--text-font-color);
    text-align: center;

}


