/* Overealm Product Sections — all selectors intentionally namespaced. */
.overealm-product-sections-wrap {
    --overealm-product-sections-ink: #111111;
    --overealm-product-sections-paper: #ffffff;
    --overealm-product-sections-ivory: #f7f3ee;
    --overealm-product-sections-vermilion: #c43a31;
    --overealm-product-sections-border: rgba(17, 17, 17, 0.12);
    --overealm-product-sections-max-width: 1440px;
    width: 100%;
    margin: 44px auto 0;
}

.overealm-product-sections-wrap *,
.overealm-product-sections-wrap *::before,
.overealm-product-sections-wrap *::after {
    box-sizing: border-box;
}

.overealm-product-sections-section {
    width: 100%;
    margin: 0;
    padding: clamp(34px, 5vw, 82px) 24px;
    border-top: 1px solid var(--overealm-product-sections-border);
}

.overealm-product-sections-section:first-child {
    border-top: 0;
}

.overealm-product-sections-inner {
    width: min(100%, var(--overealm-product-sections-max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(32px, 6vw, 92px);
}

.overealm-product-sections-theme-light {
    background: var(--overealm-product-sections-paper);
    color: var(--overealm-product-sections-ink);
}

.overealm-product-sections-theme-ivory {
    background: var(--overealm-product-sections-ivory);
    color: var(--overealm-product-sections-ink);
}

.overealm-product-sections-theme-dark {
    background: #101010;
    color: #ffffff;
    --overealm-product-sections-border: rgba(255,255,255,0.15);
}

.overealm-product-sections-media {
    min-width: 0;
}

.overealm-product-sections-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.overealm-product-sections-copy {
    max-width: 620px;
}

.overealm-product-sections-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--overealm-product-sections-vermilion);
}

.overealm-product-sections-title {
    margin: 0 0 18px !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 3.2vw, 54px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em;
    font-weight: 500 !important;
    color: currentColor !important;
}

.overealm-product-sections-content,
.overealm-product-sections-content p {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.75;
    color: currentColor;
}

.overealm-product-sections-content p:last-child {
    margin-bottom: 0;
}

.overealm-product-sections-layout-image-right .overealm-product-sections-media {
    order: 2;
}

.overealm-product-sections-layout-image-right .overealm-product-sections-copy {
    order: 1;
    justify-self: end;
}

.overealm-product-sections-layout-image-full .overealm-product-sections-inner {
    grid-template-columns: 1fr;
    gap: 28px;
}

.overealm-product-sections-layout-image-full .overealm-product-sections-copy {
    max-width: 840px;
}

@media (max-width: 900px) {
    .overealm-product-sections-wrap {
        margin-top: 28px;
    }

    .overealm-product-sections-section {
        padding: 34px 18px;
    }

    .overealm-product-sections-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .overealm-product-sections-layout-image-right .overealm-product-sections-media,
    .overealm-product-sections-layout-image-right .overealm-product-sections-copy {
        order: initial;
    }

    .overealm-product-sections-layout-image-right .overealm-product-sections-copy {
        justify-self: start;
    }
}
