.border-box {
    padding: var(--spacing-3x);
    border-radius: var(--radius-1x);
    background: var(--colors-neutral---light-0);
    width: fit-content;
    margin: var(--spacing-3x) var(--spacing-0x);
    border: 2px solid var(--colors-neutral---light-200);
}

.border-box::after {
    content: '';
    display: table;
    clear: both
}

.border-box.fluid {
    width: 100%;
}

.wysiwyg-part .border-box *:first-child,
.wysiwyg-part .border-box *:first-child *:last-child {
    margin-top: var(--spacing-0x);
}

.wysiwyg-part .border-box > :last-child,
.wysiwyg-part .border-box > :last-child *:last-child {
    margin-bottom: var(--spacing-0x);
}

@media (max-width: 768px) {
    .border-box img {
        width: 100%;
    }
}