.carrousel {
    display: flex;
    flex-direction: column;
    justify-items: flex-start;
    width: 150px;
    height: 320px;

    .btn-container {
        display: flex;
        width: 100%;
        height: 30px;
        position: relative;

        .arrow-left {
            position: absolute;
            right: 0;

            &::after {
                position: absolute;
                content: '';
                right: 30px;
                top: 0px;
                width: 15px;
                height: 15px;
                transform: rotate(180deg);
                background-image: url('../img/fleche\ rparts.svg');
                background-repeat: no-repeat;
            }
        }

        .arrow-right {
            position: absolute;
            right: 0;

            &::after {
                position: absolute;
                content: '';
                right: 0px;
                top: 0px;
                width: 15px;
                height: 15px;
                background-image: url('../img/fleche\ rparts.svg');
                background-repeat: no-repeat;
            }
        }
    }

    .photo-container {
        width: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .carrousel-item-text {
        padding-top: 5px;
        display: flex;
    }

    .title {
        width: 100%;
        padding: 5px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .read-more {
        width: fit-content;
        height: fit-content;
        margin: 5px;
        padding: 2.5px;
        display: flex;
        align-items: center;
        background-color: var(--color-rparts);
    }
    
    a {
    	color: var(--color-black) !important;

    }
}

.button-carrousel {
    background-color: var(--color-rparts);
    color: var(--color-black);
    width: fit-content;
    font-size: 13px;

    &.button-white {
        background-color: var(--color-white);
        color: var(--color-rparts);
    }
}