/* Styles généraux */
main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

iframe {
    width: 100%;
    max-width: 1000px;
    height: 550px;
}

.production {
    width: 100%;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
}

.descriptif {
    padding-left: 8%;
    padding-right: 8%;
    margin-top: 30px;
}

.production h2, .production h3, .production .date, .production .synopsis {
    text-align: left;
}

.production h2 {
    font-size: 28px;
    font-weight: bold;
}

.production h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

.production .date {
    font-size: 16px;
    font-weight: lighter;
    margin-bottom: 10px;
}

.production .synopsis {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
}

/* Participants */
.participants {
    align-items: center;
    display: flex;
    margin-top: 25px;
    margin-bottom: 25px;
}

.toggle-box {
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.arrow {
    font-size: 18px;
}

.toggle-content {
    display: none;
    padding: 15px;
}

/* Suggestions */
.suggestions {
    width: 100%;
    height: fit-content;
    margin-bottom: 50px;
    text-align: center;
}

.suggestions h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
}

.autrescm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.autrescm a {
    width: 100%;
    max-width: 400px;
}

.autrescm img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    main {
        margin: 0;
    }

    iframe {
        height: 400px;
    }

    .production h2 {
        font-size: 24px;
    }

    .production h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    main {
        margin: 0;
    }

    iframe {
        height: 300px;
    }

    .production h2 {
        font-size: 22px;
    }

    .production h3 {
        font-size: 18px;
    }

    .production .synopsis {
        font-size: 16px;
    }

    .toggle-box {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    iframe {
        height: 250px;
    }

    .production h2 {
        font-size: 20px;
    }

    .production h3 {
        font-size: 16px;
    }

    .production .synopsis {
        font-size: 14px;
    }

    .suggestions h3 {
        font-size: 20px;
    }
}
