@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

/* Scoped to deckplan only — do not reset html/body */
.deckplan-wrapper {
    background: #ffffff;
    color: #222;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif
}

.vdp-container {
    max-width: 980px;
    margin: 24px auto;
    padding: 0 16px
}

.deckplan-wrapper h1,
.deckplan-wrapper h2,
.deckplan-wrapper h3 {
    font-weight: 700;
    margin: 0 0 8px
}

.deckplan-wrapper p {
    margin: 0 0 12px
}

label[for="deckSel"] {
    font-weight: 700;
    letter-spacing: .2px;
    margin-right: 6px
}

#deckSel {
    appearance: auto;
    border: 1px solid #d0d6dd;
    padding: 8px 12px;
    background: #fff
}

.vdp-stage {
    border: 1px solid #e5e7eb;
    padding: 12px;
    margin-top: 8px
}

.toolbar .tool {
    border: 1px solid #d0d6dd;
    background: #fff
}

.legend {
    font-size: 14px;
    color: #333
}


/* Centered popup at 65% size and scrollable */

.vdp-dialog {
    transform-origin: center center;
    max-height: 90vh;
    overflow-y: auto;
}


/* No rounded corners in deckplan */

.deckplan-wrapper *,
.deckplan-wrapper *::before,
.deckplan-wrapper *::after {
    border-radius: 0 !important;
}


/* Ensure modals stay centered */

.vdp-modal[open] {
    display: flex;
    align-items: center;
    justify-content: center;
}

 :root {
    --brand: #8A001A;
    --ink: #1f2937;
    --muted: #6b7280;
    --bg: #fff;
    --overlay: rgba(0, 0, 0, .65);
    --radius: 16px;
}

.deckplan-wrapper {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, sans-serif;
    color: var(--ink);
}

.vdp-page {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 16px
}

.deckplan-wrapper h1 {
    margin: 0 0 16px
}

.vdp-note {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px
}

.vdp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px
}

.vdp-card {
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 6px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
    border: 1px solid #e5e7eb
}

.vdp-card button {
    all: unset;
    cursor: pointer;
    display: block
}

.vdp-card img {
    width: 100%;
    height: 148px;
    object-fit: cover;
    display: block
}

.vdp-card .meta {
    padding: 12px 14px
}

.vdp-card .title {
    font-weight: 700
}

.vdp-card .sub {
    font-size: 13px;
    color: var(--muted)
}

.vdp-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000
}

.vdp-modal[aria-hidden="false"] {
    display: flex
}

.vdp-backdrop {
    position: absolute;
    inset: 0;
    background: var(--overlay)
}

.vdp-dialog {
    position: relative;
    width: min(500px, 96vw);
    background: var(--bg);
    border-radius: var(--radius);
    overflow: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
    padding: 24px;
    padding-top: 0;
}

.vdp-dialog header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #eee;
    border-bottom: 5px solid #b10a32;
    padding-bottom: 15px;
    padding-top: 30px;
    margin-bottom: 23px;
    width: 100%;
    justify-content: center;
}

.vdp-dialog header .vdp-badge {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    padding: 4px 8px;
    border-radius: 999px
}

.vdp-dialog header h2 {
    font-size: 25px;
    line-height: 1.2;
    margin: 0;
    color: #b10a32;
    text-transform: uppercase;
}

.vdp-dialog header .vdp-subtitle {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px
}

.vdp-content {
    display: block
}

.vdp-gallery {
    position: relative;
    background: #000
}

.vdp-gallery figure {
    margin: 0;
    position: relative
}

.vdp-gallery img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover
}

.vdp-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px;
    overflow-y: auto;
    max-height: 180px;
    background: #0a0a0a
}

.vdp-thumbs img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    opacity: .6;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0
}

.vdp-thumbs img[aria-current="true"] {
    opacity: 1;
    border-color: #fff
}

.vdp-navbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .95);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer
}

.vdp-navbtn svg {
    width: 20px;
    height: 20px
}

.vdp-navbtn.vdp-prev {
    left: 10px
}

.vdp-navbtn.vdp-next {
    right: 10px
}

.vdp-details {
    border-top: 1px solid #eee
}

.vdp-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px
}

.vdp-spec {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0 0;
    font-size: 14px
}

.vdp-spec .vdp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand)
}

.vdp-features {
    margin: 10px 0 0;
    padding: 0 0 0 18px
}

.vdp-features li {
    margin: 6px 0
}

.vdp-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 4px 8px;
    z-index: 1001;
    transition: all 0.2s;
    width: auto;
    height: auto;
}

.vdp-close:hover {
    color: #333;
    box-shadow: none;
}

.svgship {
    padding: 0 3vw 4vh 3vw
}

.svgship__headline,
.svgship__pdf,
.svgship__instruction {
    text-align: center;
    padding: 0 inherit
}

.svgship__headline {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 .5em 0 .5em;
    padding: 0;
    color: #333
}

.svgship__instruction {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    margin: .5em;
    padding: 0
}

/* Ensure theme h2 bold doesn't override headline */
.deckplan-wrapper .svgship__headline {
    font-weight: 400;
    font-size: 1.6rem;
}
.deckplan-wrapper .svgship__instruction {
    font-weight: 500;
    font-size: 0.95rem;
}

.deckplan-wrapper a:hover,
.deckplan-wrapper a:focus {
    color: #333;
}

.deckplan-wrapper a {
    color: #b10a32;
    text-decoration: none;
}

.svgship__instruction {
    font-size: 0.85em
}

.room__detailslink {
    cursor: pointer !important
}

.deckplan__highlight {
    fill: red !important;
    fill-opacity: .6
}

.cat__color {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: .4em;
    margin-top: -.3em;
    vertical-align: middle
}

.svgship__pdfbutton {
    display: inline-block;
    color: #fff !important;
    font-size: 1.5rem;
    padding: .5em;
    margin-bottom: 4px;
    height: auto;
    line-height: 1.5;
    border: 1px solid #777;
    background: #777;
    text-decoration: none !important;
    font-size: 1.1em;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    font-weight: normal;
    border-radius: 0;
    width: 100%;
    max-width: 200px
}

.svgship__pdfbutton:hover {
    border: 1px solid #456580;
    background: #456580
}

.svgship__deckplans {
    margin-top: 2em
}

@media screen and (min-width:768px) {
    .svgship__headline {
        font-size: 1.2rem;
        font-weight: 400
    }
    .svgship__deckplans {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: "selector selector selector selector" "deck deck deck deck" "legend legend legend legend" "sideview sideview sideview sideview" "features features features features"
    }
}

@media screen and (min-width:1024px) {
    .svgship__deckplans {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: "selector selector selector selector" "deck deck deck deck" "legend legend legend legend" "sideview sideview sideview features"
    }
}

.svgship__pdf {
    grid-area: pdf
}

.svgship__selector {
    grid-area: selector
}

.svgship__selector {
    margin: 0;
    padding-left: 0
}

.svgship__selectorcontainer {
    display: block;
    position: relative;
    text-decoration: none;
    max-width: 300px;
    text-align: left;
    margin: 0 auto 1.2rem auto
}

.svgship__selectorlabel {
    display: block;
    font-size: 1.5rem;
    color: #333;
    padding: .5em;
    border: 1px solid rgba(20, 38, 64, .7);
    line-height: 1.5
}

.svgship__selectorlabel span {
    text-transform: uppercase
}

.svgship__selectorcaret {
    display: inline-block;
    position: absolute;
    top: .8rem;
    right: 1.3rem;
    cursor: pointer !important
}

.svgship__selectorcaret::before {
    font-family: icomoon;
    content: "";
    border: none;
    margin-top: 0;
    color: #b10a32;
    height: 1rem;
    line-height: 1rem;
    display: inline-block
}

.svgship__decknav {
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, .9);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all .5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    border: 0 solid #ededed;
    border-width: 0 0 1px 1px;
    width: 100%
}

.svgship__decknavitem {
    clear: both;
    width: 100%;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1.5;
    text-transform: none;
    border: 0 solid #ededed;
    border-width: 1px 1px 0 0
}

.svgship__decknavitem a {
    padding: .3em .5em;
    color: #333;
    text-transform: none;
    text-decoration: none !important;
    display: block
}

.svgship__decknavitem:hover,
.svgship__decknavitem:focus,
.svgship__decknavitem--selected {
    background: rgba(20, 38, 64, .7);
    cursor: pointer
}

.svgship__decknavitem:hover a,
.svgship__decknavitem:focus a,
.svgship__decknavitem--selected a {
    color: #fff
}

.svgship__decknavitem:focus a {
    outline: none
}

a.svgship__selectorlabel strong {
    font-size: 1.6rem
}

.svgship__selectorcontainer.open .svgship__decknav {
    visibility: visible;
    opacity: 1;
    display: block
}

.svgship__selectorcontainer.open .svgship__selectorcaret::before {
    font-family: icomoon;
    content: "";
    cursor: pointer !important
}

.svgship__decksvg {
    grid-area: deck
}

.svgship__legend {
    grid-area: legend;
    outline: none;
    border-bottom: 1px solid #ededed;
    padding-bottom: 3vh;
    margin-bottom: 4vh;
    text-align: center
}

.svgship__legend ul {
    margin: 0;
    padding: 0
}

.svgship__legenditem {
    list-style-type: none;
    margin: .5em;
    padding: 0;
    display: inline-block;
    line-height: 1.5
}

.svgship__legenditem a {
    color: #333;
    text-decoration: none !important;
    font-size: 1em;
    font-weight: 500;
}

.svgship__sideview {
    grid-area: sideview
}

.svgship__features {
    grid-area: features
}

@media screen and (min-width:1024px) {
    .svgship__features {
        padding-left: 2rem
    }
}

.svgship__featuresheading {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 500;
}

.svgship__featureslist {
    margin: .5em;
    padding: 0
}

.svgship__featureslist ul {
    padding-left: 1.5em;
    margin-left: 0
}

.svgship__featureslist ul li {
    font-size: 0.9em;
    line-height: 1;
    padding: .2em .2em .2em 0;
    font-weight: 500;
    width: 100%;
}

.svgship--modal {
    padding: 0 !important
}

.svgship--modal .svgship__selectorcontainer {
    text-align: left;
    margin: 0 auto 1.2rem auto
}

.svgship--modal .svgship__headline {
    font-size: 3.5rem
}

.svgship--modal .svgship__deckplans {
    margin-top: 0;
    display: block
}

.desk-high-light:hover {
    fill: red !important;
    opacity: 0.6;
}

.deck-all-callouts {
    opacity: 0;
    cursor: pointer;
}

.deck-all-callouts:hover {
    opacity: 1;
}

.deck-active-callouts-side-view {
    opacity: 1 !important;
}

.maindeck {
    opacity: 0.6;
    fill: red !important;
    cursor: pointer;
}

.desk-high-light-river-veranda {
    fill: red;
    opacity: 0.6;
}

.fts {
    cursor: pointer;
}

.fts:hover,
.fts:hover .ctm {
    fill: red !important;
    opacity: 0.6;
}

svg text {
    pointer-events: none;
    font-family: "Neue Frutiger World", "Open Sans", -apple-system, Helvetica, Arial, sans-serif !important;
}

.boxchart {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.deck-dropdown {
    width: 240px;
    font-family: Arial;
    position: relative;
}

.deck-selected {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deck-selected .vdp-arrow {
    transition: 0.3s;
}

.deck-selected.active .vdp-arrow {
    transform: rotate(180deg);
}

.deck-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 99;
}

.deck-list li {
    padding: 10px 12px;
    cursor: pointer;
    background: #fff;
}

.deck-list li:hover {
    background: #333;
    color: #fff;
}
/* =============================================
   Japanese Deck Plan Overrides & Responsive
   ============================================= */
.deck-dropdown { width: 360px; }
.deck-all-callouts, .deck-all-callouts * { pointer-events: all !important; }
#sideview text { pointer-events: all !important; }
.fts:hover, .fts:hover * { fill: red !important; opacity: 0.6; }
.fts:hover text, .fts:hover tspan { fill: #000 !important; opacity: 1; }

/* Sideview: on hover, hide all other deck labels */
#sideview:hover .deck-all-callouts:not(:hover) text,
#sideview:hover .deck-all-callouts:not(:hover) line.sttsp22 {
    opacity: 0 !important;
    transition: opacity 0.15s ease;
}

/* Japanese typography */
.deckplan-wrapper {
    word-break: auto-phrase;
    overflow-wrap: break-word;
    line-break: strict;
}
@supports not (word-break: auto-phrase) {
    body { word-break: normal; }
}

/* Desktop spacing */
.svgship__headline { margin-bottom: 0.3em; }
.svgship__instruction { margin-bottom: 1.5em; line-height: 1.8; }
.svgship__selectorcontainer { margin-bottom: 2em; }
#deckWrap { margin-top: 100px; }
.svgship__legend { margin-top: 1.5em; margin-bottom: 1em; }
.svgship__sideview { margin-top: 1.5em; }
.svgship__deckplans { margin-top: 2.5em; }

/* Desktop text sizing */
.svgship__headline { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 400; }
.svgship__instruction { font-size: clamp(0.75rem, 1.1vw, 0.85rem); font-weight: 400; }
.svgship__featuresheading { font-size: clamp(1rem, 1.5vw, 1.4rem); }
.svgship__featureslist ul li { font-size: clamp(0.8rem, 1vw, 0.95rem); line-height: 1.6; }
.cat__label { font-size: clamp(0.75rem, 1vw, 0.9rem); }
.deck-selected { font-size: clamp(0.85rem, 1.3vw, 1rem); }
.svgship__legend { font-size: clamp(0.75rem, 1.1vw, 0.9rem); }

/* Modal */
.vdp-dialog {
    word-break: auto-phrase; /* Chrome 119+: break at phrase boundaries for CJK */
    overflow-wrap: break-word;
    line-break: strict;
}
/* Fallback for browsers without auto-phrase */
@supports not (word-break: auto-phrase) {
    .vdp-dialog { word-break: normal; }
}
.vdp-dialog header h2 { font-size: clamp(1.1rem, 3vw, 1.6rem); letter-spacing: 0.03em; }
.vdp-dialog header .vdp-subtitle { font-size: clamp(0.75rem, 1.5vw, 0.85rem); }
.vdp-dialog .vdp-features li { font-size: clamp(0.8rem, 1.2vw, 0.95rem); line-height: 1.7; }
.vdp-dialog .vdp-spec { font-size: clamp(0.8rem, 1.2vw, 0.95rem); line-height: 1.6; }
.vdp-dialog .vdp-pill { font-size: clamp(0.7rem, 1vw, 0.8rem); }
.vdp-dialog .vdp-close { font-size: clamp(1rem, 2vw, 1.2rem); }
#featuresWrap p {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    line-height: 1.9;
    word-break: auto-phrase;
    overflow-wrap: break-word;
    line-break: strict;
    padding: 0 0.5em;
}
@supports not (word-break: auto-phrase) {
    #featuresWrap p { word-break: normal; }
}
#featuresWrap ul.vdp-features li { font-size: clamp(0.8rem, 1.2vw, 0.95rem); line-height: 1.7; }

/* CTA */
.cta-pdf {
    display: inline-block;
    background-color: #b10a32;
    color: #fff !important;
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    font-weight: 600;
    padding: 0.9em 2.5em;
    text-decoration: none;
    letter-spacing: 0.05em;
    border: none; cursor: pointer;
    transition: background-color 0.2s;
}
.cta-pdf:hover { background-color: #8a0016; color: #fff !important; }

/* ===== Tablet (≤1023px) ===== */
@media screen and (max-width: 1023px) {
    #deckWrap { margin-top: 60px; }
}

/* ===== Mobile (≤767px) ===== */
@media screen and (max-width: 767px) {
    .svgship { padding: 0 4vw 2vh 4vw; }

    /* Title: viewport-scaled to always fit one line */
    .svgship__headline {
        font-size: 3.8vw;
        font-weight: 400;
        white-space: nowrap;
        margin-bottom: 0.15em;
    }
    .svgship__instruction {
        font-size: 2.8vw;
        font-weight: 400;
        line-height: 1.65;
        padding: 0 0.3em;
        margin-bottom: 0.5em;
    }

    /* Selector */
    .deck-dropdown { width: 88%; max-width: 340px; }
    .deck-selected { font-size: 0.85rem; padding: 10px 14px; }
    .svgship__selectorcontainer { margin-bottom: 0.3em; }

    /* Deck plan area */
    #deckWrap { margin-top: 6px; }
    #deckWrap svg { width: 100% !important; max-width: 100%; }
    .svgship__deckplans { margin-top: 0.5em; }

    /* Legend: tighter */
    .svgship__legend {
        font-size: 0.7rem;
        line-height: 1.8;
        margin-top: 0.5em;
        margin-bottom: 0.3em;
        padding: 0 0.2em;
    }

    /* Sideview + features */
    .svgship__sideview { margin-top: 0.5em; }
    .svgship__featuresheading { font-size: 0.95rem; }
    .svgship__featureslist ul li { font-size: 0.78rem; line-height: 1.6; }

    /* Modal: centered with visible side margins */
    .vdp-modal {
        align-items: center !important;
        justify-content: center !important;
        padding: 2vh 3vw;
    }
    .vdp-dialog {
        width: 92vw;
        padding: 14px;
        padding-top: 0;
        max-height: 90vh;
        box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
    }
    .vdp-dialog header {
        padding-top: 16px;
        padding-bottom: 8px;
        margin-bottom: 8px;
        gap: 6px;
    }
    .vdp-dialog header h2 {
        font-size: 1.05rem;
        line-height: 1.3;
        letter-spacing: 0.02em;
    }
    #featuresWrap p {
        font-size: 0.85rem;
        line-height: 1.85;
        margin: 0.4em 0;
        padding: 0 0.3em;
    }
    #featuresWrap ul.vdp-features {
        padding-left: 1.1em;
        margin: 0.2em 0;
    }
    #featuresWrap ul.vdp-features li {
        font-size: 0.8rem;
        line-height: 1.65;
        margin: 3px 0;
    }
    .vdp-dialog .vdp-spec { font-size: 0.8rem; }
    .vdp-gallery img { max-height: 250px; }
    .vdp-thumbs {
        max-height: 80px;
        padding: 5px;
        gap: 4px;
    }
    .vdp-thumbs img { width: 44px; height: 33px; }
    .vdp-close {
        top: 6px; right: 6px;
        font-size: 1.1rem;
        padding: 5px 10px;
    }

    /* CTA: full-width block */
    .cta-pdf {
        display: block;
        width: 88%;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.8em 1em;
    }
}

/* ===== Small phones ≤374px (iPhone SE) ===== */
@media screen and (max-width: 374px) {
    .svgship__headline { font-size: 3.5vw; font-weight: 400; }
    .svgship__instruction { font-size: 2.6vw; font-weight: 400; }
    .svgship__legend { font-size: 0.65rem; line-height: 1.7; }
    .vdp-dialog header h2 { font-size: 0.95rem; }
    #featuresWrap p { font-size: 0.78rem; line-height: 1.65; }
    #featuresWrap ul.vdp-features li { font-size: 0.75rem; }
    .cta-pdf { font-size: 0.8rem; }
}

/* =============================================
   English Deck Plan Overrides
   ============================================= */
html[lang="en"] .deck-dropdown { width: 300px; }
@media screen and (max-width: 767px) {
    html[lang="en"] .deck-dropdown { width: 88%; max-width: 300px; }
}

/* =============================================
   WordPress theme overrides (bare element resets inside popup)
   Only counter theme margin/float/columns on bare HTML elements.
   Do NOT reset border or padding here — that kills .vdp-* styles
   because #popup has higher specificity than class selectors.
   ============================================= */
#popup section,
#popup figure,
#popup header,
#popup aside,
#popup div,
#popup h1, #popup h2, #popup h3, #popup h4,
#popup p,
#popup ul, #popup ol, #popup li,
#popup img {
    margin: 0;
    float: none;
    columns: auto;
    column-count: auto;
    max-width: none;
    min-height: 0;
    box-sizing: border-box;
}
/* Gallery-specific: kill theme padding/border on section and figure */
#popup section.vdp-gallery,
#popup section.vdp-gallery figure,
#popup .vdp-gallery,
#popup .vdp-gallery figure {
    padding: 0 !important;
    border: none !important;
    background: #000;
}
/* Header: re-apply our border after theme reset */
#popup .vdp-dialog header {
    border-bottom: 5px solid #b10a32 !important;
    padding: 30px 20px 15px !important;
    margin-bottom: 23px;
}
#popup .vdp-gallery img#hero {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}
#popup .vdp-gallery,
#popup .vdp-gallery figure {
    padding: 0;
    border: none;
    background: #000;
}
#popup .vdp-features {
    display: block;
    columns: 1;
}
#popup .vdp-features li {
    display: list-item;
    list-style: disc;
}

/* (spinner removed) */
