p a img {
    width: 12px;
    height: 12px;
    margin-top: 20px;
}

/************************** trailer **********************************/


#trailer {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    padding: 30px;
    gap: 50px;
    align-items: center;
    flex-direction: column;
    background-image: url('https://nextus.yanis-singer.com/wp-content/uploads/2025/12/exemple-image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#trailer h1 {
    margin-bottom: 150px;
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}


.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite ease;
}

@keyframes scroll-wheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}


/************************** entretiens **********************************/


#interview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

#interview .interview-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}

#interview .container img {
    margin-bottom: 15px;
}


#interview .container h3,
#interview .container p {
    width: 100%;
    height: auto;
}

#interview .container .bouton2 {
    margin-top: 20px;
}


/************************** Artcles epingles **********************************/

#articles {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
    padding-right: 10px;
}

#articles .infos {
    width: 28%;
}

#articles .infos .navigation {
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
}

#articles .infos .navigation button {
    height: 60px;
    width: 60px;
    border-radius: 15px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


#articles .infos .navigation button img {
    height: 30px;
    width: auto;
}

#articles .infos .navigation #left img {
    transform: rotate(180deg);
}


#articles .epingles {
    padding: 20px;
    width: 72%;
    height: auto;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-y;
}

.epingles:active {
    cursor: grabbing;
}


#articles .epingles .translate-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-out;

}

#articles .epingles .translate-wrapper::before {
    content: "";
    width: 300px;
    height: 450px;
    display: block;
    flex-shrink: 0;
}

#articles .epingles .container {
    width: 300px;
    height: 500px;
    transition: .3s ease-out;
    transition-delay: 0.3s;
}

#articles .epingles .container p{
height: 100% !important;
}

.container.article:hover {
    transform: scale(1);
    box-shadow: none;
    transition: none;
}

.container.article.active {
    transform: scale(1.03);
    box-shadow: -2px -2px 8px #77B6D6, 2px 2px 8px #71C5B2;
    transition: .3s ease-out;
    transition-delay: 0.6s;
}

.container.article {
    opacity: 0;
    filter: blur(5px);
}

.container.article.visible {
    opacity: 1;
    filter: blur(0);
}


#articles .epingles .container .post-thumb {
    margin-bottom: 15px;
}

#articles .epingles .container .line {
    background-color: rgba(255, 255, 255, 0.623);
    height: 0.2px;
    width: 100%;
}


#articles .epingles .container h3,
#articles .epingles .container p {
    width: 100%;
    height: auto;
}

#articles .epingles .container .bouton2 {
    margin-top: 20px;
}