/* ============================================================
   DOLL FINDS HUB — PHOTOSET
   Clean isolated photoset system
   ============================================================ */

body.dfh-pset-active {
    overflow-x: clip;
}

/* ---------- CINEMATIC LAYOUT ---------- */

.dfh-pset-layout {
    position: relative;

    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 0 !important;
    gap: 0 !important;

    align-items: start;

    overflow: visible !important;
}


/* MAIN ARTICLE */

.dfh-pset-layout > .single-entry {
    min-width: 0;
    width: 100%;
}


/* SIDEBAR CLOSED */

.dfh-pset-layout > #dfh-site-sidebar {
    width: 320px;
    min-width: 320px;
    max-width: 320px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* SIDEBAR OPEN */

.dfh-pset-layout.dfh-pset-sidebar-open {
    grid-template-columns:
        minmax(0, 1fr)
        320px !important;

    gap: 22px !important;
}


.dfh-pset-layout.dfh-pset-sidebar-open
> #dfh-site-sidebar {

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ---------- SIDEBAR BUTTON ---------- */
/* Not sticky/fixed. It belongs to the page and scrolls away. */

.dfh-pset-sidebar-toggle {
    position: absolute;
    top: 18px;
    right: 0;
    z-index: 30;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: max-content;
    height: 38px;
    margin: 0;
    padding: 0 13px;

    border: 1px solid var(--color-border, #343837);
    border-radius: 0;
    background: rgba(10,12,12,.94);
    color: var(--color-ink-bright, #f1efe8);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;

    transition:
        right .5s cubic-bezier(.22,.61,.36,1),
        color .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.dfh-pset-layout.dfh-pset-sidebar-open > .dfh-pset-sidebar-toggle {
    right: 342px;
}

.dfh-pset-sidebar-toggle:hover,
.dfh-pset-sidebar-toggle:focus-visible {
    color: #fff;
    border-color: rgba(241,239,232,.65);
    background: rgba(18,20,20,.98);
}

.dfh-pset-sidebar-toggle:focus-visible {
    outline: 1px solid var(--color-ink-bright,#f1efe8);
    outline-offset: 3px;
}

.dfh-pset-sidebar-toggle__icon {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

/* Keep title/meta clear of the button. */
.dfh-pset-layout > .single-entry .single-entry__header {
    padding-right: 132px;
}

/* ---------- PHOTOSET ROOT ---------- */

.dfh-pset {
    --pset-line: var(--color-border,#343837);
    --pset-text: var(--color-ink,#d9d7d0);
    --pset-bright: var(--color-ink-bright,#f1efe8);
    --pset-muted: var(--color-muted,#999b98);

    width: 100%;
    min-width: 0;
    color: var(--pset-text);
}

.dfh-pset *,
.dfh-pset *::before,
.dfh-pset *::after {
    box-sizing: border-box;
}

body.dfh-pset-active .single-entry__content {
    max-width: none;
}

body.dfh-pset-active .single-entry__content > .dfh-pset {
    margin-top: 0;
}

/* ---------- INTRO ---------- */

.dfh-pset__lead {
    max-width: 880px;
    margin: 0 auto clamp(48px,6vw,78px) !important;
    color: var(--pset-bright);
    font-family: var(--font-display);
    font-size: clamp(1.25rem,2vw,1.75rem);
    font-weight: 400;
    line-height: 1.45;
}

.dfh-pset__intro {
    display: grid;
    grid-template-columns: minmax(0,1.18fr) minmax(300px,.82fr);
    gap: clamp(38px,6vw,90px);
    align-items: end;
    max-width: 1180px;
    margin: 0 auto 56px;
    padding: 6px 0 0;
}

.dfh-pset__eyebrow {
    margin: 0 0 15px;
    color: var(--pset-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.dfh-pset__statement {
    max-width: 760px;
    margin: 0 !important;
    color: var(--pset-bright);
    font-family: var(--font-display);
    font-size: clamp(2rem,4.2vw,4.4rem);
    font-weight: 400;
    line-height: .98;
}

.dfh-pset__statement em {
    font-weight: 400;
}

.dfh-pset__copy {
    padding-left: 28px;
    border-left: 1px solid var(--pset-line);
}

.dfh-pset__copy p {
    margin: 0 !important;
    color: var(--pset-muted);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
}

.dfh-pset__copy p + p {
    margin-top: 14px !important;
}

/* ---------- PHOTOS: NO FRAMES ---------- */

.dfh-pset__cinema {
    width: 100%;
    margin: 0 0 clamp(60px,8vw,112px) !important;
}

.single-entry__content .dfh-pset figure,
.single-entry__content .dfh-pset .dfh-pset__figure,
.dfh-pset__figure {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.single-entry__content .dfh-pset button.dfh-pset__button,
.dfh-pset__button {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 0 !important;
    border-radius: 0 !important;
    outline-offset: 4px;
    box-shadow: none !important;
    background: transparent !important;

    color: inherit;
    text-align: left;
    cursor: zoom-in;
}

.single-entry__content .dfh-pset img.dfh-pset__image,
.dfh-pset__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;

    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.dfh-pset__button::after {
    content: "VIEW";
    position: absolute;
    right: 18px;
    bottom: 16px;
    padding: 8px 10px;

    border: 1px solid rgba(255,255,255,.45);
    background: rgba(5,7,7,.55);
    color: #fff;

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;

    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;

    transition: opacity .25s ease, transform .25s ease;
}

.dfh-pset__button:hover .dfh-pset__image {
    transform: scale(1.018);
}

.dfh-pset__button:hover::after,
.dfh-pset__button:focus-visible::after {
    opacity: 1;
    transform: none;
}

.dfh-pset__button:focus-visible {
    outline: 1px solid var(--pset-bright);
}

/* ---------- CHAPTERS / GRIDS ---------- */

.dfh-pset__chapter {
    max-width: 1180px;
    margin: 0 auto clamp(72px,9vw,128px);
}

.dfh-pset__chapter-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 24px;
}

.dfh-pset__chapter-block2 {
	margin-top: 30px;
}

.dfh-pset__chapter-no {
    display: none !important;
}

.dfh-pset__chapter-title {
    flex: 0 0 auto;
    margin: 0 !important;
    color: var(--pset-bright);
    font-family: var(--font-display);
    font-size: clamp(1.7rem,2.5vw,2.45rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.dfh-pset__chapter-line {
    flex: 1;
    height: 1px;
    background: var(--pset-line);
}

.dfh-pset__chapter-copy {
    max-width: 100%;
    margin: 0 0 30px !important;
    color: var(--pset-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
}

.dfh-pset__grid {
    display: grid;
    gap: 18px;
}

.dfh-pset__grid--2,
.dfh-pset__grid--feature {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.dfh-pset__grid--3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.dfh-pset__grid--feature {
    align-items: start;
}

.dfh-pset__grid + .dfh-pset__grid {
    margin-top: 18px;
}

.dfh-pset__wide {
    grid-column: 1 / -1;
}

/* ---------- NOTE / CREDIT ---------- */

.dfh-pset__note {
    max-width: 900px;
    margin: clamp(60px,8vw,108px) auto !important;
    padding: 32px 0;
    border-top: 1px solid var(--pset-line);
    border-bottom: 1px solid var(--pset-line);
    color: var(--pset-bright);
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem,2.8vw,2.6rem);
    font-style: italic;
    line-height: 1.18;
}

.dfh-pset__credit {
    max-width: 760px;
    margin: 0 auto 12px;
    color: var(--pset-muted);
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: .04em;
}

/* ---------- REVEAL ---------- */

.dfh-pset__reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.dfh-pset__reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- LIGHTBOX ---------- */

.dfh-pset-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    place-items: center;
    background: rgba(3,4,4,.96);
}

.dfh-pset-lightbox.is-open {
    display: grid;
}

.dfh-pset-lightbox__stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 54px 86px 62px;
}

.dfh-pset-lightbox__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 116px);
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    object-fit: contain;
}

.dfh-pset-lightbox__close,
.dfh-pset-lightbox__nav {
    position: absolute;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    cursor: pointer;
}

.dfh-pset-lightbox__close {
    top: 20px;
    right: 26px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.dfh-pset-lightbox__nav {
    top: 50%;
    width: 56px;
    height: 70px;
    transform: translateY(-50%);
    font-size: 34px;
    font-weight: 300;
    opacity: .72;
}

.dfh-pset-lightbox__nav:hover {
    opacity: 1;
}

.dfh-pset-lightbox__prev { left: 16px; }
.dfh-pset-lightbox__next { right: 16px; }

.dfh-pset-lightbox__counter {
    position: absolute;
    left: 26px;
    bottom: 22px;
    color: rgba(255,255,255,.68);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .16em;
}

.dfh-pset-lightbox__caption {
    position: absolute;
    left: 50%;
    bottom: 20px;
    max-width: min(680px,65vw);
    margin: 0;
    transform: translateX(-50%);
    color: rgba(255,255,255,.68);
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
}

body.dfh-pset-lightbox-open {
    overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .dfh-pset-layout,
    .dfh-pset-layout.dfh-pset-sidebar-open {
        grid-template-columns: minmax(0,1fr) !important;
        gap: 0 !important;
    }

    .dfh-pset-layout > #dfh-site-sidebar,
    .dfh-pset-sidebar-toggle {
        display: none !important;
    }

    .dfh-pset-layout > .single-entry .single-entry__header {
        padding-right: 0;
    }
}

@media (max-width: 960px) {
    .dfh-pset__intro {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 42px;
    }

    .dfh-pset__copy {
        max-width: 720px;
    }

    .dfh-pset__grid--3 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .dfh-pset-lightbox__stage {
        padding: 54px 60px;
    }
}

@media (max-width: 767px) {
    .dfh-pset__grid--3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dfh-pset__chapter-copy {
        margin-bottom: 24px !important;
        font-size: 15px;
        line-height: 1.75;
    }

    .dfh-pset__intro {
        margin-bottom: 32px;
    }

    .dfh-pset__copy {
        padding: 20px 0 0;
        border-top: 1px solid var(--pset-line);
        border-left: 0;
    }

    .dfh-pset__grid,
    .dfh-pset__grid--2,
    .dfh-pset__grid--3,
    .dfh-pset__grid--feature {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dfh-pset__grid + .dfh-pset__grid {
        margin-top: 12px;
    }

    .dfh-pset__button::after {
        display: none;
    }

    .dfh-pset-lightbox__stage {
        padding: 52px 10px 74px;
    }

    .dfh-pset-lightbox__nav {
        top: auto;
        bottom: 10px;
        height: 50px;
        transform: none;
    }

    .dfh-pset-lightbox__prev { left: 52px; }
    .dfh-pset-lightbox__next { right: 52px; }

    .dfh-pset-lightbox__caption {
        bottom: 25px;
        max-width: 58vw;
        font-size: 10px;
    }

    .dfh-pset-lightbox__counter {
        left: 14px;
        bottom: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dfh-pset-layout,
    .dfh-pset-sidebar-toggle,
    .dfh-pset__reveal,
    .dfh-pset__image {
        transition: none !important;
    }

    .dfh-pset__reveal {
        opacity: 1;
        transform: none;
    }
}
@media (min-width: 641px) {
    .single-entry__content .dfh-pset figure.dfh-pset__cinema,
    .single-entry__content .dfh-pset figure.dfh-pset__wide {
        width: 100% !important;
        max-width: calc(150vh - 150px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ============================================================
   DOLL FINDS HUB — PORTRAIT PHOTOSET
   Additional styles for vertical 2:3 photos
   ============================================================ */

.dfh-pset--portrait .dfh-pset__chapter {
    max-width: 1040px;
}

.dfh-pset--portrait .dfh-pset__portrait-feature,
.dfh-pset--portrait .dfh-pset__portrait-single {
    width: min(100%, 680px);
    margin-left: auto !important;
    margin-right: auto !important;
}

.dfh-pset--portrait .dfh-pset__grid--2 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.dfh-pset--portrait .dfh-pset__grid--3 {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.dfh-pset--portrait .dfh-pset__details-grid {
    margin-top: clamp(42px, 6vw, 76px);
}

.dfh-pset--portrait .dfh-pset__opening-grid {
    max-width: 960px;
    margin: 0 auto clamp(60px, 8vw, 112px);
}

.dfh-pset--portrait .dfh-pset__closing-grid {
    margin-top: 18px;
}

.dfh-pset--portrait .dfh-pset__chapter--final {
    margin-bottom: clamp(52px, 7vw, 88px);
}


/* ============================================================
   INSIDE THE SCENE
   ============================================================ */

.dfh-pset--portrait .dfh-pset__scene-info {
    display: grid;
    grid-template-columns:
        minmax(230px, 0.72fr)
        minmax(0, 1.28fr);
    gap: clamp(38px, 6vw, 86px);

    max-width: 1040px;
    margin: 0 auto clamp(48px, 7vw, 84px);
    padding: clamp(34px, 5vw, 58px);

    border: 1px solid var(--pset-line);
    background: rgba(255, 255, 255, 0.018);
}

.dfh-pset--portrait .dfh-pset__scene-info-head {
    align-self: start;
}

.dfh-pset--portrait .dfh-pset__scene-info-eyebrow {
    margin: 0 0 14px !important;

    color: var(--pset-muted);

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dfh-pset--portrait .dfh-pset__scene-info-title {
    margin: 0 !important;

    color: var(--pset-bright);

    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.5rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.dfh-pset--portrait .dfh-pset__scene-info-intro {
    margin: 22px 0 0 !important;

    color: var(--pset-muted);

    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
}

.dfh-pset--portrait .dfh-pset__scene-list {
    margin: 0;
}

.dfh-pset--portrait .dfh-pset__scene-item {
    display: grid;
    grid-template-columns:
        minmax(120px, 0.65fr)
        minmax(0, 1.35fr);
    gap: 20px;

    padding: 17px 0;
    border-top: 1px solid var(--pset-line);
}

.dfh-pset--portrait .dfh-pset__scene-item:last-child {
    border-bottom: 1px solid var(--pset-line);
}

.dfh-pset--portrait .dfh-pset__scene-item dt,
.dfh-pset--portrait .dfh-pset__scene-item dd {
    margin: 0;

    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
}

.dfh-pset--portrait .dfh-pset__scene-item dt {
    color: var(--pset-bright);

    font-weight: 600;
    letter-spacing: 0.04em;
}

.dfh-pset--portrait .dfh-pset__scene-item dd {
    color: var(--pset-muted);
}

.dfh-pset--portrait
.dfh-pset__scene-item
dd > span:first-child {
    display: block;
}

.dfh-pset--portrait .dfh-pset__scene-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: max-content;
    margin-top: 8px;
    padding-bottom: 3px;

    border-bottom: 1px solid rgba(241, 239, 232, 0.35);

    color: var(--pset-bright);

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.dfh-pset--portrait .dfh-pset__scene-link:hover,
.dfh-pset--portrait .dfh-pset__scene-link:focus-visible {
    color: #fff;
    border-color: #fff;
}

.dfh-pset--portrait .dfh-pset__scene-link:focus-visible {
    outline: 1px solid var(--pset-bright);
    outline-offset: 5px;
}

.dfh-pset--portrait .dfh-pset__scene-disclosure {
    grid-column: 2;

    margin: 2px 0 0 !important;

    color: var(--pset-muted);

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.65;

    opacity: 0.78;
}

.dfh-pset--portrait .dfh-pset__credit {
    margin-top: 0;
}


/* ============================================================
   DESKTOP AND TABLET
   ============================================================ */

@media (min-width: 641px) {
    body.dfh-pset-active
    .single-entry__content
    .dfh-pset.dfh-pset--portrait
    figure.dfh-pset__portrait-feature,
    body.dfh-pset-active
    .single-entry__content
    .dfh-pset.dfh-pset--portrait
    figure.dfh-pset__portrait-single {
        width: min(
            680px,
            calc((100vh - 110px) * 0.6667)
        ) !important;

        max-width: 680px !important;
    }

    .dfh-pset--portrait .dfh-pset__grid--2 {
        width: min(
            960px,
            calc((100vh - 120px) * 1.3334 + 18px)
        );
    }

    .dfh-pset--portrait .dfh-pset__opening-grid {
        width: min(
            960px,
            calc((100vh - 120px) * 1.3334 + 18px)
        );
    }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 820px) {
    .dfh-pset--portrait .dfh-pset__scene-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dfh-pset--portrait .dfh-pset__scene-disclosure {
        grid-column: 1;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {
    .dfh-pset--portrait .dfh-pset__portrait-feature,
    .dfh-pset--portrait .dfh-pset__portrait-single,
    .dfh-pset--portrait .dfh-pset__grid--2,
    .dfh-pset--portrait .dfh-pset__grid--3 {
        width: 100%;
        max-width: none;
    }

    .dfh-pset--portrait .dfh-pset__opening-grid {
        width: 100%;
        max-width: none;
        margin-bottom: 60px;
    }

    .dfh-pset--portrait .dfh-pset__closing-grid {
        margin-top: 12px;
    }

    .dfh-pset--portrait .dfh-pset__scene-info {
        gap: 28px;

        margin-bottom: 52px;
        padding: 28px 20px;
    }

    .dfh-pset--portrait .dfh-pset__scene-item {
        grid-template-columns: 1fr;
        gap: 5px;

        padding: 15px 0;
    }
}

/* ============================================================
   PORTRAIT PHOTOSET — INTRO ALIGNMENT
   ============================================================ */

.dfh-pset--portrait .dfh-pset__lead {
    text-align: center;
}


/* ============================================================
   PORTRAIT PHOTOSET — SCENE JUMP
   ============================================================ */

.dfh-pset--portrait .dfh-pset__scene-jump {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto clamp(48px, 6vw, 76px);
    padding: 24px 26px;

    border: 1px solid var(--pset-line);
    background: rgba(255, 255, 255, 0.025);
}

.dfh-pset--portrait .dfh-pset__scene-jump-text {
    margin: 0 !important;

    color: var(--pset-bright);

    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 400;
    line-height: 1.35;
}

.dfh-pset--portrait .dfh-pset__scene-jump-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 44px;
    padding: 0 18px;

    border: 1px solid rgba(241, 239, 232, 0.55);
    background: transparent;
    color: var(--pset-bright);

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.dfh-pset--portrait .dfh-pset__scene-jump-link:hover,
.dfh-pset--portrait .dfh-pset__scene-jump-link:focus-visible {
    border-color: var(--pset-bright);
    background: var(--pset-bright);
    color: #0a0c0c;
    text-decoration: none;
}

.dfh-pset--portrait .dfh-pset__scene-jump-link:focus-visible {
    outline: 1px solid var(--pset-bright);
    outline-offset: 4px;
}


/* ============================================================
   PORTRAIT PHOTOSET — ANCHOR POSITION
   ============================================================ */

.dfh-pset--portrait .dfh-pset__scene-info {
    scroll-margin-top: 72px;
}


/* ============================================================
   PORTRAIT PHOTOSET — SCENE JUMP MOBILE
   ============================================================ */

@media (max-width: 640px) {
    .dfh-pset--portrait .dfh-pset__scene-jump {
        grid-template-columns: 1fr;
        gap: 18px;

        margin-bottom: 48px;
        padding: 22px 20px;
    }

    .dfh-pset--portrait .dfh-pset__scene-jump-link {
        width: 100%;
    }

    .dfh-pset--portrait .dfh-pset__scene-info {
        scroll-margin-top: 66px;
    }
}