﻿
.liste-vignettes-larges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.liste-vignettes-larges__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .liste-vignettes-larges__header h2 {
        font-size: 24px;
        font-weight: 500;
        color: var(--blanc);
    }

    .liste-vignettes-larges__header p {
        font-size: 16px;
        font-weight: 400;
        color: var(--blanc);
    }

.liste-vignettes-larges__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.liste-vignettes-larges__cta {
    background: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 48px 10px 24px;
    border-radius: 50px;
    width: max-content;
    height: 40px;
    overflow: hidden;
    align-self: flex-end;
    position: relative;
}

    .liste-vignettes-larges__cta svg {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%)
    }

.liste-vignettes-larges__cta__libelle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.liste-vignettes-larges__liste {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.lvl__vignette {
    flex: 1;
    height: 300px;
    display: flex;
    border-radius: 10px;
    background-image: url('https://www.cybertek.fr/images_produits/cybertek/images-landing/bts-2025/large-vignette-bg.jpg');
    background-position: center;
    background-size: cover;
    overflow: hidden;
    min-width: 365px;
    max-width: 400px;
}

.lvl__vignette__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    background-image: url('https://www.cybertek.fr/images_produits/cybertek/images-landing/bts-2025/large-vignette-bg-content.png');
    background-position: center;
    background-size: cover;
    width: 50%;
    padding: 28px 18px 28px 36px;
}

.lvl__vignette__image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

    .lvl__vignette__image img {
        height: 200px;
        object-fit: contain
    }

.lvl__vignette__libelle {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.lvl-categorie {
    color: #0073FF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

    .lvl-categorie::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translate(0%, -50%);
        background-image: url('https://www.cybertek.fr/images_produits/cybertek/images-landing/bts-2025/bg-categorie.png');
        background-position: center;
        background-size: cover;
        height: 8px;
        width: 80px;
        opacity: 0.8;
    }

.lvl-libelle {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vignette__caracs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .vignette__caracs span {
        color: #111;
        font-size: 14px;
        font-weight: 600;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.lvl__vignette__prix {
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.lvl-prix {
    color: #111;
    font-size: 32px;
    font-weight: 600;
}

.lvl-remise {
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    background: #C91D1D;
    padding: 1px 14px;
}

.lvl-prixBarre {
    color: #6E6969;
    font-size: 15px;
    font-weight: 600;
    position: relative
}

    .lvl-prixBarre::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%) rotate(352deg);
        background: #C91D1D;
        width: 100%;
        height: 2px;
    }

@media (max-width: 768px) {
    .liste-vignettes-larges__content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .liste-vignettes-larges__cta {
        align-self: initial
    }
}
