.shamanic-experiences-categories {
    grid-column: 3 / span 10;
}

.shamanic-experiences-text-wrapper {
    grid-column: 3 / span 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--s-md);
}

.shamanic-experiences-headline {
    margin: 0;
}

.shamanic-experiences-category-headline {
    text-align: center;
    text-wrap: balance;
    margin-top: 0;
}

.shamanic-experiences-category-experiences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
}

.shamanic-experiences-category:not(:last-child) {
    margin-bottom: var(--s-md);
}

.shamanic-experiences-experience {
    display: flex;
    flex-direction: column;
    padding: 1.5em 1em;
    border-style: double;
    border-width: 4px;
    border-color: var(--yellow);
}

.shamanic-experiences-experience-headline {
    text-align: center;
    margin: 0;
    margin-bottom: 0.5em;
}

.shamanic-experiences-experience-description::before {
    content: '';
    mask-image: url('../../img/quotation-mark.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    aspect-ratio: 188/150;
    height: 2em;
    background-color: #FFFFFFA3;
    margin-bottom: 1em;
    display: flex;
}

.shamanic-experiences-experience-interpretation {
    margin-top: 2em;
    border-left: 4px solid #FFFFFFA3;
    padding-left: 1em;
}

.shamanic-experiences-experience-symbol {
    height: max(3rem, 5vw);
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--yellow);
    align-self: center;
}

.shamanic-experiences-experience-separator {
    width: min(100%, 30ch);
    height: 2px;
    background-color: currentColor;
    align-self: center;
    margin-block: 1.5em;
}

@media (max-width: 1199.98px) {
    .shamanic-experiences-text-wrapper,
    .shamanic-experiences-categories {
        grid-column: 2 / span 12;
    }

    .shamanic-experiences-category-experiences {
        gap: var(--s-sm);
    }
}

@media (max-width: 767.98px) {
    .shamanic-experiences-category-experiences {
        grid-template-columns: 1fr;
    }

    .shamanic-experiences-experience-description::before {
        height: 1.35rem;
    }
}