/* Plan Your Greece Trip — Followmetogreece
   Body 1.5rem, titles from 1.9rem. Brand colours only. */

.trip-page {
    --trip-brand: #2077ba;
    --trip-brand-2: #2c91ce;
    --trip-accent: #f9b33b;
    --trip-accent-2: #ffbe5f;
    --trip-text: #16324a;
    --trip-muted: #5a6b7d;
    --trip-bg: #eef4fa;
    --trip-card: #ffffff;
    --trip-line: #d5e4f0;
    --trip-shadow: 0 18px 40px rgba(32, 119, 186, 0.1);
    --trip-radius: 22px;
    font-size: 1.5rem;
    line-height: 1.55;
    color: var(--trip-text);
    background:
        radial-gradient(1200px 420px at 8% -10%, rgba(44, 145, 206, 0.18), transparent 55%),
        radial-gradient(900px 380px at 100% 0%, rgba(249, 179, 59, 0.16), transparent 50%),
        var(--trip-bg);
    padding-bottom: 7rem;
}

.trip-page *,
.trip-page *::before,
.trip-page *::after {
    box-sizing: border-box;
}

.trip-wrap {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.trip-kicker {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--trip-brand);
    margin: 0 0 0.45rem;
}

.trip-hero {
    background: linear-gradient(135deg, #1b6eae 0%, #2077ba 42%, #2c91ce 100%);
    color: #fff;
    padding: 3rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.trip-hero::after {
    content: '';
    position: absolute;
    right: -8%;
    top: -40%;
    width: 48%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 190, 95, 0.28) 0%, transparent 68%);
    pointer-events: none;
}

.trip-hero .trip-wrap {
    position: relative;
    z-index: 1;
}

.trip-hero .trip-kicker,
.trip-hero__lead {
    color: #fff;
}

.trip-hero__title,
.trip-title {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    font-weight: 700;
}

.trip-hero__lead,
.trip-note {
    font-size: 1.5rem;
    color: inherit;
    margin: 0 0 1rem;
    max-width: 46ch;
}

.trip-note {
    color: var(--trip-muted);
}

.trip-planner-hero {
    padding: 2rem 0 1.25rem;
}

.trip-planner-hero .trip-hero__lead {
    color: var(--trip-muted);
}

.trip-start,
.trip-explain,
.trip-planner-head {
    padding: 1.5rem 0;
}

.trip-start {
    margin-top: -3.2rem;
    position: relative;
    z-index: 2;
}

.trip-start-card,
.trip-stop-card,
.trip-summary,
.trip-bar,
.trip-cart-total,
.trip-empty-card {
    background: var(--trip-card);
    border-radius: var(--trip-radius);
    padding: 1.4rem;
    box-shadow: var(--trip-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.trip-wrap > .trip-stop-card {
    margin-bottom: 1.1rem;
}

.trip-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 400px);
    align-items: start;
    gap: 1.25rem;
}

.trip-start-grid,
.trip-child-ages {
    display: grid;
    gap: 1rem;
}

.trip-start-grid {
    grid-template-columns: 1fr 1fr;
}

.trip-page label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 1.5rem;
}

.trip-page input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.trip-page select,
.trip-page textarea {
    font-size: 1.5rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--trip-line);
    border-radius: 14px;
    min-height: 52px;
    width: 100%;
    background: #f8fbfe;
    color: var(--trip-text);
}

.trip-page input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.trip-page select:focus,
.trip-page textarea:focus {
    outline: none;
    border-color: var(--trip-brand);
    box-shadow: 0 0 0 4px rgba(32, 119, 186, 0.14);
    background: #fff;
}

.trip-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trip-bar__fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.trip-bar__field span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--trip-muted);
}

.trip-bar__submit {
    align-self: flex-end;
}

.trip-stepper {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #f8fbfe;
    border: 1px solid var(--trip-line);
    border-radius: 999px;
    padding: 0.2rem;
    min-height: 52px;
}

.trip-stepper input {
    width: 4.2rem;
    min-height: 44px;
    border: 0;
    background: transparent;
    text-align: center;
    padding: 0;
    box-shadow: none;
}

.trip-stepper input:focus {
    box-shadow: none;
}

.trip-stepper__btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--trip-brand);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(32, 119, 186, 0.12);
}

.trip-stepper__btn:hover {
    background: var(--trip-brand);
    color: #fff;
}

.trip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--trip-brand);
    background: #fff;
    color: var(--trip-brand);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.trip-btn:disabled,
.trip-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.trip-btn--primary {
    background: linear-gradient(180deg, #2c91ce 0%, #2077ba 100%);
    border-color: transparent;
    color: #fff;
}

.trip-btn--ghost {
    border-color: var(--trip-line);
    color: var(--trip-text);
    background: #fff;
}

.trip-btn--text,
.trip-text-btn {
    border: 0;
    background: transparent;
    color: var(--trip-brand);
    min-height: 44px;
    padding: 0.4rem 0.2rem;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.trip-add-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 0.5rem 0 2rem;
}

.trip-add-island {
    min-width: min(100%, 360px);
}

.trip-add-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.trip-alert {
    background: #fff7e8;
    border: 1px solid var(--trip-accent-2);
    padding: 0.95rem 1.1rem;
    border-radius: 16px;
    color: var(--trip-text);
}

.trip-explain h2 {
    font-size: 1.9rem;
    margin: 0 0 0.75rem;
}

.trip-explain p {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.trip-steps {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: trip-step;
}

.trip-steps li {
    background: #fff;
    border-radius: 18px;
    padding: 1.2rem 1.15rem 1.25rem;
    box-shadow: var(--trip-shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.trip-steps li::before {
    counter-increment: trip-step;
    content: counter(trip-step);
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    border-radius: 50%;
    background: var(--trip-accent);
    color: #16324a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.trip-layout {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.4rem;
    align-items: start;
}

.trip-timeline {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.trip-stop {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: stretch;
}

.trip-stop__index {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2c91ce, #2077ba);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 1.2rem;
    box-shadow: 0 8px 16px rgba(32, 119, 186, 0.22);
}

.trip-stop--ready .trip-stop__index {
    background: #2077ba;
}

.trip-stop--failed .trip-stop__index {
    background: #c0392b;
}

.trip-stop .trip-stop-card,
.trip-stop-card--photo {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.trip-stop__visual {
    min-height: 100%;
    background: linear-gradient(160deg, #2077ba, #2c91ce 55%, #ffbe5f);
}

.trip-stop__visual img,
.trip-stop__fallback {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.trip-stop__fallback,
.trip-dest-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(160deg, #2077ba, #2c91ce);
}

.trip-stop__body {
    padding: 1.15rem 1.2rem 1.2rem;
}

.trip-stop__meta {
    font-size: 1.5rem;
    color: var(--trip-muted);
    margin: 0 0 0.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.trip-stop h2,
.trip-stop-card h2 {
    font-size: 1.9rem;
    margin: 0 0 0.3rem;
}

.trip-stop__dates,
.trip-stop__area,
.trip-stop__nights-static,
.trip-stop__missing {
    margin: 0 0 0.55rem;
}

.trip-stop__missing {
    color: var(--trip-muted);
}

.trip-nights {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0.6rem 0 0.8rem;
}

.trip-nights .trip-stepper {
    min-width: 160px;
}

.trip-stop__property {
    background: #f4f9fd;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    margin: 0.4rem 0 0.8rem;
}

.trip-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.15rem 0.7rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.trip-chip--ok {
    background: #e5f6ee;
    color: #1b7a4a;
}

.trip-chip--alert {
    background: #fdecea;
    color: #c0392b;
}

.trip-stop-actions,
.trip-add-row,
.trip-details-bar__actions,
.trip-card-actions,
.trip-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.trip-summary {
    position: sticky;
    top: 1rem;
}

.trip-summary--static {
    position: relative;
    top: auto;
}

.trip-summary h2 {
    font-size: 1.9rem;
    margin: 0 0 0.35rem;
}

.trip-summary__dates {
    color: var(--trip-muted);
    margin: 0 0 1rem;
}

.trip-summary__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.trip-summary__stats div {
    background: #f4f9fd;
    border-radius: 14px;
    padding: 0.7rem 0.5rem;
    text-align: center;
}

.trip-summary__stats strong {
    display: block;
    font-size: 1.9rem;
    color: var(--trip-brand);
}

.trip-summary__stats span {
    color: var(--trip-muted);
    font-size: 1.35rem;
}

.trip-progress {
    height: 8px;
    background: #e3edf4;
    border-radius: 999px;
    overflow: hidden;
}

.trip-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, #2077ba, #f9b33b);
}

.trip-summary__progress-label {
    font-size: 1.5rem;
    color: var(--trip-muted);
    margin: 0.5rem 0 0.9rem;
}

.trip-summary__stops {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.trip-summary__stops li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--trip-line);
}

.trip-summary__total {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin: 0 0 0.4rem;
}

.trip-summary__total span {
    font-size: 1.9rem;
}

.trip-summary__due {
    color: var(--trip-muted);
    margin: 0 0 0.8rem;
}

.trip-price,
.trip-property-name {
    font-weight: 700;
}

.trip-updating-banner {
    margin: 0.85rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #e8f3fb;
    color: #16324a;
    font-size: 1.5rem;
    font-weight: 600;
}

.trip-page--planner.is-updating .trip-timeline,
.trip-page--planner.is-updating .trip-summary {
    pointer-events: none;
    opacity: 0.55;
}

.trip-page--planner.is-updating .trip-nights .trip-stepper {
    opacity: 0.7;
}

.trip-property-grid {
    display: grid;
    gap: 1rem;
}

.trip-prop {
    display: grid;
    grid-template-columns: 160px 1fr;
    background: #fff;
    border: 1px solid var(--trip-line);
    border-radius: 18px;
    overflow: hidden;
}

.trip-prop__media img,
.trip-prop img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}

.trip-prop__body {
    padding: 1rem;
}

.trip-prop__body h3 {
    font-size: 1.9rem;
    margin: 0 0 0.35rem;
}

.trip-prop__price {
    color: var(--trip-brand);
    font-weight: 700;
    margin: 0 0 0.7rem;
}

.trip-modal {
    position: fixed;
    inset: 0;
    background: rgba(16, 36, 54, 0.52);
    z-index: 80;
    display: flex;
    align-items: flex-end;
    backdrop-filter: blur(4px);
}

.trip-modal[hidden] {
    display: none;
}

body.trip-modal-open {
    overflow: hidden;
}

.trip-modal__panel {
    background: #fff;
    width: 100%;
    max-height: 92vh;
    overflow: auto;
    border-radius: 28px 28px 0 0;
    padding: 1.35rem 1.2rem 1.5rem;
    position: relative;
}

.trip-modal__panel::before {
    content: '';
    display: block;
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: #d7e3ee;
    margin: 0 auto 1rem;
}

.trip-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #f4f7fb;
    color: var(--trip-text);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.trip-picker h2,
.trip-modal__panel h2 {
    font-size: 1.9rem;
    margin: 0 2.5rem 0.4rem 0;
}

.trip-picker__hint {
    color: var(--trip-muted);
    margin: 0 0 1rem;
}

.trip-search input[type="search"] {
    border-radius: 999px;
    background: #f4f9fd;
}

.trip-dest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.trip-dest-card {
    border: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f9fd;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 8px 20px rgba(32, 119, 186, 0.08);
}

.trip-dest-card img,
.trip-dest-card__fallback {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.trip-dest-card__name {
    display: block;
    padding: 0.7rem 0.8rem 0.85rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--trip-text);
}

.trip-dest-card:hover {
    transform: translateY(-2px);
}

.trip-dest-card.is-selected {
    box-shadow: 0 0 0 3px #2077ba, 0 8px 20px rgba(32, 119, 186, 0.12);
}

.trip-dest-card.is-selected .trip-dest-card__name {
    color: #2077ba;
}

.trip-area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.trip-chip-btn {
    border: 1px solid var(--trip-line);
    background: #fff;
    border-radius: 999px;
    min-height: 48px;
    padding: 0.45rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--trip-text);
}

.trip-chip-btn.is-active,
.trip-chip-btn:hover {
    background: var(--trip-brand);
    border-color: var(--trip-brand);
    color: #fff;
}

.trip-picker__empty {
    color: var(--trip-muted);
    margin: 1rem 0;
}

.trip-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 2rem 1rem;
}

.trip-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #d7e3ee;
    border-top-color: var(--trip-brand);
    animation: trip-spin 0.8s linear infinite;
}

@keyframes trip-spin {
    to { transform: rotate(360deg); }
}

.trip-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.trip-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(26, 43, 60, 0.12);
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    z-index: 40;
}

.trip-continue {
    margin-bottom: 1.25rem;
}

.trip-empty {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trip-empty-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border: 1px dashed #b9d3e8;
    box-shadow: none;
}

.trip-empty-card__title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.trip-mobile-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.trip-mobile-bar__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trip-details-bar {
    background: #fff;
    border-bottom: 1px solid var(--trip-line);
    position: sticky;
    top: 0;
    z-index: 35;
    font-size: 1.5rem;
    color: #1a2b3c;
    box-shadow: 0 8px 24px rgba(32, 119, 186, 0.08);
}

.trip-details-bar__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    align-items: center;
}

.trip-check {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 1.5rem;
    margin: 0.75rem 0;
    cursor: pointer;
}

.trip-page label.trip-check {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.85rem;
}

.trip-check span {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.45;
    padding-top: 0.1rem;
}

.trip-check a {
    color: var(--trip-brand);
    text-decoration: underline;
}

/* Reset global styledc98.css checkbox (appearance:none + FontAwesome :before). */
.trip-page .trip-check input[type="checkbox"],
.trip-page input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: auto;
    position: static;
    width: 1.35rem;
    height: 1.35rem;
    min-width: 1.35rem;
    min-height: 1.35rem;
    max-width: 1.35rem;
    margin: 0.2rem 0 0;
    padding: 0;
    flex: 0 0 1.35rem;
    border: 1px solid var(--trip-brand);
    border-radius: 4px;
    background: #fff;
    accent-color: #2077ba;
    box-shadow: none;
    cursor: pointer;
}

.trip-page input[type="checkbox"]::before,
.trip-page input[type="checkbox"]::after,
.trip-page input[type="checkbox"]:checked::before,
.trip-page input[type="checkbox"]:checked::after,
.trip-page input[type="checkbox"]:checked:before,
.trip-page input[type="checkbox"]:checked:after {
    content: none !important;
    display: none !important;
    font-size: 0 !important;
}

.trip-page input[type="radio"] {
    width: auto;
    min-height: auto;
    padding: 0;
}

.trip-stepper input::-webkit-outer-spin-button,
.trip-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.trip-stepper input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.trip-pay-form {
    margin-top: 1rem;
}

.trip-stop-card--failed,
.trip-stop--failed .trip-stop-card {
    border: 1px solid #e7b0aa;
}

.trip-cart-total {
    margin: 1.25rem 0;
}

.trip-search {
    position: relative;
}

@media (max-width: 900px) {
    .trip-layout,
    .trip-start-grid,
    .trip-checkout-grid,
    .trip-bar__fields,
    .trip-steps,
    .trip-stop .trip-stop-card,
    .trip-stop-card--photo,
    .trip-prop {
        grid-template-columns: 1fr;
    }

    .trip-page--planner .trip-summary {
        display: none;
    }

    .trip-page--planner .trip-mobile-bar {
        display: block;
    }

    .trip-details-bar__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .trip-bar__submit,
    .trip-add-island {
        width: 100%;
    }

    .trip-stop {
        grid-template-columns: 1fr;
    }

    .trip-stop__index {
        margin: 0 0 0.2rem;
    }

    .trip-stop__visual img,
    .trip-stop__fallback {
        min-height: 160px;
    }

    .trip-dest-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .trip-dest-grid {
        grid-template-columns: 1fr;
    }

    .trip-dest-card img,
    .trip-dest-card__fallback {
        height: 140px;
    }
}

@media (min-width: 901px) {
    .trip-modal {
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .trip-modal__panel {
        width: min(860px, calc(100% - 2rem));
        border-radius: 28px;
        max-height: 84vh;
        padding: 1.6rem 1.5rem 1.7rem;
    }

    .trip-modal__panel::before {
        display: none;
    }

    .trip-dest-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.st-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 1.8rem;
}

.st-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.st-card {
    background: var(--trip-card);
    border-radius: var(--trip-radius);
    overflow: hidden;
    box-shadow: var(--trip-shadow);
}

.st-card__media {
    display: block;
    min-height: 180px;
    background: linear-gradient(135deg, #2077ba, #2c91ce);
}

.st-card__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.st-card__body {
    padding: 1.2rem 1.25rem 1.4rem;
}

.st-card__body h2 {
    font-size: 1.9rem;
    margin: 0.2rem 0 0.5rem;
}

.st-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

.st-card__meta,
.st-card__stops,
.st-card__intro {
    color: var(--trip-muted);
    margin: 0 0 0.6rem;
}

.st-card__route {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    margin: 0 0 0.85rem;
    padding-bottom: 0.15rem;
}

.st-card__route-stop {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(160deg, #2077ba, #2c91ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.st-card__route-stop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.st-card__route-line {
    flex: 0 0 14px;
    height: 2px;
    background: #ffbe5f;
}

.st-diy-link {
    margin: 2rem 0 0;
}

.st-show {
    padding-top: 1.5rem;
}

.st-intro {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
}

.st-itinerary {
    margin-top: 2rem;
}

.st-stop-details {
    font-size: 1.5rem;
    margin: 0.6rem 0;
}

.st-stop-details p {
    margin: 0 0 0.6rem;
}

.st-extra {
    font-size: 1.5rem;
    color: var(--trip-muted);
    margin: 0.35rem 0 0;
}

.st-request {
    margin-top: 2rem;
    background: var(--trip-card);
    border-radius: var(--trip-radius);
    padding: 1.4rem 1.25rem 1.6rem;
    box-shadow: var(--trip-shadow);
}

.st-request h2 {
    font-size: 1.9rem;
    margin: 0 0 0.5rem;
}

.st-request-form textarea {
    width: 100%;
    border: 1px solid var(--trip-line);
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    font: inherit;
    color: inherit;
}

.st-request-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin: 0.8rem 0 1rem;
}

.st-request-flags label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.5rem;
}

.trip-alert--ok {
    background: #e8f8ef;
    color: #0f766e;
}

.trip-hero--photo {
    background-size: cover;
    background-position: center;
}

@media (min-width: 761px) {
    .st-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1100px) {
    .st-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.st-preview-bar {
    background: #16324a;
    color: #fff;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 40;
}

.st-preview-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
}

.st-preview-bar__copy {
    margin: 0;
    font-size: 1.5rem;
}

.st-preview-bar__langs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.st-preview-bar__langs a {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 1.5rem;
}

.st-preview-bar__langs a.is-active,
.st-preview-bar__langs a:hover {
    background: #2077ba;
    border-color: #2077ba;
}

.st-route {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.4rem 0 1.4rem;
    margin: 0 0 0.5rem;
}

.st-route__stop {
    flex: 0 0 auto;
    width: 132px;
    text-align: center;
}

.st-route__photo {
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(160deg, #2077ba, #2c91ce);
    box-shadow: 0 8px 18px rgba(32, 119, 186, 0.2);
}

.st-route__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.st-route__photo span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
}

.st-route__name {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
}

.st-route__nights {
    display: block;
    color: var(--trip-muted);
    font-size: 1.5rem;
}

.st-route__line {
    flex: 0 0 28px;
    height: 2px;
    background: linear-gradient(90deg, #2077ba, #ffbe5f);
    margin: 44px 0.15rem 0;
    align-self: flex-start;
}

.st-preview-dates {
    margin-bottom: 1.5rem;
}

.st-stop-range {
    color: var(--trip-muted);
}

.st-pref {
    margin-top: 0.9rem;
}

.st-pref__label {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.55rem;
    color: var(--trip-brand);
}

.st-pref-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.st-pref-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    background: #f4f9fd;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.st-pref-card__media {
    display: block;
    height: 72px;
    background: linear-gradient(160deg, #2077ba, #2c91ce);
}

.st-pref-card__media img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.st-pref-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    padding-right: 0.6rem;
}

@media (min-width: 640px) {
    .st-pref-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .st-preview-bar {
        position: relative;
    }

    .st-route__stop {
        width: 112px;
    }

    .st-route__photo {
        width: 72px;
        height: 72px;
    }

    .st-route__line {
        margin-top: 36px;
        flex-basis: 18px;
    }
}

.st-choose-title {
    font-size: 1.9rem;
    margin: 0 0 0.4rem;
}

.st-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.st-grid--landing {
    margin: 1.25rem 0 1.5rem;
}

.trip-stop__body {
    min-width: 0;
}

.st-show .trip-stop-card,
.st-show .trip-bar,
.st-show .st-request {
    max-width: 100%;
}

@media (max-width: 1100px) {
    .trip-bar__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .st-show .trip-stop .trip-stop-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .trip-bar__fields,
    .st-request .trip-bar__fields,
    .st-pref-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .trip-bar__submit,
    .st-request .trip-btn {
        width: 100%;
        align-self: stretch;
    }

    .st-preview-bar__copy,
    .st-preview-bar__langs {
        width: 100%;
    }
}

/* Trip checkout — guest details + review */
.trip-page--checkout {
    padding-bottom: 5rem;
}

.trip-page--review {
    padding-bottom: 8.5rem;
}

.trip-co-progress {
    margin: 0 0 1.25rem;
}

.trip-co-progress ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.trip-co-progress li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid var(--trip-line);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    min-height: 52px;
}

.trip-co-progress__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #e8f1f8;
    color: var(--trip-brand);
    flex-shrink: 0;
}

.trip-co-progress__label {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    min-width: 0;
}

.trip-co-progress .is-current {
    border-color: var(--trip-brand);
    box-shadow: 0 8px 18px rgba(32, 119, 186, 0.12);
}

.trip-co-progress .is-current .trip-co-progress__num,
.trip-co-progress .is-done .trip-co-progress__num {
    background: linear-gradient(180deg, #2c91ce 0%, #2077ba 100%);
    color: #fff;
}

.trip-co-form,
.trip-co-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.trip-co-card {
    background: var(--trip-card);
    border-radius: var(--trip-radius);
    padding: 1.4rem;
    box-shadow: var(--trip-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.trip-co-card h2 {
    font-size: 1.9rem;
    margin: 0 0 0.6rem;
}

.trip-co-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 0.85rem;
}

.trip-co-row--3 {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
}

.trip-co-card > label:first-of-type {
    margin-top: 0.35rem;
}

.trip-co-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.trip-co-actions .trip-btn--primary {
    margin-left: auto;
}

.trip-co-aside {
    position: sticky;
    top: 1rem;
}

.trip-co-aside-stops {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.trip-co-aside-stops li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--trip-line);
}

.trip-co-aside-stops__visual {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(160deg, #2077ba, #2c91ce);
}

.trip-co-aside-stops__visual img,
.trip-co-aside-stops__visual span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.trip-co-aside-stops__copy {
    min-width: 0;
}

.trip-co-aside-stops__copy strong,
.trip-co-aside-stops__copy span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trip-co-aside-stops__copy span {
    color: var(--trip-muted);
    font-size: 1.5rem;
}

.trip-co-aside-stops__price {
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
}

.trip-co-guest {
    background: #f4f9fd;
    border-radius: 16px;
    padding: 0.9rem 0.95rem;
    margin: 0 0 1rem;
}

.trip-co-guest p {
    margin: 0 0 0.2rem;
}

.trip-co-guest__name {
    font-weight: 700;
}

.trip-co-money {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.trip-co-money__row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
}

.trip-co-money__row--due {
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--trip-line);
    color: var(--trip-brand);
}

.trip-co-money__row--due strong,
.trip-co-due {
    font-size: 1.9rem;
}

.trip-co-due {
    margin: 0 0 1rem;
}

.trip-co-secure {
    color: var(--trip-muted);
    margin: 0.75rem 0 0;
}

.trip-page--review .trip-co-mobile-bar {
    display: block;
}

.trip-co-wait {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(238, 244, 250, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.trip-co-wait.is-open,
.trip-co-wait:not([hidden]) {
    display: flex;
}

.trip-co-wait[hidden] {
    display: none !important;
}

.trip-co-wait__card {
    background: #fff;
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    box-shadow: var(--trip-shadow);
    width: min(420px, 100%);
}

.trip-co-wait__card p {
    margin: 0.9rem 0 0;
}

@media (max-width: 900px) {
    .trip-checkout-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .trip-checkout-grid > .trip-co-aside {
        order: -1;
        position: relative;
        top: auto;
    }

    .trip-co-row,
    .trip-co-row--3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .trip-co-actions {
        flex-direction: column;
    }

    .trip-co-actions .trip-btn,
    .trip-co-actions .trip-btn--primary {
        width: 100%;
        margin-left: 0;
    }

    .trip-page--review .trip-pay-form .trip-btn--primary {
        display: none;
    }

    .trip-co-aside-stops li {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .trip-co-aside-stops__price {
        grid-column: 2;
    }
}

@media (min-width: 901px) {
    .trip-page--review .trip-co-mobile-bar {
        display: none;
    }

    .trip-page--checkout {
        padding-bottom: 5rem;
    }
}

/* Plan Your Greece Trip landing */
.trip-page--landing {
    padding-bottom: 2rem;
}

.trip-land-hero {
    position: relative;
    min-height: min(78vh, 640px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #16324a 0%, #2077ba 48%, #2c91ce 100%);
    color: #fff;
}

.trip-land-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trip-land-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(22, 50, 74, 0.18) 0%, rgba(22, 50, 74, 0.72) 58%, rgba(22, 50, 74, 0.92) 100%),
        linear-gradient(90deg, rgba(32, 119, 186, 0.35), transparent 55%);
}

.trip-land-hero__copy {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0 6.5rem;
}

.trip-land-hero .trip-kicker {
    color: #ffbe5f;
}

.trip-land-hero__title {
    font-size: clamp(1.9rem, 4.2vw, 2.7rem);
    line-height: 1.2;
    margin: 0 0 0.8rem;
    font-weight: 700;
    max-width: 16ch;
}

.trip-land-hero__lead {
    font-size: 1.5rem;
    margin: 0 0 1.15rem;
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.92);
}

.trip-land-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.trip-land-pills li {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 1.5rem;
    backdrop-filter: blur(8px);
}

.trip-land-planner {
    position: relative;
    z-index: 2;
    margin-top: -4.4rem;
    scroll-margin-top: 5.5rem;
}

.trip-land-form {
    gap: 1.1rem;
}

.trip-land-form__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.4rem 1rem;
}

.trip-land-form__head h2 {
    font-size: 1.9rem;
    margin: 0;
}

.trip-land-nights {
    margin: 0;
    font-weight: 700;
    color: var(--trip-brand);
}

.trip-land-region {
    margin: 0;
    padding: 0;
    border: 0;
}

.trip-land-region legend {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.55rem;
}

.trip-land-region__pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.trip-land-region__pill {
    position: relative;
    margin: 0;
}

.trip-land-region__pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.trip-land-region__pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    border-radius: 14px;
    border: 1px solid var(--trip-line);
    background: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.trip-land-region__pill input:checked + span {
    background: #2077ba;
    border-color: #2077ba;
    color: #fff;
}

.trip-land-region__pill input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(32, 119, 186, 0.28);
}

.trip-land-dest-pick {
    display: grid;
    gap: 0.7rem;
}

.trip-land-dest-pick__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
}

.trip-land-dest-pick__head label {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.trip-search-input {
    width: 100%;
    min-height: 3rem;
    border: 1px solid var(--trip-line);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-size: 1.5rem;
    background: #fff;
}

.trip-land-dest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-height: 16rem;
    overflow: auto;
    padding: 0.15rem 0.1rem 0.4rem;
}

.trip-land-dest-chip {
    appearance: none;
    border: 1px solid var(--trip-line);
    background: #fff;
    color: var(--trip-text);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
}

.trip-land-dest-chip:hover {
    border-color: #2077ba;
    color: #2077ba;
}

.trip-land-dest-chip.is-selected {
    background: #2077ba;
    border-color: #2077ba;
    color: #fff;
}

.trip-dates-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--trip-line);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
}

.trip-dates-summary .trip-note {
    margin: 0;
}

.trip-land-continue {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trip-land-continue .trip-note {
    margin: 0;
}

.trip-land-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0.5rem 0 0.75rem;
}

.trip-land-benefits article {
    background: #fff;
    border-radius: var(--trip-radius);
    padding: 1.25rem 1.2rem 1.35rem;
    box-shadow: var(--trip-shadow);
}

.trip-land-benefits h2 {
    font-size: 1.9rem;
    margin: 0 0 0.45rem;
}

.trip-land-benefits p {
    margin: 0;
    color: var(--trip-muted);
}

.trip-land-how,
.trip-land-dests,
.trip-land-suggested {
    content-visibility: auto;
    contain-intrinsic-size: 1px 640px;
    padding-top: 1.75rem;
}

.trip-land-steps li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.trip-land-steps strong {
    font-size: 1.9rem;
    line-height: 1.25;
}

.trip-land-steps span {
    color: var(--trip-muted);
}

.trip-land-dests {
    padding-bottom: 1.5rem;
}

.trip-land-dests h2,
.trip-land-how h2,
.trip-land-suggested h2 {
    font-size: 1.9rem;
    margin: 0 0 0.55rem;
}

.trip-land-dests__scroller {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0 0.6rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.trip-land-dest {
    position: relative;
    flex: 0 0 72%;
    max-width: 280px;
    min-height: 210px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(160deg, #2077ba, #2c91ce);
    box-shadow: var(--trip-shadow);
}

.trip-land-dest img,
.trip-land-dest .trip-dest-card__fallback {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.trip-land-dest__name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem 0.9rem 0.9rem;
    background: linear-gradient(180deg, transparent, rgba(22, 50, 74, 0.88));
    font-size: 1.5rem;
    font-weight: 700;
}

.trip-land-suggested {
    padding-bottom: 2rem;
}

.trip-page--landing .st-card__media img {
    height: 220px;
}

.trip-land-mobile-bar {
    display: none;
}

@media (min-width: 700px) {
    .trip-land-dests__scroller {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        margin: 0;
        padding: 0.2rem 0 0;
        scroll-snap-type: none;
    }

    .trip-land-dest {
        flex: none;
        max-width: none;
    }
}

@media (max-width: 900px) {
    .trip-land-hero {
        min-height: min(70vh, 560px);
    }

    .trip-land-hero__copy {
        padding: 3.4rem 0 5.5rem;
    }

    .trip-land-hero__title {
        max-width: none;
    }

    .trip-land-benefits,
    .trip-page--landing .trip-land-steps {
        grid-template-columns: 1fr;
    }

    .trip-land-fields {
        grid-template-columns: 1fr 1fr;
    }

    .trip-land-dest-grid {
        max-height: 14rem;
    }

    .trip-page--landing {
        padding-bottom: 6.5rem;
    }

    .trip-page--landing .trip-land-mobile-bar {
        display: block;
    }
}

@media (max-width: 560px) {
    .trip-land-hero {
        min-height: 72vh;
        align-items: flex-end;
    }

    .trip-land-hero__copy {
        padding: 2.4rem 0 5.8rem;
    }

    .trip-land-planner {
        margin-top: -3.6rem;
    }

    .trip-land-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .trip-land-form .trip-bar__submit,
    .trip-land-continue .trip-btn {
        width: 100%;
    }

    .trip-land-dest {
        flex-basis: 78%;
        min-height: 190px;
    }

    .trip-land-dest img,
    .trip-land-dest .trip-dest-card__fallback {
        height: 190px;
    }

    .trip-land-mobile-bar .trip-mobile-bar__meta span {
        display: none;
    }
}

@media (min-width: 700px) and (max-width: 900px) {
    .trip-land-benefits,
    .trip-page--landing .trip-land-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html:has(.trip-page--landing) {
        scroll-behavior: smooth;
    }
}
