html,
body.alma-content-page {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #111;
    color: #ececec;

    --alma-content-blur: 28px;
    --alma-content-scrim: 0.72;
    --alma-content-panel: 0.55;
    --alma-content-font-size: 18px;
    --alma-content-title-size: 52px;

    font-family: "Litos Script Regular", Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: var(--alma-content-font-size);
    line-height: 1.65;
}

.alma-content-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.alma-content-bg__image {
    position: absolute;
    inset: -32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(var(--alma-content-blur));
    transform: scale(1.08);
}

.alma-content-bg__scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, var(--alma-content-scrim));
}

.alma-content {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    padding: 96px 28px 64px;
}

.alma-content__article {
    margin: 0;
    padding: 36px 36px;
    border-radius: 8px;
    background: rgba(12, 12, 12, var(--alma-content-panel));
    backdrop-filter: blur(6px);
}

.alma-content__back {
    margin: 0 0 24px;
}

.alma-content__back a {
    color: #8ec5ff;
    text-decoration: none;
    font-size: 16px;
}

.alma-content__back a:hover,
.alma-content__back a:focus {
    text-decoration: underline;
}

.alma-content__header {
    margin-bottom: 28px;
}

.alma-content__title {
    margin: 0;
    color: #fff;
    font-family: "Litos Script Bold", "Litos Script Regular", Georgia, "Times New Roman", serif;
    font-size: var(--alma-content-title-size);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.alma-content__body {
    color: rgba(255, 255, 255, 0.88);
}

.alma-content__body > :first-child {
    margin-top: 0;
}

.alma-content__body > :last-child {
    margin-bottom: 0;
}

.alma-content__body p,
.alma-content__body ul,
.alma-content__body ol,
.alma-content__body blockquote,
.alma-content__body pre {
    margin: 0 0 1.2em;
}

.alma-content__body h2,
.alma-content__body h3,
.alma-content__body h4 {
    margin: 1.6em 0 0.6em;
    color: #fff;
    font-family: "Litos Script Bold", "Litos Script Regular", Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.25;
}

.alma-content__body h2 {
    font-size: 34px;
}

.alma-content__body h3 {
    font-size: 28px;
}

.alma-content__body h4 {
    font-size: 24px;
}

.alma-content__body a {
    color: #8ec5ff;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.alma-content__body a:hover,
.alma-content__body a:focus {
    color: #b8dcff;
}

.alma-content__body img,
.alma-content__body video,
.alma-content__body iframe {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
    border-radius: 4px;
}

.alma-content__body img {
    cursor: zoom-in;
}

.alma-content__body .alma-compare img {
    cursor: default;
    max-width: none;
    height: auto;
    margin: 0;
    border-radius: 0;
}

.alma-content__body .alma-compare__image--before {
    height: 100%;
}

.alma-content__body figure.wp-block-image {
    margin: 1.5em 0;
}

.alma-content__body figure.wp-block-image img {
    margin: 0;
    width: 100%;
}

.alma-content__body blockquote {
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
}

.alma-content__body ul,
.alma-content__body ol {
    padding-left: 1.4em;
}

.alma-content__body li {
    margin-bottom: 0.35em;
}

.alma-content__body hr {
    margin: 2em 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.alma-content__body code {
    padding: 0.1em 0.35em;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 0.92em;
}

.alma-content__body pre {
    overflow-x: auto;
    padding: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.alma-content__body pre code {
    padding: 0;
    background: none;
}

.alma-spoiler {
    cursor: pointer;
    border-radius: 4px;
}

.alma-spoiler__content {
    transition:
        color 0.15s ease,
        background-color 0.15s ease;
}

.alma-spoiler:not(.is-revealed) .alma-spoiler__content {
    color: transparent;
    background-color: rgba(255, 255, 255, 0.16);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.alma-spoiler.is-revealed .alma-spoiler__content {
    color: inherit;
    background: none;
}

.alma-spoiler:focus-visible {
    outline: 2px solid #8ec5ff;
    outline-offset: 2px;
}

.alma-entries-index__group {
    margin: 0 0 2em;
}

.alma-entries-index__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alma-entries-index__list li {
    margin: 0 0 0.85em;
}

.alma-entries-index__teaser {
    display: block;
    margin-top: 0.15em;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92em;
}

@media (max-width: 768px) {

    .alma-content {
        padding-top: 84px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .alma-content__article {
        padding: 24px 16px;
    }
}
