div.product-headline {
    max-width: var(--layoutWidth);
    margin: 0 auto;
    height: 300px;
    background-color: var(--colourPlaceholder);
    background-image: var(--imageUrl);
    background-size: cover;
    background-position: center center;
    box-shadow: var(--layoutShadow);
    display: flex;
    justify-content: flex-start;
    align-items: end;
    padding: 18px;
    h1 {
        font-size: 2.5rem;
    }
}

div.interruptor.detailed-description {
    div.container {
        max-width: 1000px;
    
        p {
            margin-top: 18px;
        }

        img {
            max-width: 500px;
            width: 100%;
            margin: 0 auto;
        }
    }
}

div.gallery, div.videos {
    max-width: var(--layoutWidth);
    margin: 36px auto;
    padding: 18px;
    
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-evenly;

    img {
        aspect-ratio: 16/9;
        min-width: 300px;
        max-width: 450px;
        width: 100%;
        object-fit: cover;
    }

    div.media {
        aspect-ratio: 16/9;
        min-width: 300px;
        max-width: 450px;
        width: 100%;

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
    }
}

div.accordion {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 36px;
    margin-top: -36px;
}