@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
    --geaz-bg: #f4f2eb;
    --geaz-paper: #fff;
    --geaz-ink: #171b18;
    --geaz-muted: #69706b;
    --geaz-line: #d9ddd7;
    --geaz-green: #315943;
    --geaz-green-dark: #122119;
    --geaz-lime: #d9ef70;
    --geaz-header-h: 94px;
    --geaz-container: 1380px
}

* {
    box-sizing: border-box
}

.geaz-site-main,
.geaz-footer,
.geaz-site-header {
    font-family: "Manrope", Arial, sans-serif
}

.geaz-container {
    width: min(calc(100% - 80px), var(--geaz-container));
    margin-inline: auto
}

.geaz-homepage {
    background: var(--geaz-bg);
    color: var(--geaz-ink)
}

.geaz-homepage a,
.geaz-footer a,
.geaz-site-header a {
    text-decoration: none
}

.geaz-homepage img {
    display: block;
    width: 100%;
    height: auto
}

/* Header */
.geaz-site-header {
    position: fixed;
    z-index: 9999;
    inset: 0 0 auto;
    color: #fff;
    transition: background-color .3s, color .3s, box-shadow .3s, transform .3s
}

.admin-bar .geaz-site-header {
    top: 32px
}

.geaz-site-header.is-scrolled,
.body:not(.page-template-homepage) .geaz-site-header {
    color: var(--geaz-ink);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    backdrop-filter: blur(14px)
}

.geaz-header-inner {
    width: min(calc(100% - 64px), 1500px);
    height: var(--geaz-header-h);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px
}

.geaz-header-nav-wrap {
    justify-self: start
}

.geaz-desktop-nav .geaz-menu {
    display: flex;
    gap: clamp(14px, 1.45vw, 28px);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none
}

.geaz-desktop-nav .geaz-menu>li {
    position: relative;
    margin: 0
}

.geaz-desktop-nav a,
.geaz-personal-area {
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em
}

.geaz-desktop-nav .sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    min-width: 220px;
    margin: 0;
    padding: 12px;
    background: #fff;
    color: var(--geaz-ink);
    list-style: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s
}

.geaz-desktop-nav li:hover>.sub-menu,
.geaz-desktop-nav li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.geaz-desktop-nav .sub-menu li {
    margin: 0
}

.geaz-desktop-nav .sub-menu a {
    display: block;
    padding: 11px 12px;
    font-size: 12px
}

.geaz-desktop-nav .sub-menu a:hover {
    background: #f3f3ef
}

.geaz-brand {
    justify-self: center;
    display: flex;
    align-items: center
}

.geaz-brand img {
    width: 157px;
    max-height: 70px;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    transition: filter .3s
}

.geaz-site-header.is-scrolled .geaz-brand img {
    filter: none
}

.geaz-header-actions {
    justify-self: end
}

.geaz-personal-area {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.geaz-personal-area__icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%
}

.geaz-menu-toggle,
.geaz-mobile-menu {
    display: none
}

/* Common */
.geaz-section {
    padding: 110px 0
}

.geaz-section--soft {
    background: #e9ebe5
}

.geaz-eyebrow {
    margin: 0 0 13px;
    color: var(--geaz-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.geaz-eyebrow--light {
    color: var(--geaz-lime)
}

.geaz-section-heading {
    margin-bottom: 48px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px
}

.geaz-section-heading h2,
.geaz-footer__claim h2 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.035em;
    text-transform: uppercase
}

.geaz-btn {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    transition: .25s
}

.geaz-btn:hover {
    transform: translateY(-2px)
}

.geaz-btn--light {
    color: var(--geaz-green-dark) !important;
    background: #fff
}

.geaz-btn--light:hover {
    background: var(--geaz-lime)
}

.geaz-btn--outline {
    color: var(--geaz-ink) !important;
    border-color: #aeb5ad;
    background: transparent
}

.geaz-btn--outline:hover {
    border-color: var(--geaz-ink);
    background: #fff
}

.geaz-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    color: inherit
}

.geaz-text-link span {
    transition: transform .25s
}

.geaz-text-link:hover span {
    transform: translate(3px, -3px)
}

.geaz-text-link--light {
    color: #fff !important
}

.geaz-empty-state {
    grid-column: 1/-1;
    padding: 30px 0
}

/* Hero */
.geaz-hero-slider {
    position: relative;
    min-height: 700px;
    height: 100svh;
    overflow: hidden;
    background: #111
}

.geaz-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    padding: calc(var(--geaz-header-h) + 60px) 0 110px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity .9s, visibility .9s, transform 6s
}

.geaz-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.geaz-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-bottom: 25px
}

.geaz-hero-content h1,
.geaz-hero-content h2 {
    max-width: 880px;
    margin: 0 0 22px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(70px, 9.2vw, 145px);
    font-weight: 600;
    line-height: .84;
    letter-spacing: -.045em;
    text-transform: uppercase;
    color: #fff
}

.geaz-hero-description {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: 17px;
    line-height: 1.55;
    color: #fff
}

.geaz-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap
}

.geaz-slider-controls {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 24px
}

.geaz-slider-controls__inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.geaz-slider-dots {
    display: flex;
    gap: 9px
}

.geaz-slider-dot {
    width: 34px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .42);
    cursor: pointer
}

.geaz-slider-dot.is-active {
    background: #fff
}

.geaz-slider-nav {
    display: flex;
    gap: 8px
}

.geaz-slider-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(0, 0, 0, .08);
    font-size: 18px;
    cursor: pointer
}

.geaz-slider-nav button:hover {
    background: #fff;
    color: #111
}

/* Trips */
.geaz-trip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px
}

.geaz-trip-card {
    min-width: 0;
    background: #fff;
    overflow: visible
}

.geaz-trip-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.35/1
}

.geaz-trip-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s
}

.geaz-trip-card:hover .geaz-trip-card__image img {
    transform: scale(1.035)
}

.geaz-trip-tags {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
    max-width: 82%
}

.geaz-trip-tag {
    padding: 7px 10px;
    color: #fff;
    background: rgba(18, 33, 25, .94);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase
}

.geaz-trip-tag--vip {
    color: var(--geaz-green-dark);
    background: var(--geaz-lime)
}

.geaz-trip-card__content {
    position: relative;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    min-height: 270px
}

.geaz-trip-date-badge {
    position: relative;
    z-index: 4;
    align-self: start;
    margin-top: -53px;
    margin-left: 18px;
    width: 74px;
    min-height: 122px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--geaz-green-dark);
    background: var(--geaz-lime);
    box-shadow: none
}

.geaz-trip-date-badge strong {
    font-family: "Oswald", sans-serif;
    font-size: 47px;
    line-height: .85
}

.geaz-trip-date-badge span {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 900
}

.geaz-trip-date-badge small {
    margin-top: 3px;
    font-size: 9px;
    font-weight: 800
}

.geaz-trip-card__main {
    padding: 31px 28px 0 12px;
    display: flex;
    flex-direction: column;
    min-width: 0
}

.geaz-trip-card__weekday {
    margin: 0 0 7px;
    color: var(--geaz-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.geaz-trip-card__heading h3 {
    margin: 0 0 24px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(27px, 2.25vw, 39px);
    line-height: 1;
    letter-spacing: -.025em;
    text-transform: uppercase;
    color: var(--geaz-ink)
}

.geaz-trip-card__heading h3 a {
    color: inherit
}

.geaz-trip-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 17px 0;
    border-top: 1px solid var(--geaz-line);
    border-bottom: 1px solid var(--geaz-line)
}

.geaz-trip-stats>div {
    position: relative;
    padding-left: 22px;
    display: grid
}

.geaz-stat-icon {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 13px
}

.geaz-trip-stats small {
    font-size: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--geaz-muted)
}

.geaz-trip-stats strong {
    font-size: 11px;
    line-height: 1.45
}

.geaz-trip-card__footer {
    margin-top: auto;
    padding: 25px 0 30px;
    text-align: left
}

/* News */
.geaz-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px
}

.geaz-news-card {
    background: #fff
}

.geaz-news-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.55/1
}

.geaz-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.geaz-news-card:hover img {
    transform: scale(1.035)
}

.geaz-news-card__content {
    padding: 28px
}

.geaz-news-date {
    margin: 0 0 12px;
    color: var(--geaz-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em
}

.geaz-news-card h3 {
    margin: 0 0 13px;
    font-family: "Oswald", sans-serif;
    font-size: 31px;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--geaz-ink)
}

.geaz-news-card h3 a {
    color: inherit
}

.geaz-news-card__content>p:not(.geaz-news-date) {
    min-height: 72px;
    color: var(--geaz-muted);
    font-size: 13px;
    line-height: 1.65
}

/* Activities – restyle existing shortcode markup */
.geaz-activities-wrap .list-item,
.geaz-activities-wrap .item-wrap {
    width: 100%;
    margin: 0;
    padding: 0
}

.geaz-activities-wrap .item-wrap {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    list-style: none
}

.geaz-activities-wrap .item-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--geaz-green-dark);
    list-style: none !important
}

.geaz-activities-wrap .item-cover {
    position: absolute;
    inset: 0;
    display: block
}

.geaz-activities-wrap .item-cover:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 15, 10, .05), rgba(5, 15, 10, .78))
}

.geaz-activities-wrap .item-cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important
}

.geaz-activities-wrap .item-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    color: #fff
}

.geaz-activities-wrap .item-title {
    margin: 0 0 10px;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    line-height: 1;
    text-transform: uppercase
}

.geaz-activities-wrap .item-title a {
    color: #fff
}

.geaz-activities-wrap .libretto-desc {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.55
}

.geaz-activities-wrap .btn-item {
    display: inline-flex;
    padding: 12px 16px;
    background: #fff;
    color: var(--geaz-green-dark);
    font-size: 11px;
    font-weight: 800
}

/* Booklet keeps existing shortcode visual, isolated */
.geaz-booklet-section {
    overflow: hidden;
    background: var(--geaz-green-dark)
}

/* Useful links – restyle existing shortcode */
.geaz-useful-links {
    background: #fff
}

.geaz-useful-links .slider-link {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--geaz-line);
    overflow: visible !important
}

.geaz-useful-links .link-item {
    background: #fff !important;
    margin: 0 !important;
    width: auto !important
}

.geaz-useful-links .link-item a {
    min-height: 135px;
    padding: 26px;
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--geaz-ink) !important;
    background: #fff !important
}

.geaz-useful-links .link-item a:after {
    content: "↗";
    font-size: 16px
}

.geaz-useful-links .link-item__name {
    font-family: "Oswald", sans-serif;
    font-size: 23px;
    text-transform: uppercase
}

/* Footer */
.geaz-footer {
    padding: 90px 0 30px;
    color: #fff;
    background: var(--geaz-green-dark)
}

.geaz-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding-bottom: 70px
}

.geaz-footer__cols {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 35px
}

.geaz-footer__cols h3 {
    margin: 0 0 18px;
    color: var(--geaz-lime);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.geaz-footer__cols a {
    display: block;
    margin: 0 0 11px;
    color: #fff;
    font-size: 13px
}

.geaz-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none
}

.geaz-footer-menu li {
    margin: 0
}

.geaz-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* Non-home pages: make room for fixed header */
body:not(.page-template-homepage) .geaz-site-main {
    padding-top: var(--geaz-header-h)
}

@media(max-width:1180px) {
    .geaz-desktop-nav {
        display: none
    }

    .geaz-menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 9px 6px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        border: 0;
        background: transparent
    }

    .geaz-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: currentColor
    }

    .geaz-header-inner {
        grid-template-columns: 1fr auto 1fr
    }

    .geaz-trip-grid,
    .geaz-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .geaz-trip-card:last-child,
    .geaz-news-card:last-child {
        display: none
    }

    .geaz-activities-wrap .item-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .geaz-useful-links .slider-link {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .geaz-mobile-menu {
        display: block;
        position: fixed;
        top: var(--geaz-header-h);
        left: 0;
        right: 0;
        max-height: calc(100vh - var(--geaz-header-h));
        overflow: auto;
        background: #fff;
        color: var(--geaz-ink);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .25s
    }

    .admin-bar .geaz-mobile-menu {
        top: calc(var(--geaz-header-h) + 32px)
    }

    .geaz-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .geaz-mobile-menu__inner {
        padding: 24px 32px 35px
    }

    .geaz-mobile-menu-list,
    .geaz-mobile-menu-list .sub-menu {
        margin: 0;
        padding: 0;
        list-style: none
    }

    .geaz-mobile-menu-list>li>a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #e5e5e1;
        font-weight: 800
    }

    .geaz-mobile-menu-list .sub-menu a {
        display: block;
        padding: 10px 0 10px 18px;
        color: #555
    }

    .geaz-mobile-personal {
        display: block;
        margin-top: 20px;
        font-weight: 800
    }
}

@media(max-width:782px) {
    .admin-bar .geaz-site-header {
        top: 46px
    }

    .admin-bar .geaz-mobile-menu {
        top: calc(var(--geaz-header-h) + 46px)
    }
}

@media(max-width:760px) {
    :root {
        --geaz-header-h: 74px
    }

    .geaz-container {
        width: min(calc(100% - 36px), var(--geaz-container))
    }

    .geaz-header-inner {
        width: calc(100% - 30px);
        height: var(--geaz-header-h)
    }

    .geaz-brand img {
        width: 112px
    }

    .geaz-personal-area {
        font-size: 0
    }

    .geaz-personal-area__icon {
        font-size: 12px
    }

    .geaz-section {
        padding: 76px 0
    }

    .geaz-section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px
    }

    .geaz-section-heading h2,
    .geaz-footer__claim h2 {
        font-size: 48px
    }

    .geaz-hero-slider {
        min-height: 650px;
        height: 88svh
    }

    .geaz-hero-slide {
        padding: 120px 0 90px
    }

    .geaz-hero-content {
        padding-bottom: 30px
    }

    .geaz-hero-content h1,
    .geaz-hero-content h2 {
        font-size: clamp(56px, 17vw, 92px)
    }

    .geaz-hero-description {
        font-size: 14px
    }

    .geaz-slider-controls {
        bottom: 16px
    }

    .geaz-slider-dots {
        display: none
    }

    .geaz-slider-nav {
        margin-left: auto
    }

    .geaz-trip-grid,
    .geaz-news-grid,
    .geaz-activities-wrap .item-wrap,
    .geaz-useful-links .slider-link {
        grid-template-columns: 1fr
    }

    .geaz-trip-card:last-child,
    .geaz-news-card:last-child {
        display: block
    }

    .geaz-trip-card__content {
        grid-template-columns: 82px 1fr
    }

    .geaz-trip-date-badge {
        margin-left: 12px;
        width: 68px
    }

    .geaz-trip-card__main {
        padding-right: 18px
    }

    .geaz-trip-stats {
        gap: 8px
    }

    .geaz-footer__top {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .geaz-footer__cols {
        grid-template-columns: 1fr 1fr
    }

    .geaz-footer__bottom {
        flex-direction: column
    }

    .geaz-useful-links .link-item a {
        min-height: 95px
    }

    .geaz-activities-wrap .item-card {
        min-height: 390px
    }
}


 /* ==========================================================
   GEAZ - NUOVA CARD USCITE 2026
   ========================================================== */

                .geaz-trip-grid {
                    display: grid;
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                    gap: 28px;
                }


                /* ==========================================================
   CARD
   ========================================================== */

                .geaz-trip-card {
                    --geaz-accent: #d8f45a;
                    --geaz-dark: #111915;
                    --geaz-green: #0d3b27;
                    --geaz-border: #ddddda;

                    position: relative;

                    min-width: 0;

                    background: #fff;

                    overflow: hidden;

                    box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
                }


                /* ==========================================================
   RIBBON VIP
   ========================================================== */

                .geaz-trip-card__ribbon {

                    position: absolute;

                    top: 21px;
                    right: -45px;

                    z-index: 20;

                    width: 150px;

                    padding: 8px 0;

                    background: var(--geaz-accent);

                    color: #111;

                    font-size: 13px;
                    font-weight: 900;

                    letter-spacing: .10em;

                    text-align: center;

                    transform: rotate(45deg);

                    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
                }


                /* ==========================================================
   HERO
   DATA + #NUMERO + TITOLO
   ========================================================== */

                .geaz-trip-card__hero {

                    position: relative;

                    display: grid;

                    grid-template-columns: 92px minmax(0, 1fr);

                    align-items: center;

                    gap: 20px;

                    min-height: 280px;

                    padding: 30px 25px;

                    background-color: #fff;

                    background-size: cover;
                    background-position: center;

                    overflow: hidden;
                }


                /* Se abbiamo immagine */

                .geaz-trip-card--has-image .geaz-trip-card__hero {

                    min-height: 315px;
                }


                /* Ombreggiatura sopra immagine */

                .geaz-trip-card__overlay {

                    position: absolute;

                    inset: 0;

                    z-index: 1;

                    background:
                        linear-gradient(90deg,
                            rgba(0, 0, 0, .65) 0%,
                            rgba(0, 0, 0, .45) 45%,
                            rgba(0, 0, 0, .20) 75%,
                            rgba(0, 0, 0, .12) 100%),
                        linear-gradient(0deg,
                            rgba(0, 0, 0, .35) 0%,
                            rgba(0, 0, 0, 0) 65%);
                }


                /*
 * Badge e titolo devono stare sopra all'overlay
 */

                .geaz-trip-date-badge,
                .geaz-trip-card__heading {

                    position: relative;

                    z-index: 5;
                }


                /* ==========================================================
   BADGE DATA
   ========================================================== */

                .geaz-trip-date-badge {

                    width: 92px;
                    min-height: 215px;

                    padding: 16px 10px;

                    background: var(--geaz-accent);

                    border-radius: 11px;

                    color: var(--geaz-dark);

                    display: flex;
                    flex-direction: column;

                    align-items: center;
                    justify-content: center;

                    text-align: center;

                    box-sizing: border-box;
                }


                .geaz-trip-date-badge strong {

                    display: block;

                    font-size: 52px;
                    line-height: .9;

                    font-weight: 900;
                }


                .geaz-trip-date-badge>span {

                    display: block;

                    width: 100%;

                    margin-top: 15px;
                    padding-top: 12px;

                    border-top: 1px solid rgba(0, 0, 0, .35);

                    font-size: 17px;
                    line-height: 1;

                    font-weight: 900;
                }


                .geaz-trip-date-badge small {

                    display: block;

                    margin-top: 8px;

                    font-size: 11px;

                    font-weight: 700;

                    letter-spacing: .10em;
                }


                /* ==========================================================
   ICONA NEL BADGE DATA
   ========================================================== */

                .geaz-trip-date-badge__icon {

                    width: 100%;

                    margin-top: 14px;
                    padding-top: 13px;

                    /*border-top: 1px solid rgba(0, 0, 0, .35);*/

                    display: flex;

                    align-items: center;
                    justify-content: center;
                }


                .geaz-trip-date-badge__icon img {

                    display: block;

                    width: 34px;
                    height: 34px;

                    object-fit: contain;
                }


                /* ==========================================================
   HEADING
   ========================================================== */

                .geaz-trip-card__heading {

                    min-width: 0;

                    padding-right: 5px;
                }


                /* #26 */

                .geaz-trip-card__number {

                    display: flex;

                    align-items: center;

                    gap: 9px;

                    margin: 0 0 17px 0;

                    color: #555;

                    font-size: 16px;
                    line-height: 1;

                    font-weight: 800;
                }


                .geaz-trip-card__number>span {

                    display: block;

                    width: 4px;
                    height: 24px;

                    background: var(--geaz-accent);
                }


                /* ==========================================================
   TITOLO
   ========================================================== */

                .geaz-trip-card__heading h3 {

                    margin: 0;

                    font-size: 32px;
                    line-height: .98;

                    font-weight: 900;

                    text-transform: uppercase;

                    letter-spacing: -.025em;

                    overflow-wrap: break-word;
                }


                .geaz-trip-card__heading h3 a {

                    color: var(--geaz-dark);

                    text-decoration: none;
                }


                /* ==========================================================
   VERSIONE CON IMMAGINE
   ========================================================== */

                .geaz-trip-card--has-image .geaz-trip-card__heading h3 a {

                    color: #fff;

                    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
                }


                .geaz-trip-card--has-image .geaz-trip-card__number {

                    color: #fff;
                }


                /* ==========================================================
   BODY
   ========================================================== */

                .geaz-trip-card__body {

                    padding: 0 24px;

                    background: #fff;
                }


                /* ==========================================================
   STATISTICHE
   ========================================================== */

                .geaz-trip-stats {

                    display: grid;

                    grid-template-columns: repeat(3, minmax(0, 1fr));

                    padding: 25px 0;

                    border-bottom: 1px solid var(--geaz-border);
                }


                .geaz-trip-stat {

                    min-width: 0;

                    display: flex;
                    flex-direction: column;

                    align-items: center;

                    padding: 0 10px;

                    text-align: center;
                }


                .geaz-trip-stat+.geaz-trip-stat {

                    border-left: 1px solid var(--geaz-border);
                }


                .geaz-stat-icon {

                    display: flex;

                    align-items: center;
                    justify-content: center;

                    min-height: 27px;

                    margin-bottom: 7px;

                    color: var(--geaz-green);

                    font-size: 24px;

                    line-height: 1;
                }


                .geaz-trip-stat small {

                    display: block;

                    margin-bottom: 6px;

                    color: #707070;

                    font-size: 10px;
                    line-height: 1.2;

                    text-transform: uppercase;

                    letter-spacing: .04em;
                }


                .geaz-trip-stat strong {

                    display: block;

                    color: #111;

                    font-size: 16px;
                    line-height: 1.2;

                    font-weight: 800;

                    word-break: normal;
                }


                /* ==========================================================
   FOOTER
   ========================================================== */

                .geaz-trip-card__footer {

                    padding: 20px 0 22px;
                }


                .geaz-trip-card__footer .geaz-text-link {

                    display: flex;

                    align-items: center;

                    justify-content: space-between;

                    width: 100%;

                    color: var(--geaz-green);

                    font-size: 15px;

                    font-weight: 800;

                    text-decoration: none;
                }


                .geaz-trip-card__footer .geaz-text-link span {

                    font-size: 23px;

                    transition: transform .2s ease;
                }


                .geaz-trip-card__footer .geaz-text-link:hover span {

                    transform: translateX(5px);
                }


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

                @media (max-width: 1100px) {

                    .geaz-trip-grid {

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

                }


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

                @media (max-width: 700px) {

                    .geaz-trip-grid {

                        grid-template-columns: 1fr;

                        gap: 22px;
                    }


                    .geaz-trip-card__hero {

                        grid-template-columns: 88px minmax(0, 1fr);

                        gap: 17px;

                        min-height: 245px;

                        padding: 24px 18px;
                    }


                    .geaz-trip-card--has-image .geaz-trip-card__hero {

                        min-height: 275px;
                    }


                    /* DATA */

                    .geaz-trip-date-badge {

                        width: 88px;
                        min-height: 195px;

                        padding: 13px 9px;
                    }


                    .geaz-trip-date-badge strong {

                        font-size: 48px;
                    }


                    .geaz-trip-date-badge>span {

                        margin-top: 11px;
                        padding-top: 10px;

                        font-size: 15px;
                    }


                    .geaz-trip-date-badge small {

                        font-size: 10px;
                    }


                    .geaz-trip-date-badge__icon {

                        margin-top: 11px;
                        padding-top: 10px;
                    }


                    .geaz-trip-date-badge__icon img {

                        width: 29px;
                        height: 29px;
                    }


                    /* NUMERO */

                    .geaz-trip-card__number {

                        margin-bottom: 12px;

                        font-size: 13px;
                    }


                    .geaz-trip-card__number>span {

                        width: 3px;
                        height: 19px;
                    }


                    /* TITOLO */

                    .geaz-trip-card__heading h3 {

                        font-size: clamp(26px, 8vw, 38px);
                    }


                    /* BODY */

                    .geaz-trip-card__body {

                        padding: 0 18px;
                    }


                    .geaz-trip-stats {

                        padding: 22px 0;
                    }


                    .geaz-trip-stat {

                        padding: 0 5px;
                    }


                    .geaz-stat-icon {

                        font-size: 22px;
                    }


                    .geaz-trip-stat small {

                        font-size: 9px;
                    }


                    .geaz-trip-stat strong {

                        font-size: 15px;
                    }


                    .geaz-trip-card__footer {

                        padding: 18px 0;
                    }

                }


                /* ==========================================================
   FIX ALLINEAMENTO CARD
   Da mettere DOPO il vecchio CSS
   ========================================================== */


                /* Tutte le card della stessa riga hanno la stessa altezza */
                .geaz-trip-grid {
                    align-items: stretch;
                }


                /* La card diventa una colonna flex */
                .geaz-trip-card {
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                }


                /* ==========================================================
   1. FIX BADGE DATA TROPPO VICINO AL BORDO
   ========================================================== */

                .geaz-trip-date-badge {
                    /*
     * Reset di eventuali vecchie regole
     * del precedente layout
     */
                    position: relative;

                    top: auto !important;
                    bottom: auto !important;
                    left: auto !important;
                    right: auto !important;

                    transform: none !important;

                    margin: 0;

                    /*
     * Lo centra verticalmente
     * rispetto alla parte superiore della card
     */
                    align-self: center;
                }


                /* Hero con spazio sicuro sopra e sotto */
                .geaz-trip-card__hero {
                    box-sizing: border-box;

                    padding-top: 32px;
                    padding-bottom: 32px;

                    min-height: 280px;
                }


                /* ==========================================================
   2. STATISTICHE SEMPRE DELLA STESSA ALTEZZA
   ========================================================== */

                .geaz-trip-card__body {
                    flex: 1;

                    display: flex;
                    flex-direction: column;
                }


                /*
 * Questa zona prende tutto lo spazio disponibile.
 * In questo modo la linea sopra "Dettagli uscita"
 * sarà sempre alla stessa altezza.
 */
                .geaz-trip-stats {
                    flex: 1;

                    min-height: 145px;

                    box-sizing: border-box;

                    align-items: center;
                }


                /* Il footer rimane sempre in fondo */
                .geaz-trip-card__footer {
                    flex: 0 0 auto;
                }


/* ==========================================================
   FIX DEFINITIVO DOPPIA LINEA BADGE DATA
   ========================================================== */

/* Tolgo qualsiasi bordo dal blocco anno */
.geaz-trip-date-badge small {
    border: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Tolgo eventuali pseudo-elementi ereditati */
.geaz-trip-date-badge small::before,
.geaz-trip-date-badge small::after {
    content: none !important;
    display: none !important;
}


/* Tolgo QUALSIASI bordo dal contenitore icona */
.geaz-trip-date-badge__icon {
    position: relative;

    border: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;

    box-shadow: none !important;

    width: 100%;

    margin-top: 14px;
    padding-top: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Tolgo eventuali bordi anche all'SVG */
.geaz-trip-date-badge__icon svg,
.geaz-trip-date-badge__icon img {
    border: 0 !important;
    box-shadow: none !important;
}


/* UNA SOLA linea, creata esplicitamente da noi */
.geaz-trip-date-badge__icon::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(0, 0, 0, .35);
}


/* Nessun altro pseudo-elemento */
.geaz-trip-date-badge__icon::after {
    content: none !important;
    display: none !important;
}


/* ==========================================================
   FIX SEPARATORI STATISTICHE
   Tutte le linee verticali hanno la stessa altezza
   ========================================================== */

.geaz-trip-stats {
    align-items: stretch;
}


/* Ogni colonna occupa tutta l'altezza disponibile */
.geaz-trip-stat {
    position: relative;

    align-self: stretch;
    height: 100%;

    border-left: 0 !important;
}


/* Disattivo definitivamente il vecchio separatore */
.geaz-trip-stat + .geaz-trip-stat {
    border-left: 0 !important;
}


/* Nuovo separatore controllato */
.geaz-trip-stat + .geaz-trip-stat::before {
    content: "";

    position: absolute;

    left: 0;

    top: 8px;
    bottom: 8px;

    width: 1px;

    background: var(--geaz-border, #ddddda);
}

/* ==========================================================
   FIX SPAZIO LINEE / ICONE STATISTICHE
   ========================================================== */

.geaz-trip-stats > .geaz-trip-stat {
    position: relative;
    box-sizing: border-box;
}


/* Seconda e terza colonna */
.geaz-trip-stats > .geaz-trip-stat:nth-child(2),
.geaz-trip-stats > .geaz-trip-stat:nth-child(3) {
    padding-left: 18px !important;
}


/* Separatore */
.geaz-trip-stats > .geaz-trip-stat:nth-child(2)::before,
.geaz-trip-stats > .geaz-trip-stat:nth-child(3)::before {
    content: "";

    position: absolute;

    /* La sposto verso SINISTRA rispetto al contenuto */
    left: -8px !important;

    top: 10px;
    bottom: 10px;

    width: 1px;

    background: var(--geaz-border, #ddd);

    transform: none !important;
}


/* Un po' di respiro anche all'icona */
.geaz-trip-stats > .geaz-trip-stat:nth-child(2) .geaz-stat-icon,
.geaz-trip-stats > .geaz-trip-stat:nth-child(3) .geaz-stat-icon {
    margin-left: 4px !important;
}