.header-arrow {
    margin-left: calc(50% - 7rem);
    width: 14rem;
    height: var(--header-arrow-height);
    background: var(--primary);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

main {
    --display: block;
    min-height: calc(100vh - var(--total-header-height));
}

iframe.page {
    width: 100%;
    height: calc(100vh - var(--header-start-height));
}

section {
    display: flex;

    flex-flow: column;
    align-items: stretch;
}

.block {
    display: flex;

    flex-flow: column;
    align-items: stretch;

    background: var(--current-background);
    color: var(--current-text);

    padding-inline: var(--gutters);
    padding-block: 5rem;
}
.block.full {
    padding-inline: 0;
}

section > .block > * {
    max-width: 120rem;
}
article > .block > * {
    max-width: 104rem;
}
article > .block > img {
    max-width: 112rem;
    border-radius: 5rem;
    margin-block: 1rem 5rem;
}
.block > * {
    margin-inline: auto;
}
.block.left-align > * {
    margin-left: 0;
}

.block.col2 {
    display: flex;
    flex-flow: row nowrap;
}
.block.col2 > * {
    flex: 0 0 50%;
    max-width: 50%;
}

.block~.arrow {
    align-self: center;
    width: 14rem;
    margin-top: -0.5px;
    height: var(--header-arrow-height);
    background: var(--current-background);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

p {
    margin: 2rem 0;
}

img {
    display: inline-block;
    font-size: 1.2rem;
    text-align: center;
    vertical-align: middle;
    position: relative;
    border: none;
}
img::before {
    content: '';
    width: 100%;
    height: calc(100% + 10px);
    background: linear-gradient(to top left, var(--primary), var(--highlight)) no-repeat;
    background: linear-gradient(to top left in oklch, var(--primary), var(--highlight)) no-repeat;
    border: none;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
}
img::after {
    content: attr(alt);

    font-size: 18px;
    color: var(--primary-comp);

    display: flex;
    position: absolute;
    z-index: 2;
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

a {
    color: var(--current-highlight);
}