article {
    white-space: pre-line;
}
article.full-article {
    gap: 1;
}
p + ul {
    margin-top: -2rem;
}
article h3,
h2 {
    font-size: 2rem;
    margin: 1rem 0 -1rem 0;
    font-weight: 500;
    line-height: 1.2;
}
article ul {
    line-height: 1;
    list-style-type: circle;
}
article ol {
    line-height: 1;
    list-style-type: decimal;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}