body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

#wrapper {
    align-items: center;
    justify-content: center;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column-reverse;
    max-width: var(--page-width-2);
    width: 100%;
    padding: 20px;
}

article {
    flex-basis: 100%;
    width: 100%;
    margin: 0;
}

#description {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    width: 100%;
    height: auto;
    margin: 20px 0;
}

#description h1, 
article h1 {
    font-size: 1.5rem;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: white;
}

#description h5,
article h5 {
    font-size: 1rem;
    font-weight: 300;
    padding: 0;
    margin: 0;
    color: white;
}

#description span a {
    color: white;
    opacity: var(--opacity-1);
}
#description span a:hover {
    opacity: 1;
}

#description span b {
    font-weight: 400;
}

article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    align-self: start;
    position: sticky;
}

article section {
    flex: 1;
    grid-column: span 1;
    background-color: black;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

article section.full {
    grid-column: 1 / -1;
    height: auto;
    width: 100%;
}

article section.laurel {
    grid-row: 3;
    height: 150px;
    padding: 10px 0 20px 0;
}

article section.laurel img {
    object-fit: contain;
}


article section a {
    opacity: 1;
}

article section:hover a {
    opacity: var(--opacity-2);
}

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

article section.iframe {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 50vw;
    max-height: 498px;
}

article section.iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#description h3,
#description h5 {
    font-size: 1rem;
    font-weight: 300;
    padding: 0;
    margin: 0;
    color: white;
    font-style: italic;
    opacity: var(--opacity-1);
}

#description h5 {
    margin-bottom: 10px;
}

#description h3 {
    font-weight: 400;
}

#description p {
    margin: 0;
    padding: 0;
}

#description a {
    color: black !important;
    opacity: var(--opacity-1);
}
#description a:hover {
    opacity: 1;
}

#description b,
#description strong {
    font-weight: 400;
}

#description ol,
#description ul {
    padding-inline-start: 18px !important;
    margin: 0;
}

#description ul {
    list-style-type: none;
}

#description ul li {
    position: relative;
    display: block;
    margin: 4px 0;
    word-wrap: break-word;
}


.iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}
.iframe.pdg {
    padding-top: 53%;
}

.iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;

}


@media screen and (max-width: 900px) {
    #description {
        margin: 0;
    }

    article section.laurel {
        display: flex;
        justify-content: center;
        height: 100%;
        padding: 0 0 10px 0;
    }

    article section.laurel img {
        width: 75%;
    }
}

@media screen and (max-width: 750px) {
    main {
        flex-direction: column;
        padding: 10px 20px;
    }

    article {
        margin-bottom: 20px;
    }

    article section.laurel img {
        width: 85%;
    }
}

@media screen and (max-width: 550px) {
    main {
        padding: 7px 15px;
    }

    article {
        grid-gap: 15px;
    }
}