.vertical-spacer {
    width: 100%;
    height: 20px;
}


.adjacent-double {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.adjacent-double > div {
    width: var(--left-width, 48%);
}

.adjacent-double > div:last-child {
    width: var(--right-width, 48%);
}

.adjacent-double pre {
    margin-top: 0;
}

.adjacent-double p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .adjacent-double > div {
        width: 100%;
    }
}


.adjacent-triple {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.adjacent-triple > div {
    width: 30%;
}

.adjacent-triple pre {
    margin-top: 0;
}

.adjacent-triple p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.adjacent-triple .center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adjacent-triple .center-content p {
  margin: 0;
}

@media (max-width: 768px) {
    .adjacent-triple > div {
        width: 100%;
    }
}

