.carousel-container {
    display: flex;
    align-items: center;
    font-size: var(--lx-text-01);
    font-weight: 500;
    color: #ffffe6;
    background-color: transparent;
    width: 80%;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--lx-gap);
    margin-left: 10px;

    .carousel {
        width: 100%;
        position: relative;
        overflow: hidden;

        .item {
            opacity: 0;
            width: 100%;
            height: 100%;
            display: none;
            transition: opacity 0.5s ease-in-out;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                position: relative;
            }

            .caption {
                width: 100%;
                padding: var(--lx-space-01);
                position: absolute;
                bottom: 0;
                text-transform: uppercase;
                text-align: center;
                font-size: 12px;
                background-color: rgba(0, 0, 0, 0.5);
            }

            &.active {
                opacity: 1;
                display: block;
            }
        }
    }

    .btn {
        padding: 8px 15px 8px 15px;
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        outline: none;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 25px;
        font-weight: 900;
        color: #007483;
        background-color: transparent;
        transition: transform 0.2s ease-in-out;

        &:active,
        &:focus {
            transform: translateY(-50%) scale(0.9);
        }

        &:hover {
            transform: translateY(-50%) scale(0.96);
            color: white;
            background-color: #007483;
        }
    }

    .prev {
        left: -20%;
    }

    .next {
        right: -20%;
    }

    .dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            background-color: #a7d9c4;
            transition: background-color 0.2s ease;

            &.active,
            &:hover {
                background-color: #002838;
            }
        }
    }
}
