/*
=================================================================
Oceanic Innova - Single Percorso
File sostitutivo completo per: style-single-percorso.css
=================================================================
*/

:root {
    --oi-navy: #061625;
    --oi-navy-2: #081d2f;
    --oi-navy-3: #0b2236;
    --oi-cream: #F7F4EE;
    --oi-cream-2: #fffaf1;
    --oi-gold: #B58459;
    --oi-gold-2: #B58459;
    --oi-text: #f4f1ea;
    --oi-muted: rgba(244, 241, 234, .72);
    --oi-dark-text: #061625;
    --oi-dark-muted: rgba(6, 22, 37, .68);
    --oi-border-gold: rgba(200, 155, 79, .28);
    --oi-border-dark: rgba(6, 22, 37, .10);
    --oi-shadow-dark: 0 28px 80px rgba(0, 0, 0, .28);
    --oi-shadow-soft: 0 18px 50px rgba(6, 22, 37, .08);
}

p, strong, span, summary,
.oi-btn {
    font-family: 'Manrope', sans-serif;
}

.oi-single-percorso {
    background: var(--oi-navy);
    color: var(--oi-text);
    overflow: hidden;
}

.oi-single-percorso * {
    box-sizing: border-box;
}

.oi-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}

.oi-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--oi-gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.oi-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: .75;
}

.oi-percorso-hero h1,
.oi-percorso-intro h2,
.oi-section-head h2,
.oi-percorso-included h2,
.oi-info-card h2,
.oi-cta-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    line-height: .94;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -.035em;
}

/* ================================================================
   HERO
================================================================ */

.oi-percorso-hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 180px 0 90px;
    background: var(--oi-navy);
}

.oi-percorso-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(.92) contrast(1.06);
}

.oi-percorso-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 22%, rgba(200, 155, 79, .18), transparent 28%),
        linear-gradient(90deg, rgba(6, 22, 37, .98) 0%, rgba(6, 22, 37, .76) 44%, rgba(6, 22, 37, .18) 100%),
        linear-gradient(0deg, rgba(6, 22, 37, 1) 0%, rgba(6, 22, 37, .55) 24%, rgba(6, 22, 37, .12) 100%);
}

.oi-percorso-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 79, .55), transparent);
    z-index: 2;
}

.oi-percorso-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
    gap: 72px;
    align-items: end;
}

.oi-percorso-hero__content {
    max-width: 980px;
}

.oi-percorso-hero h1 {
    font-size: 75px;
    max-width: 1040px;
    text-shadow: 0 20px 60px rgba(0, 0, 0, .38);
    color: #fff;
}

.oi-percorso-hero p {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(244, 241, 234, .80);
    margin: 30px 0 0;
}

.oi-percorso-hero__actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.oi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
    border-radius: 0;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.oi-btn::after {
    content: "\2192";
    font-size: 17px;
    line-height: 1;
    transform: translateY(-1px);
}

.oi-btn--gold {
    background: linear-gradient(135deg, var(--oi-gold-2), #b98736);
    color: var(--oi-navy);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 34px rgba(200, 155, 79, .22);
}

.oi-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(200, 155, 79, .30);
    color: #fff;
}

.oi-btn--ghost {
    border: 1px solid rgba(200, 155, 79, .55);
    background: rgba(6, 22, 37, .25);
    color: #fff;
}

.oi-btn--ghost:hover {
    background: rgba(200, 155, 79, .10);
    border-color: rgba(200, 155, 79, .82);
    color: rgba(200, 155, 79, .82);
}

.oi-percorso-facts {
    background: rgba(247, 244, 238, .92);
    color: var(--oi-dark-text);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 155, 79, .48);
    padding: 34px;
    display: grid;
    gap: 0;
    box-shadow: var(--oi-shadow-dark);
}

.oi-percorso-fact {
    border-bottom: 1px solid rgba(6, 22, 37, .12);
    padding: 18px 0;
}

.oi-percorso-fact:first-child {
    padding-top: 0;
}

.oi-percorso-fact:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.oi-percorso-fact span,
.oi-info-card li span {
    display: block;
    color: rgba(6, 22, 37, .48);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 7px;
    font-weight: 800;
}

.oi-percorso-fact strong,
.oi-info-card li strong {
    display: block;
    color: var(--oi-dark-text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

/* ================================================================
   SEZIONI GLOBALI
================================================================ */

.oi-percorso-intro,
.oi-percorso-stops,
.oi-percorso-included,
.oi-percorso-extra,
.oi-percorso-gallery,
.oi-percorso-info,
.oi-percorso-faq,
.oi-percorso-cta,
.oi-related {
    position: relative;
    padding: 115px 0;
}

.oi-grid-2 {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 86px;
    align-items: start;
}

.oi-percorso-intro h2,
.oi-section-head h2,
.oi-info-card h2,
.oi-cta-box h2 {
    font-size: 50px;
    color: #fff;
}

.oi-section-head {
    max-width: 760px;
    margin-bottom: 56px;
}

.oi-richtext {
    color: var(--oi-dark-muted);
    font-size: 18px;
    line-height: 1.9;
}

.oi-richtext p:first-child {
    margin-top: 0;
}

.oi-richtext p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   INTRO - CREAM
================================================================ */

.oi-percorso-intro {
    background:
        radial-gradient(circle at 14% 12%, rgba(200, 155, 79, .12), transparent 32%),
        linear-gradient(180deg, var(--oi-cream), var(--oi-cream-2));
    color: var(--oi-dark-text);
}

.oi-percorso-intro h2 {
    color: var(--oi-dark-text);
}

.oi-percorso-intro blockquote {
    margin: 38px 0 0;
    padding: 30px 34px;
    color: var(--oi-dark-text);
    background: #fff;
    border-left: 3px solid var(--oi-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    line-height: 1.35;
    box-shadow: var(--oi-shadow-soft);
}

/* ================================================================
   TAPPE
================================================================ */

.oi-percorso-stops {
    background:
        radial-gradient(circle at 90% 10%, rgba(200, 155, 79, .10), transparent 30%),
        linear-gradient(180deg, #061625 0%, #081d2f 100%);
}

.oi-percorso-stops::before,
.oi-percorso-gallery::before,
.oi-percorso-extra::before,
.oi-related::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 79, .36), transparent);
}

.oi-stops-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.oi-stop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 330px;
    padding: 30px;
    border: 1px solid rgba(200, 155, 79, .24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
        #0b2033;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
    transition: transform .4s ease, border-color .4s ease, background .4s ease, box-shadow .4s ease;
}

.oi-stop-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 155, 79, .12), transparent 48%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.oi-stop-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200, 155, 79, .58);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.oi-stop-card:hover::before {
    opacity: 1;
}

.oi-stop-card__number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 76px;
    line-height: 1;
    color: rgba(200, 155, 79, .14);
    z-index: 1;
}

.oi-stop-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .32;
    filter: saturate(.9) contrast(1.05);
    transition: transform .55s ease, opacity .55s ease;
}

.oi-stop-card:hover img {
    transform: scale(1.05);
    opacity: .42;
}

.oi-stop-card>div:last-child {
    position: relative;
    z-index: 2;
}

.oi-stop-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--oi-gold);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 800;
}

.oi-stop-card h3,
.oi-extra-grid h3,
.oi-related-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    margin: 14px 0 14px;
    color: #fff;
}

.oi-stop-card p,
.oi-extra-grid p,
.oi-related-card p,
.oi-cta-box p {
    color: rgba(244, 241, 234, .70);
    line-height: 1.72;
    font-size: 15px;
    margin: 0;
}

/* ================================================================
   INCLUDED - CREAM
================================================================ */
.oceanic-onboard-section {
    position: relative;
    padding: 110px 20px;
    background:
        radial-gradient(circle at top right, rgba(184, 129, 77, 0.12), transparent 34%),
        linear-gradient(180deg, #061827 0%, #03111d 100%);
    color: #f6f1e8;
    overflow: hidden;
}

.oceanic-onboard-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
}

.oceanic-onboard-inner {
    position: relative;
    z-index: 2;
    max-width: 1450px;
    margin: 0 auto;
}

.oceanic-onboard-head {
    max-width: 720px;
    margin-bottom: 60px;
}

.oceanic-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b98250;
}

.oceanic-onboard-head h2 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: clamp(46px, 6vw, 86px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: #fffaf2;
    text-transform: uppercase;
}

.oceanic-onboard-subtitle {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.35;
    color: rgba(246, 241, 232, 0.78);
}

.oceanic-onboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(185, 130, 80, 0.35);
    border-left: 1px solid rgba(185, 130, 80, 0.25);
}

.oceanic-onboard-card {
    position: relative;
    min-height: 500px;
    padding: 34px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(185, 130, 80, 0.25);
    border-bottom: 1px solid rgba(185, 130, 80, 0.35);
    background: rgba(255, 255, 255, 0.025);
    transition: all 0.35s ease;
}

.oceanic-onboard-card:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-6px);
}

.oceanic-card-number {
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: 58px;
    line-height: 1;
    color: var(--oi-gold);
}

.oceanic-card-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oi-gold);
}

.oceanic-card-content h3 {
    margin: 0 0 22px;
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #fffaf2;
}

.oceanic-card-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(246, 241, 232, 0.72);
}

.oceanic-onboard-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-top: 46px;
}

.oceanic-onboard-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 48px;
    padding: 15px 26px;
    background: #b98250;
    color: #fffaf2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #b98250;
    transition: all 0.3s ease;
}

.oceanic-onboard-cta:hover {
    background: transparent;
    color: #b98250;
}

.oceanic-apa-note {
    font-family: 'Manrope', sans-serif;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(246, 241, 232, 0.48);
}

.oceanic-apa-note strong {
    display: block;
    margin-bottom: 4px;
    color: rgba(246, 241, 232, 0.68);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.oceanic-apa-note em {
    font-style: normal;
    color: rgba(246, 241, 232, 0.58);
}

/* Tablet */
@media (max-width: 1024px) {
    .oceanic-onboard-section {
        padding: 90px 20px;
    }

    .oceanic-onboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oceanic-onboard-card {
        min-height: 420px;
    }

    .oceanic-onboard-bottom {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .oceanic-onboard-section {
        padding: 30px 35px;
    }

    .oceanic-onboard-head {
        margin-bottom: 42px;
    }

    .oceanic-onboard-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .oceanic-onboard-card {
        min-height: auto;
        gap: 70px;
        padding: 30px 24px;
        margin-bottom: 20px;
    }

    .oceanic-card-number {
        font-size: 46px;
    }

    .oceanic-card-content h3 {
        font-size: 34px;
    }

    .oceanic-onboard-cta {
        width: 100%;
    }

    .oceanic-apa-note {
        font-size: 16px;
    }
}

/* ================================================================
   EXTRA
================================================================ */

.oi-percorso-extra {
    background:
        radial-gradient(circle at 16% 16%, rgba(200, 155, 79, .10), transparent 34%),
        linear-gradient(180deg, #061625 0%, #081d2f 100%);
}

.oi-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.oi-extra-grid article {
    min-height: 230px;
    padding: 30px;
    border: 1px solid rgba(200, 155, 79, .24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
        #0b2033;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
    transition: transform .32s ease, border-color .32s ease;
}

.oi-extra-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 155, 79, .52);
}

.oi-extra-grid article>span i {
    color: #b58458;
    font-size: 35px;
}

.oi-extra-grid article>span {
    background: rgba(200, 155, 79, .08);
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 80px;
    border-radius: 100%;
}

/* ================================================================
   GALLERY
================================================================ */

.oi-percorso-gallery {
    background: var(--oi-navy);
}

.oi-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 14px;
}

.oi-gallery-grid img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    filter: saturate(.92) contrast(1.04);
    transition: transform .45s ease, filter .45s ease;
}

.oi-gallery-grid img:hover {
    transform: scale(1.025);
    filter: saturate(1.06) contrast(1.08);
}

.oi-gallery-grid img:first-child {
    grid-row: span 2;
    height: 674px;
}

/* ================================================================
   INFO - CREAM
================================================================ */

.oi-percorso-info {
    background:
        linear-gradient(180deg, var(--oi-cream), var(--oi-cream-2));
    color: var(--oi-dark-text);
}

.oi-map-card img {
    width: 100%;
    height: 100%;
    /*min-height: 520px;
    object-fit: cover;*/
    border: 1px solid rgba(6, 22, 37, .08);
    box-shadow: var(--oi-shadow-soft);
}

.oi-info-card {
    height: 100%;
    border: 1px solid rgba(6, 22, 37, .08);
    padding: 52px;
    background: #fff;
    color: var(--oi-dark-text);
    box-shadow: var(--oi-shadow-soft);
}

.oi-info-card h2 {
    color: var(--oi-dark-text);
}

.oi-info-card ul {
    list-style: none;
    padding: 0;
    margin: 36px 0;
}

.oi-info-card li {
    border-bottom: 1px solid rgba(6, 22, 37, .10);
    padding: 19px 0;
}

.oi-info-card li:first-child {
    padding-top: 0;
}

.oi-info-card .oi-btn--ghost {
    color: var(--oi-dark-text);
    background: transparent;
}

/* ================================================================
   FAQ - CREAM
================================================================ */

.oi-percorso-faq {
    background: var(--oi-cream);
    color: var(--oi-dark-text);
}

.oi-percorso-faq h2 {
    color: var(--oi-dark-text);
}

.oi-faq-list {
    display: grid;
    gap: 14px;
}

.oi-faq-list details {
    border: 1px solid rgba(6, 22, 37, .08);
    background: #fff;
    color: var(--oi-dark-text);
    padding: 0;
    box-shadow: 0 10px 28px rgba(6, 22, 37, .045);
    overflow: hidden;
}

.oi-faq-list summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    font-size: 19px;
    color: var(--oi-dark-text);
    padding: 24px 58px 24px 28px;
    font-weight: 600;
}

.oi-faq-list summary::-webkit-details-marker {
    display: none;
}

.oi-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--oi-gold);
    font-size: 26px;
    font-weight: 300;
}

.oi-faq-list details[open] summary::after {
    content: "\2013";
}

.oi-faq-list p {
    color: var(--oi-dark-muted);
    line-height: 1.75;
    margin: 0;
    padding: 0 28px 26px;
}

/* ================================================================
   CTA
================================================================ */

.oi-percorso-cta {
    background:
        radial-gradient(circle at 86% 20%, rgba(200, 155, 79, .16), transparent 30%),
        linear-gradient(180deg, #061625 0%, #081d2f 100%);
}

.oi-cta-box {
    position: relative;
    overflow: hidden;
    padding: 76px;
    border: 1px solid rgba(200, 155, 79, .42);
    background:
        linear-gradient(135deg, rgba(200, 155, 79, .16), rgba(255, 255, 255, .025)),
        #0b2033;
    box-shadow: var(--oi-shadow-dark);
}

.oi-cta-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 18%, rgba(200, 155, 79, .16), transparent 28%),
        linear-gradient(90deg, rgba(6, 22, 37, 0), rgba(6, 22, 37, .42));
    pointer-events: none;
}

.oi-cta-box>* {
    position: relative;
    z-index: 1;
}

.oi-cta-box p {
    max-width: 760px;
    font-size: 18px;
    margin: 24px 0 34px;
}

/* ================================================================
   RELATED
================================================================ */

.oi-related {
    background: #061625;
}

.oi-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.oi-related-card {
    display: block;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(200, 155, 79, .24);
    background: rgba(255, 255, 255, .035);
    overflow: hidden;
    transition: transform .32s ease, border-color .32s ease;
}

.oi-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 155, 79, .55);
}

.oi-related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    filter: saturate(.94) contrast(1.04);
}

.oi-related-card div {
    padding: 28px;
}

/* ================================================================
   RESPONSIVE
================================================================ */

@media (max-width: 1180px) {

    .oi-percorso-hero__inner,
    .oi-grid-2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .oi-percorso-facts {
        max-width: 620px;
    }

    .oi-included-grid,
    .oi-extra-grid,
    .oi-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oi-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .oi-gallery-grid img:first-child {
        grid-row: auto;
        height: 330px;
    }
}

@media (max-width: 767px) {
    .oi-container {
        width: min(100% - 32px, 1440px);
    }

    .oi-kicker {
        font-size: 10px;
        letter-spacing: .15em;
    }

    .oi-kicker::before {
        width: 22px;
    }

    .oi-percorso-hero {
        min-height: 50vh 381.5px;
        padding: 80px 0 52px;
    }

    .oi-percorso-hero h1 {
        font-size: 35px;
        line-height: 1.2;
        margin: 0;
    }

    .oi-percorso-hero p {
        font-size: 16px;
        margin-top: 10px;
    }

    .oi-percorso-hero__actions,
    .oi-btn {
        width: 100%;
    }

    .oi-percorso-facts {
        padding: 24px;
    }

    .oi-percorso-intro,
    .oi-percorso-stops,
    .oi-percorso-included,
    .oi-percorso-extra,
    .oi-percorso-gallery,
    .oi-percorso-info,
    .oi-percorso-faq,
    .oi-percorso-cta,
    .oi-related {
        padding: 30px 10px;
    }

    .oi-percorso-intro h2, .oi-section-head h2, .oi-info-card h2, .oi-cta-box h2 {
        font-size: 35px;
        line-height: 1.2;
        margin: 0;
    }

    .oi-grid-2 {
        gap: 36px;
    }

    .oi-percorso-intro::before {
        display: none;
    }

    .oi-percorso-intro blockquote,
    .oi-info-card,
    .oi-cta-box {
        padding: 30px;
    }

    .oi-stops-list,
    .oi-included-grid,
    .oi-extra-grid,
    .oi-gallery-grid,
    .oi-related-grid {
        grid-template-columns: 1fr;
    }

    .oi-stop-card {
        min-height: 280px;
        padding: 26px;
    }

    .oi-stop-card__number {
        font-size: 52px;
    }

    .oi-gallery-grid img,
    .oi-gallery-grid img:first-child {
        height: 260px;
    }

    .oi-map-card img {
        min-height: 320px;
    }
}