article {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 5px 5px;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

article h2 {
    overflow-wrap: break-word;
    /* text-align: center; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.5em;
    font-weight: 400;
    padding-left: 0.5ch;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

article > p {
    margin-bottom: 1em;
}

article > video,
article > img {
    display: block;
}

article > video,
article > img,
article > .bento,
article > iframe {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 5px 5px;
    overflow: hidden;
    margin-bottom: 1em;
}

.youtube {
    aspect-ratio: 16/9;
}

.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    aspect-ratio: 16/9;
}

.bento > * {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px 5px;
    object-fit: cover;
}

.bento > *:first-child {
    grid-area: 1 / 1 / 3 / 2
}

#montecarlo.bento {
    aspect-ratio: unset;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

#montecarlo.bento > *:first-child {
    grid-area: unset;
}