/* Explain: Spacious one-page layout utilities for the Curate site */
.section-breathing {
    padding-top: clamp(6rem, 12vw, 10.5rem);
    padding-bottom: clamp(6rem, 12vw, 10.5rem);
}

.container-curate {
    width: min(100% - 2rem, 1180px);
    margin-inline: auto;
}

.layered-frame {
    position: relative;
}

.layered-frame::before {
    content: '';
    position: absolute;
    inset: 1.15rem -1.15rem -1.15rem 1.15rem;
    border: 1px solid rgba(226, 114, 91, 0.32);
    border-radius: var(--radius-arch);
    z-index: 0;
}

.layered-frame > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .section-breathing {
        padding-top: 4.25rem;
        padding-bottom: 4.25rem;
    }

    .layered-frame::before {
        inset: 0.75rem -0.65rem -0.65rem 0.75rem;
    }
}
