/*
 * MyCamper Live Trips
 * 0.10.0 UI Redesign Foundation
 *
 * Independent component-owned presentation layer.
 */

.livetrips-app {
    --livetrips-bg: #f4f7fb;
    --livetrips-surface: #ffffff;
    --livetrips-surface-soft: #f8fafc;
    --livetrips-text: #172033;
    --livetrips-text-strong: #0b1730;
    --livetrips-muted: #667085;
    --livetrips-muted-light: #98a2b3;
    --livetrips-border: #e2e8f0;
    --livetrips-border-strong: #cbd5e1;

    --livetrips-navy: #102542;
    --livetrips-navy-light: #183b63;

    --livetrips-blue: #1769aa;
    --livetrips-blue-strong: #0f4f84;
    --livetrips-blue-soft: #e9f3fc;

    --livetrips-orange: #f28c28;
    --livetrips-orange-strong: #d96c0b;
    --livetrips-orange-soft: #fff0df;

    --livetrips-green: #14866d;
    --livetrips-green-soft: #e8f7f2;

    --livetrips-danger: #b42318;
    --livetrips-success: #067647;

    --livetrips-radius-sm: 10px;
    --livetrips-radius: 16px;
    --livetrips-radius-lg: 24px;

    --livetrips-shadow-sm:
        0 2px 8px rgba(16, 37, 66, 0.06);

    --livetrips-shadow:
        0 14px 36px rgba(16, 37, 66, 0.10);

    --livetrips-shadow-lg:
        0 22px 60px rgba(16, 37, 66, 0.16);

    --livetrips-max-width: 1380px;

    width: 100%;
    color: var(--livetrips-text);
    background: var(--livetrips-bg);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.livetrips-app,
.livetrips-app *,
.livetrips-app *::before,
.livetrips-app *::after {
    box-sizing: border-box;
}

.livetrips-app [hidden] {
    display: none !important;
}

.livetrips-app h1,
.livetrips-app h2,
.livetrips-app h3,
.livetrips-app p {
    margin-top: 0;
}

.livetrips-app button,
.livetrips-app input,
.livetrips-app select,
.livetrips-app textarea {
    font: inherit;
}

.livetrips-app a {
    color: inherit;
}

.livetrips-app :focus-visible {
    outline: 3px solid rgba(242, 140, 40, 0.32);
    outline-offset: 2px;
}

/* APP SHELL */

.livetrips-app .livetrips-my-trips--0100 {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #f4f7fb 25rem,
            #f4f7fb 100%
        );
}

.livetrips-app .livetrips-page {
    width: min(
        calc(100% - 40px),
        var(--livetrips-max-width)
    );
    margin: 0 auto;
    padding: 42px 0 72px;
}

/* HERO */

.livetrips-app .livetrips-hero {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 78% 22%,
            rgba(242, 140, 40, 0.32),
            transparent 25%
        ),
        radial-gradient(
            circle at 88% 78%,
            rgba(49, 130, 206, 0.34),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            #0b1b34 0%,
            #12365c 48%,
            #1b5881 100%
        );
}

.livetrips-app .livetrips-hero::before {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -100px;
    height: 205px;
    opacity: 0.28;
    background:
        linear-gradient(
            150deg,
            transparent 0 18%,
            #82a6bb 18.5% 38%,
            transparent 38.5%
        ),
        linear-gradient(
            30deg,
            transparent 0 24%,
            #b9cbd4 24.5% 43%,
            transparent 43.5%
        );
    transform: skewY(-2deg);
}

.livetrips-app .livetrips-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 29, 0.18),
            transparent 55%
        );
}

.livetrips-app .livetrips-hero__content {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - 40px),
        var(--livetrips-max-width)
    );
    margin: 0 auto;
    padding: 58px 430px 54px 0;
}

.livetrips-app .livetrips-hero__eyebrow {
    margin-bottom: 10px;
    color: #ffba70;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.livetrips-app .livetrips-hero__title {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.livetrips-app .livetrips-hero__intro {
    max-width: 710px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.livetrips-app .livetrips-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
}

.livetrips-app .livetrips-hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 650;
}

.livetrips-app .livetrips-hero-feature .livetrips-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #ffb45f;
    background: rgba(255, 255, 255, 0.08);
}

.livetrips-app .livetrips-hero__art {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: max(
        30px,
        calc((100vw - var(--livetrips-max-width)) / 2)
    );
    width: 330px;
    height: 245px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 44% 56% 46% 54%;
    background:
        radial-gradient(
            circle at 40% 30%,
            rgba(255, 255, 255, 0.13),
            transparent 48%
        ),
        rgba(255, 255, 255, 0.04);
}

.livetrips-app .livetrips-hero__route-line {
    position: absolute;
    top: 52px;
    left: 60px;
    width: 215px;
    height: 140px;
    border: 3px dashed rgba(255, 255, 255, 0.58);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-18deg);
}

.livetrips-app .livetrips-hero__route-point {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.12);
}

.livetrips-app .livetrips-hero__route-point--a {
    left: 55px;
    bottom: 58px;
    background: var(--livetrips-green);
}

.livetrips-app .livetrips-hero__route-point--b {
    left: 158px;
    top: 58px;
    background: var(--livetrips-orange);
}

.livetrips-app .livetrips-hero__route-point--c {
    right: 54px;
    bottom: 50px;
    background: #62a8e5;
}

/* PANELS */

.livetrips-app .livetrips-builder {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(310px, 360px);
    gap: 28px;
    align-items: start;
}

.livetrips-app .livetrips-builder__main,
.livetrips-app .livetrips-builder__summary {
    min-width: 0;
}

.livetrips-app .livetrips-panel {
    border: 1px solid var(--livetrips-border);
    border-radius: var(--livetrips-radius-lg);
    background: var(--livetrips-surface);
    box-shadow: var(--livetrips-shadow);
}

.livetrips-app .livetrips-panel--builder {
    padding: 30px;
}

.livetrips-app .livetrips-panel__heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.livetrips-app .livetrips-panel__title {
    margin-bottom: 5px;
    color: var(--livetrips-text-strong);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.livetrips-app .livetrips-panel__intro {
    margin-bottom: 0;
    color: var(--livetrips-muted);
    font-size: 0.94rem;
}

.livetrips-app .livetrips-section-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    color: var(--livetrips-blue);
    background: var(--livetrips-blue-soft);
    font-size: 1.2rem;
    font-weight: 800;
}

.livetrips-app .livetrips-section-icon--small {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 1rem;
}

/* STEPPER */

.livetrips-app .livetrips-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 30px;
    padding: 16px 18px;
    border: 1px solid #edf0f4;
    border-radius: 15px;
    background: var(--livetrips-surface-soft);
}

.livetrips-app .livetrips-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    color: var(--livetrips-muted-light);
    font-size: 0.82rem;
    font-weight: 700;
}

.livetrips-app .livetrips-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    width: 31px;
    height: 1px;
    background: #dfe5ec;
}

.livetrips-app .livetrips-step__number {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #d9e0e8;
    border-radius: 50%;
    background: #ffffff;
}

.livetrips-app .livetrips-step--active {
    color: var(--livetrips-orange-strong);
}

.livetrips-app .livetrips-step--active .livetrips-step__number {
    border-color: var(--livetrips-orange);
    color: #ffffff;
    background: var(--livetrips-orange);
    box-shadow:
        0 4px 12px rgba(242, 140, 40, 0.28);
}

/* FORM */

.livetrips-app .livetrips-create-form {
    display: grid;
    gap: 28px;
}

.livetrips-app .livetrips-form-section {
    padding-top: 4px;
}

.livetrips-app .livetrips-form-section + .livetrips-form-section {
    padding-top: 28px;
    border-top: 1px solid #edf0f4;
}

.livetrips-app .livetrips-form-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.livetrips-app .livetrips-form-section__heading h3 {
    margin-bottom: 4px;
    color: var(--livetrips-text-strong);
    font-size: 1.08rem;
    font-weight: 800;
}

.livetrips-app .livetrips-form-section__heading p {
    margin-bottom: 0;
    color: var(--livetrips-muted);
    font-size: 0.88rem;
}

.livetrips-app .livetrips-form-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.58fr);
    gap: 18px;
}

.livetrips-app .livetrips-field {
    min-width: 0;
}

.livetrips-app .livetrips-field--wide {
    grid-column: 1 / -1;
}

.livetrips-app .livetrips-field label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-size: 0.86rem;
    font-weight: 750;
}

.livetrips-app input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.livetrips-app select,
.livetrips-app textarea,
.livetrips-app .livetrips-input:not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--livetrips-border-strong);
    border-radius: var(--livetrips-radius-sm);
    outline: none;
    color: var(--livetrips-text);
    background: #ffffff;
    box-shadow:
        inset 0 1px 2px rgba(16, 37, 66, 0.02);
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.livetrips-app textarea {
    min-height: 112px;
    resize: vertical;
}

.livetrips-app input:not([type="checkbox"]):not([type="radio"]):focus,
.livetrips-app select:focus,
.livetrips-app textarea:focus {
    border-color: #6ea8d4;
    box-shadow:
        0 0 0 4px rgba(23, 105, 170, 0.10);
}

.livetrips-app .livetrips-field-help {
    display: block;
    margin-top: 7px;
    color: var(--livetrips-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.livetrips-app .livetrips-field--journey-mode {
    max-width: 420px;
    margin-bottom: 18px;
}

/* LOCATION CARDS */

.livetrips-app .livetrips-location-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.livetrips-app .livetrips-location-card {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 20px;
    border: 1px solid var(--livetrips-border);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfcfe
        );
    box-shadow: var(--livetrips-shadow-sm);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.livetrips-app .livetrips-location-card:hover {
    transform: translateY(-2px);
    border-color: #cfd8e4;
    box-shadow:
        0 12px 28px rgba(16, 37, 66, 0.09);
}

.livetrips-app .livetrips-location-card--origin {
    border-top: 3px solid var(--livetrips-green);
}

.livetrips-app .livetrips-location-card--destination {
    border-top: 3px solid var(--livetrips-orange);
}

.livetrips-app .livetrips-location-card--return {
    border-top: 3px solid var(--livetrips-blue);
}

.livetrips-app .livetrips-location-card__legend {
    display: flex;
    align-items: center;
    gap: 9px;
    width: auto;
    margin: 0 0 5px;
    padding: 0 3px;
    color: var(--livetrips-text-strong);
    font-size: 1rem;
    font-weight: 800;
}

.livetrips-app .livetrips-route-pin {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px currentColor;
}

.livetrips-app .livetrips-route-pin--origin {
    color: var(--livetrips-green);
    background: var(--livetrips-green);
}

.livetrips-app .livetrips-route-pin--destination {
    color: var(--livetrips-orange);
    background: var(--livetrips-orange);
}

.livetrips-app .livetrips-route-pin--return {
    color: var(--livetrips-blue);
    background: var(--livetrips-blue);
}

.livetrips-app .livetrips-location-card__help {
    min-height: 2.5em;
    margin: 0 0 16px;
    color: var(--livetrips-muted);
    font-size: 0.77rem;
    line-height: 1.45;
}

.livetrips-app .livetrips-location-card .livetrips-field {
    margin-top: 14px;
}

.livetrips-app .livetrips-coordinate-source {
    min-height: 0;
}

.livetrips-app .livetrips-location-card .livetrips-location-control {
    margin-top: 15px;
}

.livetrips-app .livetrips-location-card .livetrips-location-row {
    gap: 8px;
}

.livetrips-app .livetrips-location-card .livetrips-location-summary {
    color: var(--livetrips-muted);
    font-size: 0.77rem;
}

/* SWITCHES */

.livetrips-app .livetrips-switch {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 12px;
    cursor: pointer;
}

.livetrips-app .livetrips-switch > input {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
    pointer-events: none;
}

.livetrips-app .livetrips-switch__visual {
    position: relative;
    width: 40px;
    height: 22px;
    flex: 0 0 40px;
    margin-top: 1px;
    border-radius: 999px;
    background: #d7dee7;
    box-shadow:
        inset 0 0 0 1px rgba(16, 37, 66, 0.08);
    transition:
        background 150ms ease,
        box-shadow 150ms ease;
}

.livetrips-app .livetrips-switch__visual::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 2px 5px rgba(16, 37, 66, 0.22);
    transition: transform 150ms ease;
}

.livetrips-app .livetrips-switch > input:checked + .livetrips-switch__visual {
    background: var(--livetrips-orange);
}

.livetrips-app .livetrips-switch > input:checked + .livetrips-switch__visual::after {
    transform: translateX(18px);
}

.livetrips-app .livetrips-switch > input:focus-visible + .livetrips-switch__visual {
    box-shadow:
        0 0 0 4px rgba(242, 140, 40, 0.18);
}

.livetrips-app .livetrips-switch__text {
    color: #344054;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

/* BUTTONS */

.livetrips-app button,
.livetrips-app input[type="submit"],
.livetrips-app input[type="button"],
.livetrips-app .livetrips-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--livetrips-blue);
    border-radius: 10px;
    color: #ffffff;
    background: var(--livetrips-blue);
    box-shadow:
        0 5px 14px rgba(23, 105, 170, 0.16);
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 140ms ease,
        background 140ms ease,
        border-color 140ms ease,
        box-shadow 140ms ease;
}

.livetrips-app button:hover,
.livetrips-app input[type="submit"]:hover,
.livetrips-app input[type="button"]:hover,
.livetrips-app .livetrips-button:hover {
    transform: translateY(-1px);
    border-color: var(--livetrips-blue-strong);
    color: #ffffff;
    background: var(--livetrips-blue-strong);
    box-shadow:
        0 8px 18px rgba(23, 105, 170, 0.20);
    text-decoration: none;
}

.livetrips-app .livetrips-button--primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--livetrips-blue),
            #2683c5
        );
}

.livetrips-app .livetrips-button--secondary {
    border-color: var(--livetrips-border-strong);
    color: var(--livetrips-blue);
    background: #ffffff;
    box-shadow: none;
}

.livetrips-app .livetrips-button--secondary:hover {
    border-color: #a9c4da;
    color: var(--livetrips-blue-strong);
    background: #f3f8fc;
}

.livetrips-app .livetrips-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid #edf0f4;
}

.livetrips-app .livetrips-form-footer__note {
    margin: 0;
    color: var(--livetrips-muted);
    font-size: 0.8rem;
}

.livetrips-app .livetrips-create-submit {
    min-width: 190px;
}

/* ROUTE SUMMARY */

.livetrips-app .livetrips-builder__summary {
    position: sticky;
    top: 20px;
}

.livetrips-app .livetrips-route-summary {
    overflow: hidden;
}

.livetrips-app .livetrips-route-summary > .livetrips-panel__heading {
    margin: 0;
    padding: 24px 24px 18px;
    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #ffffff
        );
}

.livetrips-app .livetrips-route-timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin: 4px 24px 18px;
    padding: 8px 0;
}

.livetrips-app .livetrips-route-timeline::before {
    content: "";
    position: absolute;
    top: 27px;
    bottom: 27px;
    left: 7px;
    width: 2px;
    background:
        linear-gradient(
            180deg,
            var(--livetrips-green),
            var(--livetrips-orange),
            var(--livetrips-blue)
        );
}

.livetrips-app .livetrips-route-stop {
    position: relative;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 12px;
    min-height: 70px;
}

.livetrips-app .livetrips-route-stop__marker {
    z-index: 1;
    width: 16px;
    height: 16px;
    margin-top: 5px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 0 2px currentColor;
}

.livetrips-app .livetrips-route-stop--origin {
    color: var(--livetrips-green);
}

.livetrips-app .livetrips-route-stop--destination {
    color: var(--livetrips-orange);
}

.livetrips-app .livetrips-route-stop--return {
    color: var(--livetrips-blue);
}

.livetrips-app .livetrips-route-stop strong {
    display: block;
    margin-bottom: 2px;
    color: var(--livetrips-text-strong);
    font-size: 0.84rem;
}

.livetrips-app .livetrips-route-stop span:not(.livetrips-route-stop__marker) {
    display: block;
    overflow: hidden;
    color: var(--livetrips-muted);
    font-size: 0.79rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.livetrips-app .livetrips-route-preview {
    position: relative;
    margin: 0 18px 18px;
    padding: 165px 18px 18px;
    overflow: hidden;
    border-radius: 17px;
    color: var(--livetrips-text);
    background:
        linear-gradient(
            160deg,
            #e8f3fa 0%,
            #d9ecf7 46%,
            #edf5eb 47%,
            #dfead7 100%
        );
}

.livetrips-app .livetrips-route-preview::before,
.livetrips-app .livetrips-route-preview::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 100px;
    border-radius: 50% 50% 10% 10%;
    background: rgba(78, 118, 89, 0.16);
    transform: rotate(-10deg);
}

.livetrips-app .livetrips-route-preview::before {
    top: 48px;
    left: -30px;
}

.livetrips-app .livetrips-route-preview::after {
    top: 26px;
    right: -50px;
}

.livetrips-app .livetrips-route-preview__graphic {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 28px;
    left: 28px;
    height: 115px;
}

.livetrips-app .livetrips-route-preview__line {
    position: absolute;
    top: 23px;
    left: 18px;
    width: calc(100% - 36px);
    height: 68px;
    border: 4px solid rgba(23, 105, 170, 0.75);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-8deg);
}

.livetrips-app .livetrips-route-preview__dot {
    position: absolute;
    z-index: 3;
    width: 13px;
    height: 13px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 2px 8px rgba(16, 37, 66, 0.18);
}

.livetrips-app .livetrips-route-preview__dot--1 {
    left: 12px;
    bottom: 21px;
    background: var(--livetrips-green);
}

.livetrips-app .livetrips-route-preview__dot--2 {
    top: 12px;
    left: 48%;
    background: var(--livetrips-orange);
}

.livetrips-app .livetrips-route-preview__dot--3 {
    right: 8px;
    bottom: 15px;
    background: var(--livetrips-blue);
}

.livetrips-app .livetrips-route-preview strong,
.livetrips-app .livetrips-route-preview > span {
    position: relative;
    z-index: 3;
    display: block;
}

.livetrips-app .livetrips-route-preview strong {
    margin-bottom: 3px;
    font-size: 0.86rem;
}

.livetrips-app .livetrips-route-preview > span {
    color: #607080;
    font-size: 0.74rem;
}

.livetrips-app .livetrips-route-quote {
    margin: 0;
    padding: 19px 24px 23px;
    border: 0;
    border-top: 1px solid var(--livetrips-border);
    color: #536173;
    background: #fbfcfe;
    font-size: 0.78rem;
    font-style: italic;
    line-height: 1.55;
}

.livetrips-app .livetrips-route-quote::before {
    content: "“";
    margin-right: 4px;
    color: var(--livetrips-orange);
    font-size: 1.5rem;
    font-weight: 800;
}

/* TRIP LIBRARY */

.livetrips-app .livetrips-trip-library {
    margin-top: 46px;
}

.livetrips-app .livetrips-library-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.livetrips-app .livetrips-library-heading__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--livetrips-orange-strong);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.livetrips-app .livetrips-library-heading h2 {
    margin-bottom: 4px;
    color: var(--livetrips-text-strong);
    font-size: 1.55rem;
    font-weight: 850;
}

.livetrips-app .livetrips-library-heading p {
    margin-bottom: 0;
    color: var(--livetrips-muted);
    font-size: 0.9rem;
}

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

.livetrips-app .livetrips-trip-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--livetrips-border);
    border-radius: 19px;
    background: var(--livetrips-surface);
    box-shadow: var(--livetrips-shadow-sm);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.livetrips-app .livetrips-trip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--livetrips-shadow);
}

.livetrips-app .livetrips-trip-card__visual {
    position: relative;
    height: 112px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 72% 28%,
            rgba(242, 140, 40, 0.36),
            transparent 20%
        ),
        linear-gradient(
            145deg,
            #0f2b49,
            #205c83 55%,
            #74a7b2
        );
}

.livetrips-app .livetrips-trip-card__visual::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -46px;
    left: -18px;
    height: 86px;
    border-radius: 50%;
    background: rgba(230, 239, 224, 0.62);
}

.livetrips-app .livetrips-trip-card__road {
    position: absolute;
    z-index: 2;
    top: 31px;
    right: 42px;
    width: 55%;
    height: 45px;
    border: 3px dashed rgba(255, 255, 255, 0.72);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-8deg);
}

.livetrips-app .livetrips-trip-card__pin {
    position: absolute;
    z-index: 3;
    top: 23px;
    right: 28px;
    width: 15px;
    height: 15px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--livetrips-orange);
}

.livetrips-app .livetrips-trip-card__body {
    padding: 18px;
}

.livetrips-app .livetrips-trip-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.livetrips-app .livetrips-trip-card__top h3 {
    margin-bottom: 5px;
    color: var(--livetrips-text-strong);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.livetrips-app .livetrips-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #52606e;
    background: #eef1f5;
    font-size: 0.68rem;
    font-weight: 800;
}

.livetrips-app .livetrips-status-badge--active {
    color: #08715d;
    background: #e5f6f0;
}

.livetrips-app .livetrips-status-badge--draft {
    color: #315d83;
    background: #eaf3fb;
}

.livetrips-app .livetrips-status-badge--completed {
    color: #725116;
    background: #fff3d8;
}

.livetrips-app .livetrips-status-badge--archived {
    color: #596273;
    background: #eef0f3;
}

.livetrips-app .livetrips-trip-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 7px;
    margin-bottom: 13px;
    color: var(--livetrips-muted);
    font-size: 0.7rem;
}

.livetrips-app .livetrips-trip-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 13px;
    color: #536173;
    font-size: 0.8rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.livetrips-app .livetrips-trip-card__slug {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    margin-bottom: 14px;
    color: var(--livetrips-muted);
    font-size: 0.7rem;
}

.livetrips-app .livetrips-trip-card__slug code {
    overflow: hidden;
    padding: 3px 6px;
    border-radius: 5px;
    color: #536173;
    background: #f3f5f8;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.livetrips-app .livetrips-trip-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.livetrips-app .livetrips-trip-card__actions .livetrips-button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.78rem;
}

.livetrips-app .livetrips-empty-state {
    display: grid;
    min-height: 210px;
    place-items: center;
    padding: 28px;
    border: 1px dashed var(--livetrips-border-strong);
    border-radius: 18px;
    color: var(--livetrips-muted);
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.livetrips-app .livetrips-empty-state__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin: 0 auto 9px;
    border-radius: 16px;
    color: var(--livetrips-orange);
    background: var(--livetrips-orange-soft);
    font-size: 1.5rem;
}

/* SHARED LEGACY PRIMITIVES */

.livetrips-app .livetrips-stack,
.livetrips-app form:not(.livetrips-create-form) {
    display: grid;
    gap: 0.9rem;
}

.livetrips-app .livetrips-card,
.livetrips-app .livetrips-edit-panel,
.livetrips-app .livetrips-trip-structure,
.livetrips-app .livetrips-stop-list,
.livetrips-app fieldset:not(.livetrips-location-card) {
    min-width: 0;
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--livetrips-border);
    border-radius: var(--livetrips-radius);
    background: var(--livetrips-surface);
}

.livetrips-app .livetrips-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.8rem;
}

.livetrips-app table {
    width: 100%;
    border-collapse: collapse;
}

.livetrips-app th,
.livetrips-app td {
    padding: 0.65rem;
    border-bottom: 1px solid var(--livetrips-border);
    text-align: start;
    vertical-align: top;
}

.livetrips-app .livetrips-badge {
    display: inline-flex;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--livetrips-surface-soft);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .livetrips-app .livetrips-hero__content {
        padding-right: 335px;
    }

    .livetrips-app .livetrips-hero__art {
        width: 280px;
        right: 24px;
    }

    .livetrips-app .livetrips-builder {
        grid-template-columns:
            minmax(0, 1fr)
            310px;
        gap: 20px;
    }

    .livetrips-app .livetrips-location-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .livetrips-app .livetrips-location-card--return {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .livetrips-app .livetrips-hero {
        min-height: 300px;
    }

    .livetrips-app .livetrips-hero__content {
        padding-right: 250px;
    }

    .livetrips-app .livetrips-hero__art {
        top: 65px;
        right: 5px;
        width: 225px;
        height: 190px;
        opacity: 0.72;
    }

    .livetrips-app .livetrips-builder {
        grid-template-columns: 1fr;
    }

    .livetrips-app .livetrips-builder__summary {
        position: static;
    }

    .livetrips-app .livetrips-route-summary {
        display: grid;
        grid-template-columns:
            minmax(250px, 0.8fr)
            minmax(300px, 1.2fr);
    }

    .livetrips-app .livetrips-route-summary > .livetrips-panel__heading {
        grid-column: 1 / -1;
    }

    .livetrips-app .livetrips-route-timeline {
        align-self: center;
    }

    .livetrips-app .livetrips-route-quote {
        grid-column: 1 / -1;
    }

    .livetrips-app .livetrips-trip-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .livetrips-app .livetrips-my-trips--0100 {
        width: 100%;
        margin-left: 0;
    }

    .livetrips-app .livetrips-page,
    .livetrips-app .livetrips-hero__content {
        width: min(
            calc(100% - 28px),
            var(--livetrips-max-width)
        );
    }

    .livetrips-app .livetrips-page {
        padding-top: 24px;
        padding-bottom: 46px;
    }

    .livetrips-app .livetrips-hero {
        min-height: 340px;
    }

    .livetrips-app .livetrips-hero__content {
        padding: 42px 0 110px;
    }

    .livetrips-app .livetrips-hero__art {
        top: auto;
        right: 14px;
        bottom: -18px;
        width: 190px;
        height: 130px;
        opacity: 0.56;
    }

    .livetrips-app .livetrips-hero__features {
        gap: 9px;
    }

    .livetrips-app .livetrips-hero-feature {
        width: 100%;
    }

    .livetrips-app .livetrips-panel--builder {
        padding: 20px;
        border-radius: 18px;
    }

    .livetrips-app .livetrips-stepper {
        grid-template-columns:
            repeat(4, minmax(42px, 1fr));
        gap: 2px;
        padding: 12px 8px;
    }

    .livetrips-app .livetrips-step {
        display: grid;
        justify-items: center;
        gap: 5px;
        text-align: center;
    }

    .livetrips-app .livetrips-step:not(:last-child)::after {
        top: 14px;
        right: -10px;
        width: 19px;
    }

    .livetrips-app .livetrips-step__label {
        font-size: 0.64rem;
        line-height: 1.2;
    }

    .livetrips-app .livetrips-form-grid,
    .livetrips-app .livetrips-location-cards,
    .livetrips-app .livetrips-route-summary,
    .livetrips-app .livetrips-trip-grid {
        grid-template-columns: 1fr;
    }

    .livetrips-app .livetrips-location-card--return,
    .livetrips-app .livetrips-route-summary > .livetrips-panel__heading,
    .livetrips-app .livetrips-route-quote {
        grid-column: auto;
    }

    .livetrips-app .livetrips-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .livetrips-app .livetrips-create-submit {
        width: 100%;
    }

    .livetrips-app .livetrips-library-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .livetrips-app {
        font-size: 15px;
    }

    .livetrips-app .livetrips-hero__title {
        font-size: 2.15rem;
    }

    .livetrips-app .livetrips-panel--builder {
        padding: 16px;
    }

    .livetrips-app .livetrips-location-card {
        padding: 17px;
    }

    .livetrips-app .livetrips-trip-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .livetrips-app .livetrips-trip-card__actions .livetrips-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .livetrips-app *,
    .livetrips-app *::before,
    .livetrips-app *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* ==========================================================
   LIVE TRIPS 0.10.2-r1 — TRIP DETAIL REDESIGN
   Presentation only. Existing form/action contracts preserved.
   ========================================================== */

.livetrips-app .livetrips-trip--0102 {
    width: min(100%, var(--livetrips-max-width));
    margin: 0 auto;
    padding: 34px 24px 72px;
}

.livetrips-app .livetrips-trip--0102 > * + * {
    margin-top: 24px;
}


/* ----------------------------------------------------------
   Trip hero
   ---------------------------------------------------------- */

.livetrips-app .livetrips-trip-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    min-height: 300px;
    overflow: hidden;
    border-radius: var(--livetrips-radius-lg);
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(242, 140, 40, 0.28),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0b1730 0%,
            var(--livetrips-navy) 52%,
            var(--livetrips-navy-light) 100%
        );
    box-shadow: var(--livetrips-shadow-lg);
    color: #fff;
}

.livetrips-app .livetrips-trip-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            var(--livetrips-orange),
            #ffb45f 48%,
            rgba(255, 255, 255, 0.12)
        );
}

.livetrips-app .livetrips-trip-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 46px;
}

.livetrips-app .livetrips-trip-hero__topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.livetrips-app .livetrips-trip-hero__owner {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 600;
}

.livetrips-app .livetrips-trip-hero__title {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.livetrips-app .livetrips-trip-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.livetrips-app .livetrips-trip-hero__fact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.livetrips-app .livetrips-trip-hero__fact strong {
    color: #fff;
}

.livetrips-app .livetrips-trip-hero__visual {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.livetrips-app .livetrips-trip-hero__visual::before,
.livetrips-app .livetrips-trip-hero__visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.livetrips-app .livetrips-trip-hero__visual::before {
    width: 230px;
    height: 230px;
    top: 34px;
    right: -44px;
    border: 42px solid rgba(255, 255, 255, 0.055);
}

.livetrips-app .livetrips-trip-hero__visual::after {
    width: 160px;
    height: 160px;
    left: 10px;
    bottom: -76px;
    background: rgba(242, 140, 40, 0.14);
}

.livetrips-app .livetrips-trip-hero__route {
    position: absolute;
    z-index: 2;
    width: 270px;
    height: 150px;
    top: 78px;
    right: 30px;
    border-top: 4px dashed rgba(255, 255, 255, 0.48);
    border-right: 4px dashed rgba(255, 255, 255, 0.48);
    border-radius: 0 90px 0 0;
    transform: rotate(-7deg);
}

.livetrips-app .livetrips-trip-hero__pin {
    position: absolute;
    z-index: 3;
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--livetrips-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.livetrips-app .livetrips-trip-hero__pin--a {
    left: 34px;
    top: 68px;
}

.livetrips-app .livetrips-trip-hero__pin--b {
    right: 96px;
    top: 52px;
}

.livetrips-app .livetrips-trip-hero__pin--c {
    right: 36px;
    bottom: 44px;
}


/* ----------------------------------------------------------
   Description / general sections
   ---------------------------------------------------------- */

.livetrips-app .livetrips-trip-intro {
    padding: 23px 26px;
    border: 1px solid var(--livetrips-border);
    border-left: 5px solid var(--livetrips-orange);
    border-radius: var(--livetrips-radius);
    background: var(--livetrips-surface);
    box-shadow: var(--livetrips-shadow-sm);
    color: var(--livetrips-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.livetrips-app .livetrips-trip-section {
    position: relative;
    padding: 28px;
    border: 1px solid var(--livetrips-border);
    border-radius: var(--livetrips-radius-lg);
    background: var(--livetrips-surface);
    box-shadow: var(--livetrips-shadow-sm);
}

.livetrips-app .livetrips-trip-section__title {
    margin: 0 0 22px;
    color: var(--livetrips-text-strong);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.018em;
}

.livetrips-app .livetrips-trip-section--summary {
    background:
        linear-gradient(
            180deg,
            #fff 0%,
            var(--livetrips-surface-soft) 100%
        );
}


/* ----------------------------------------------------------
   Journey structure summary
   ---------------------------------------------------------- */

.livetrips-app .livetrips-structure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--livetrips-border);
    border-radius: var(--livetrips-radius);
    background: var(--livetrips-border);
}

.livetrips-app .livetrips-structure-grid__label,
.livetrips-app .livetrips-structure-grid__value {
    margin: 0;
    padding: 14px 17px;
    background: #fff;
}

.livetrips-app .livetrips-structure-grid__label {
    color: var(--livetrips-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.livetrips-app .livetrips-structure-grid__value {
    color: var(--livetrips-text-strong);
    font-size: 1rem;
    font-weight: 700;
}

.livetrips-app .livetrips-structure-grid__label:nth-of-type(n + 4),
.livetrips-app .livetrips-structure-grid__value:nth-of-type(n + 4) {
    border-top: 1px solid var(--livetrips-border);
}


/* ----------------------------------------------------------
   Point timeline
   ---------------------------------------------------------- */

.livetrips-app .livetrips-point-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 2px 0 2px 42px;
    list-style: none;
}

.livetrips-app .livetrips-point-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 13px;
    width: 3px;
    border-radius: 999px;
    background:
        linear-gradient(
            180deg,
            var(--livetrips-blue),
            var(--livetrips-orange)
        );
}

.livetrips-app .livetrips-point-card {
    position: relative;
    min-width: 0;
    padding: 22px 24px;
    border: 1px solid var(--livetrips-border);
    border-radius: var(--livetrips-radius);
    background: #fff;
    box-shadow: var(--livetrips-shadow-sm);
}

.livetrips-app .livetrips-point-card::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: -38px;
    top: 27px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--livetrips-blue);
    box-shadow:
        0 0 0 2px var(--livetrips-blue),
        0 5px 14px rgba(15, 79, 132, 0.24);
}

.livetrips-app .livetrips-point-card:first-of-type::before {
    background: var(--livetrips-green);
    box-shadow:
        0 0 0 2px var(--livetrips-green),
        0 5px 14px rgba(20, 134, 109, 0.24);
}

.livetrips-app .livetrips-point-card:last-of-type::before {
    background: var(--livetrips-orange);
    box-shadow:
        0 0 0 2px var(--livetrips-orange),
        0 5px 14px rgba(242, 140, 40, 0.26);
}

.livetrips-app .livetrips-point-card__title {
    margin: 0 0 10px;
    color: var(--livetrips-text-strong);
    font-size: 1.12rem;
    font-weight: 800;
}

.livetrips-app .livetrips-point-card > div {
    color: var(--livetrips-muted);
    line-height: 1.6;
}

.livetrips-app .livetrips-point-card > div + div {
    margin-top: 8px;
}


/* ----------------------------------------------------------
   Owner toolbar / editors
   ---------------------------------------------------------- */

.livetrips-app .livetrips-owner-toolbar {
    margin-bottom: 20px;
    padding: 15px 17px;
    border: 1px solid #cfe2f4;
    border-radius: var(--livetrips-radius);
    background: var(--livetrips-blue-soft);
}

.livetrips-app .livetrips-owner-toolbar > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 10px;
}

.livetrips-app .livetrips-owner-toolbar a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(23, 105, 170, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--livetrips-blue-strong);
    font-size: 0.87rem;
    font-weight: 700;
    text-decoration: none;
}

.livetrips-app .livetrips-owner-toolbar a:hover {
    border-color: var(--livetrips-blue);
    color: var(--livetrips-blue);
}

.livetrips-app .livetrips-owner-inline-editor {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--livetrips-border-strong);
}


/* ----------------------------------------------------------
   Owner management panels
   ---------------------------------------------------------- */

.livetrips-app .livetrips-owner-panel {
    padding: 28px;
    border: 1px solid var(--livetrips-border);
    border-radius: var(--livetrips-radius-lg);
    background: #fff;
    box-shadow: var(--livetrips-shadow-sm);
}

.livetrips-app .livetrips-owner-panel__title,
.livetrips-app .livetrips-owner-panel > h2,
.livetrips-app .livetrips-owner-panel > h3 {
    margin: 0 0 8px;
    color: var(--livetrips-text-strong);
    font-size: 1.3rem;
    font-weight: 800;
}

.livetrips-app .livetrips-owner-panel > p {
    margin-bottom: 20px;
    color: var(--livetrips-muted);
    line-height: 1.65;
}

.livetrips-app .livetrips-owner-panel form {
    display: grid;
    gap: 17px;
}

.livetrips-app .livetrips-owner-panel form > div {
    min-width: 0;
}

.livetrips-app .livetrips-owner-panel label {
    display: block;
    margin-bottom: 7px;
    color: var(--livetrips-text);
    font-size: 0.88rem;
    font-weight: 750;
}

.livetrips-app .livetrips-owner-panel button[type="submit"] {
    justify-self: start;
}

.livetrips-app .livetrips-owner-panel--trip {
    border-top: 4px solid var(--livetrips-blue);
}

.livetrips-app .livetrips-owner-panel--destination {
    border-top: 4px solid var(--livetrips-orange);
}

.livetrips-app .livetrips-owner-panel--terminal {
    border-top: 4px solid var(--livetrips-orange);
}

.livetrips-app .livetrips-owner-panel--add-point {
    border-top: 4px solid var(--livetrips-green);
}


/* ----------------------------------------------------------
   Owner callouts
   ---------------------------------------------------------- */

.livetrips-app .livetrips-owner-callout {
    padding: 18px 20px;
    border-radius: var(--livetrips-radius);
}

.livetrips-app .livetrips-owner-callout p {
    margin: 0 0 12px;
}

.livetrips-app .livetrips-owner-callout--danger {
    border: 1px solid rgba(180, 35, 24, 0.18);
    background: #fff5f4;
    color: #8f1d14;
}

.livetrips-app .livetrips-owner-callout--danger button {
    background: var(--livetrips-danger);
    border-color: var(--livetrips-danger);
}


/* ----------------------------------------------------------
   Status inside dark hero
   ---------------------------------------------------------- */

.livetrips-app .livetrips-trip-hero .livetrips-status-badge {
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}


/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */

@media (max-width: 980px) {

    .livetrips-app .livetrips-trip--0102 {
        padding: 24px 18px 54px;
    }

    .livetrips-app .livetrips-trip-hero {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .livetrips-app .livetrips-trip-hero__content {
        padding: 34px;
    }

    .livetrips-app .livetrips-trip-hero__route {
        right: -36px;
    }

    .livetrips-app .livetrips-structure-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {

    .livetrips-app .livetrips-trip--0102 {
        padding:
            16px
            max(14px, env(safe-area-inset-right))
            42px
            max(14px, env(safe-area-inset-left));
    }

    .livetrips-app .livetrips-trip--0102 > * + * {
        margin-top: 17px;
    }

    .livetrips-app .livetrips-trip-hero {
        display: block;
        min-height: 0;
        border-radius: 20px;
    }

    .livetrips-app .livetrips-trip-hero__content {
        padding: 28px 22px 30px;
    }

    .livetrips-app .livetrips-trip-hero__title {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .livetrips-app .livetrips-trip-hero__facts {
        display: grid;
        align-items: stretch;
    }

    .livetrips-app .livetrips-trip-hero__fact {
        width: fit-content;
        max-width: 100%;
    }

    .livetrips-app .livetrips-trip-hero__visual {
        height: 105px;
        min-height: 105px;
        opacity: 0.92;
    }

    .livetrips-app .livetrips-trip-hero__route {
        width: 250px;
        height: 95px;
        top: 14px;
        right: 14px;
    }

    .livetrips-app .livetrips-trip-hero__pin--a {
        left: 22px;
        top: 25px;
    }

    .livetrips-app .livetrips-trip-hero__pin--b {
        right: 105px;
        top: 12px;
    }

    .livetrips-app .livetrips-trip-hero__pin--c {
        right: 24px;
        bottom: 18px;
    }

    .livetrips-app .livetrips-trip-intro,
    .livetrips-app .livetrips-trip-section,
    .livetrips-app .livetrips-owner-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .livetrips-app .livetrips-point-timeline {
        padding-left: 31px;
    }

    .livetrips-app .livetrips-point-timeline::before {
        left: 8px;
    }

    .livetrips-app .livetrips-point-card {
        padding: 18px;
    }

    .livetrips-app .livetrips-point-card::before {
        left: -29px;
        top: 23px;
        width: 15px;
        height: 15px;
    }

    .livetrips-app .livetrips-owner-toolbar > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .livetrips-app .livetrips-owner-toolbar a {
        justify-content: center;
        width: 100%;
    }

    .livetrips-app .livetrips-owner-panel button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

/* /LIVE TRIPS 0.10.2-r1 — TRIP DETAIL REDESIGN */

/* ==========================================================
   LIVE TRIPS 0.10.2-r2 — COLLAPSIBLE CREATE
   ========================================================== */

.livetrips-app .livetrips-builder--collapsible[hidden] {
    display: none !important;
}

.livetrips-app .livetrips-builder--collapsible {
    scroll-margin-top: 96px;
}

.livetrips-app .livetrips-library-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.livetrips-app .livetrips-library-heading__actions {
    flex: 0 0 auto;
}

.livetrips-app .livetrips-create-toggle {
    white-space: nowrap;
}

.livetrips-app .livetrips-create-toggle__icon {
    display: inline-grid;
    place-items: center;
    width: 1.2em;
    margin-right: 5px;
    font-size: 1.08em;
    line-height: 1;
}

.livetrips-app .livetrips-empty-state {
    gap: 14px;
}

.livetrips-app .livetrips-empty-state__action {
    margin-top: 5px;
}

.livetrips-app
.livetrips-builder--collapsible:not([hidden]) {
    animation: livetrips-create-panel-in 180ms ease-out;
}

@keyframes livetrips-create-panel-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {

    .livetrips-app .livetrips-library-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .livetrips-app .livetrips-library-heading__actions {
        width: 100%;
    }

    .livetrips-app
    .livetrips-library-heading__actions
    .livetrips-create-toggle {
        width: 100%;
        justify-content: center;
    }

    .livetrips-app .livetrips-empty-state__action {
        width: 100%;
        justify-content: center;
    }
}

/* /LIVE TRIPS 0.10.2-r2 — COLLAPSIBLE CREATE */


/* LIVETRIPS-0103-R1-ROUTE-MAP-STYLES-BEGIN */

.livetrips-route-map-card {
    position: relative;
    overflow: hidden;
    margin-block: 1.25rem;
    padding: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.livetrips-route-map-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.livetrips-route-map-card__header > div {
    min-width: 0;
}

.livetrips-route-map-card__state {
    margin: 0.35rem 0 0;
    color: #5e6670;
    font-size: 0.95rem;
    line-height: 1.45;
}

.livetrips-route-map-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 48px;
    min-height: 34px;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #edf2f7;
    color: #253342;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.livetrips-route-map-card__badge--ready {
    background: #e7f6ec;
    color: #176b36;
}

.livetrips-route-map-card__badge--stale {
    background: #fff2df;
    color: #8c5100;
}

.livetrips-route-map-card__badge--no_coordinates,
.livetrips-route-map-card__badge--no_route,
.livetrips-route-map-card__badge--unavailable {
    background: #eef2f6;
    color: #536170;
}

.livetrips-route-map-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #eef2f5;
}

.livetrips-route-map-canvas .leaflet-control-container {
    font-size: 0.9rem;
}

.livetrips-route-map-canvas .leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.livetrips-route-map-canvas .leaflet-popup-content {
    margin: 0.75rem 0.9rem;
}

.livetrips-route-map-marker-wrap {
    background: transparent !important;
    border: 0 !important;
}

.livetrips-route-map-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #52606d;
    color: #fff;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 0, 0, 0.10);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.livetrips-route-map-marker__number {
    display: block;
    transform: translateY(0.5px);
}

.livetrips-route-map-marker--origin {
    background: #178447;
}

.livetrips-route-map-marker--normal {
    background: #1769aa;
}

.livetrips-route-map-marker--destination {
    background: #c23b32;
}

.livetrips-route-map-marker--return {
    background: #7a4ba3;
}

.livetrips-route-map-popup {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    min-width: 120px;
    max-width: 240px;
}

.livetrips-route-map-popup strong {
    flex: 0 0 auto;
    color: #1769aa;
}

.livetrips-route-map-popup span {
    overflow-wrap: anywhere;
}

.livetrips-route-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-top: 0.9rem;
    color: #4d5966;
    font-size: 0.86rem;
}

.livetrips-route-map-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.livetrips-route-map-legend__dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.livetrips-route-map-legend__dot--origin {
    background: #178447;
}

.livetrips-route-map-legend__dot--normal {
    background: #1769aa;
}

.livetrips-route-map-legend__dot--destination {
    background: #c23b32;
}

.livetrips-route-map-legend__dot--return {
    background: #7a4ba3;
}

.livetrips-route-map-empty {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 132px;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    background: #f7f9fb;
    color: #536170;
    line-height: 1.5;
}

.livetrips-route-map-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9eef3;
    color: #1769aa;
    font-size: 1.45rem;
    line-height: 1;
}

.livetrips-route-map-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 0;
}

.livetrips-route-map-metrics > div {
    min-width: 0;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    background: #f5f7f9;
}

.livetrips-route-map-metrics dt {
    margin: 0 0 0.25rem;
    color: #6a7480;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.livetrips-route-map-metrics dd {
    margin: 0;
    color: #202b36;
    font-size: 1.05rem;
    font-weight: 750;
}

.livetrips-route-map-card[data-livetrips-route-map-state="ready"] {
    border-color: rgba(23, 132, 71, 0.22);
}

.livetrips-route-map-card[data-livetrips-route-map-state="stale"] {
    border-color: rgba(188, 111, 0, 0.25);
}

@media (max-width: 767.98px) {
    .livetrips-route-map-card {
        padding: 0.85rem;
        border-radius: 13px;
    }

    .livetrips-route-map-card__header {
        gap: 0.75rem;
    }

    .livetrips-route-map-canvas {
        height: 330px;
        min-height: 280px;
        border-radius: 11px;
    }

    .livetrips-route-map-legend {
        gap: 0.55rem 0.8rem;
    }

    .livetrips-route-map-metrics {
        grid-template-columns: 1fr;
    }

    .livetrips-route-map-empty {
        min-height: 112px;
        padding: 0.9rem;
    }
}

.livetrips-route-map-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.livetrips-route-map-card__fullscreen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 34px;
    padding: 0.35rem 0.72rem;
    border: 1px solid rgba(23, 105, 170, 0.24);
    border-radius: 9px;
    background: #f4f8fb;
    color: #1769aa;
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.1;
    transition:
        background-color 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease;
}

.livetrips-route-map-card__fullscreen:hover {
    border-color: rgba(23, 105, 170, 0.42);
    background: #eaf3fa;
}

.livetrips-route-map-card__fullscreen:focus-visible {
    outline: 3px solid rgba(23, 105, 170, 0.24);
    outline-offset: 2px;
}

.livetrips-route-map-card__fullscreen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    line-height: 1;
}

.livetrips-route-map-card__fullscreen[aria-pressed="true"] {
    border-color: rgba(23, 105, 170, 0.42);
    background: #1769aa;
    color: #fff;
}

html.livetrips-route-map-page--fullscreen {
    overflow: hidden;
}

.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"] {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0.85rem;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
.livetrips-route-map-card__header {
    flex: 0 0 auto;
    margin-bottom: 0.75rem;
}

.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
.livetrips-route-map-canvas {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 12px;
}

.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
> form,
.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
.livetrips-route-map-legend,
.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
.livetrips-route-map-metrics,
.livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
.livetrips-route-map-empty {
    display: none;
}

.livetrips-route-map-card::backdrop {
    background: #101722;
}

@media (max-width: 767.98px) {
    .livetrips-route-map-card__actions {
        gap: 0.4rem;
    }

    .livetrips-route-map-card__fullscreen {
        min-width: 38px;
        padding-inline: 0.55rem;
    }

    .livetrips-route-map-card__fullscreen-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"] {
        padding: 0.55rem;
    }

    .livetrips-route-map-card[data-livetrips-route-map-fullscreen-active="1"]
    .livetrips-route-map-canvas {
        border-radius: 9px;
    }
}

/* LIVETRIPS-0103-R1-ROUTE-MAP-STYLES-END */



/* LIVETRIPS-R3-MYCAMPER-DETAIL-V21-BEGIN */

/*
 * One coherent detail-page design layer.
 * Shared MyCamper branding asset is presentation only.
 * Trip title, points, route, metrics, progression and links
 * remain entirely dynamic.
 */

.livetrips-app .livetrips-trip {
    --lt-orange: #ff7900;
    --lt-orange-dark: #e96800;
    --lt-navy: #062d49;
    --lt-navy-dark: #031f35;
    --lt-blue: #1479bc;
    --lt-text: #182331;
    --lt-muted: #6c7887;
    --lt-border: #e3e9ef;
    --lt-soft: #f6f8fb;
    --lt-green: #1d9b5d;

    box-sizing: border-box;

    position: relative;
    left: 50%;

    width: min(1500px, calc(100vw - 36px));
    max-width: none;

    margin: 20px 0 52px;

    transform: translateX(-50%);

    color: var(--lt-text);
}

.livetrips-app .livetrips-trip *,
.livetrips-app .livetrips-trip *::before,
.livetrips-app .livetrips-trip *::after {
    box-sizing: border-box;
}


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

.livetrips-app .livetrips-dashboard-hero {
    position: relative;

    width: 100%;
    min-height: 410px;

    overflow: hidden;

    border: 0;
    border-radius: 16px;

    color: #fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(3,25,43,.99) 0%,
            rgba(3,30,50,.97) 38%,
            rgba(3,32,52,.88) 58%,
            rgba(3,32,52,.60) 76%,
            rgba(3,28,47,.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2,24,40,.30) 0%,
            rgba(2,24,40,.14) 58%,
            rgba(2,24,40,.24) 100%
        ),
        url("/images/2026/articles-page/articles-hero-desktop--1920x640.webp");

    background-size:
        100% 100%,
        100% 100%,
        170% auto;

    background-position:
        center center,
        center center,
        100% 88%;

    background-repeat: no-repeat;

    box-shadow:
        0 14px 34px
        rgba(14,45,66,.14);
}

.livetrips-app .livetrips-dashboard-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 55%,
            rgba(2,22,37,.44) 100%
        );
}

.livetrips-app .livetrips-dashboard-hero__ambient {
    display: none;
}

.livetrips-app .livetrips-dashboard-hero__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    min-height: 410px;

    padding: 34px 38px 0;
}

.livetrips-app .livetrips-dashboard-hero__main {
    display: grid;

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

    gap: 42px;

    align-items: start;
}

.livetrips-app .livetrips-dashboard-hero__copy {
    min-width: 0;
    max-width: 880px;
}

.livetrips-app .livetrips-dashboard-hero__eyebrow {
    margin: 0 0 13px;

    color: #ffb15f;

    font-size: 12px;
    font-weight: 850;

    letter-spacing: .08em;
}

.livetrips-app .livetrips-dashboard-hero__title {
    max-width: 900px;

    margin: 0 0 14px;

    color: #fff;

    font-size: clamp(42px, 4vw, 66px);
    font-weight: 900;

    line-height: .99;

    letter-spacing: -.045em;

    text-shadow:
        0 2px 14px
        rgba(0,0,0,.18);
}

.livetrips-app .livetrips-dashboard-hero__badges {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin: 0 0 13px;
}

.livetrips-app .livetrips-dashboard-badge {
    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding: 5px 12px;

    border:
        1px solid
        rgba(255,255,255,.28);

    border-radius: 999px;

    color: #fff;

    background:
        rgba(7,37,57,.48);

    backdrop-filter: blur(8px);

    font-size: 11px;
    font-weight: 800;
}

.livetrips-app .livetrips-dashboard-badge--ready {
    border-color:
        rgba(83,211,142,.34);

    background:
        rgba(24,153,87,.88);
}

.livetrips-app .livetrips-dashboard-hero__description {
    max-width: 720px;

    margin: 0;

    color:
        rgba(255,255,255,.91);

    font-size: 15px;

    line-height: 1.55;
}

.livetrips-app .livetrips-dashboard-hero__actions {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 10px;

    max-width: 430px;
}

.livetrips-app .livetrips-dashboard-action {
    min-height: 46px;

    display: inline-flex;

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

    gap: 8px;

    padding: 0 18px;

    border:
        1px solid
        rgba(255,255,255,.92);

    border-radius: 9px;

    color:
        #12334b !important;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 7px 22px
        rgba(2,18,31,.17);

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

    text-decoration: none !important;
}

.livetrips-app
.livetrips-dashboard-action--primary {
    border-color:
        var(--lt-orange);

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #ff8b20,
            #ff7100
        );

    box-shadow:
        0 8px 24px
        rgba(255,121,0,.28);
}


/* ==================== KPI STRIP ==================== */

.livetrips-app .livetrips-dashboard-kpis {
    width: calc(100% + 76px);

    display: grid;

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

    margin:
        auto -38px
        0;

    border-top:
        1px solid
        rgba(255,255,255,.15);

    background:
        rgba(2,27,45,.91);

    backdrop-filter:
        blur(9px);
}

.livetrips-app .livetrips-dashboard-kpi {
    min-width: 0;
    min-height: 88px;

    display: grid;

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

    grid-template-rows:
        auto
        auto;

    align-content: center;

    column-gap: 12px;

    padding: 15px 24px;

    border-right:
        1px solid
        rgba(255,255,255,.13);
}

.livetrips-app .livetrips-dashboard-kpi:last-child {
    border-right: 0;
}

.livetrips-app .livetrips-dashboard-kpi__icon {
    grid-row: 1 / 3;

    align-self: center;

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255,255,255,.12);
}

.livetrips-app .livetrips-dashboard-kpi__value {
    color: #fff;

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

    line-height: 1.1;
}

.livetrips-app .livetrips-dashboard-kpi__label {
    margin-top: 4px;

    color:
        rgba(255,255,255,.68);

    font-size: 10.5px;

    line-height: 1.25;
}

.livetrips-app
.livetrips-dashboard-kpi--state.is-ready
.livetrips-dashboard-kpi__icon {
    color: #08713f;

    background: #c8f4d9;
}


/* ==================== SMALL DETAILS BAR ==================== */

.livetrips-app
.livetrips-dashboard-details-toggle {
    width: 100%;

    margin: 14px 0 18px;

    overflow: hidden;

    border:
        1px solid
        var(--lt-border);

    border-radius: 9px;

    background: #fff;

    box-shadow:
        0 3px 12px
        rgba(19,51,72,.035);
}


/* ==================== MAP + SUMMARY ==================== */

.livetrips-app
.livetrips-dashboard-route-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.82fr)
        minmax(360px, .82fr);

    gap: 22px;

    align-items: stretch;

    margin: 0;
}

.livetrips-app
.livetrips-route-map-card,
.livetrips-app
.livetrips-dashboard-route-summary {
    min-width: 0;

    border:
        1px solid
        var(--lt-border);

    border-radius: 15px;

    background: #fff;

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

.livetrips-app
.livetrips-route-map-card {
    padding: 22px;
}

.livetrips-app
.livetrips-route-map-card__header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 14px;
}

.livetrips-app
.livetrips-route-map-card
.livetrips-trip-section__title,
.livetrips-app
.livetrips-dashboard-route-summary__title {
    margin: 0;

    color: var(--lt-text);

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

    line-height: 1.12;
}

.livetrips-app
.livetrips-route-map-card__state {
    margin-top: 5px;

    color: var(--lt-muted);

    font-size: 12px;

    line-height: 1.4;
}

.livetrips-app
.livetrips-route-map-card__fullscreen {
    min-height: 43px;

    padding: 0 15px;

    border: 0;
    border-radius: 9px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2389cc,
            #126cac
        );

    font-size: 12px;
    font-weight: 850;

    box-shadow:
        0 5px 15px
        rgba(22,116,181,.18);
}

.livetrips-app
.livetrips-route-map-canvas {
    width: 100%;
    height: 620px;

    overflow: hidden;

    border-radius: 12px;

    background: #edf3f7;
}

.livetrips-app
.livetrips-route-map-legend {
    margin-top: 12px;
}

.livetrips-app
.livetrips-dashboard-route-grid
.livetrips-route-map-metrics {
    display: none !important;
}


/* ==================== SUMMARY ==================== */

.livetrips-app
.livetrips-dashboard-route-summary {
    display: flex;

    flex-direction: column;

    padding: 21px;
}

.livetrips-app
.livetrips-dashboard-route-summary__header {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 14px;

    padding-bottom: 15px;

    border-bottom:
        1px solid #edf0f3;
}

.livetrips-app
.livetrips-dashboard-route-summary__eyebrow {
    margin-bottom: 4px;

    color: var(--lt-orange);

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

    letter-spacing: .12em;
}

.livetrips-app
.livetrips-dashboard-route-summary__count {
    min-width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 999px;

    color: #285875;

    background: #edf5fa;

    font-size: 12px;
    font-weight: 900;
}

.livetrips-app
.livetrips-dashboard-route-list {
    position: relative;

    display: grid;

    gap: 10px;

    margin: 16px 0;

    padding: 0;

    overflow: visible;
}

.livetrips-app
.livetrips-dashboard-route-list:has(
    .livetrips-dashboard-route-list__item:nth-child(8)
) {
    max-height: 480px;

    overflow-y: auto;

    padding-right: 5px;

    scrollbar-width: thin;
}

.livetrips-app
.livetrips-dashboard-route-list::before {
    content: "";

    position: absolute;

    top: 36px;
    bottom: 36px;
    left: 25px;

    width: 2px;

    background:
        linear-gradient(
            #24a167,
            #2289cc 50%,
            #ff7900
        );

    opacity: .48;
}

.livetrips-app
.livetrips-dashboard-route-list__item {
    position: relative;
    z-index: 1;

    min-height: 78px;

    display: grid;

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

    gap: 12px;

    align-items: center;

    padding: 12px;

    border:
        1px solid
        #e4ebf0;

    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fafcfd
        );
}

.livetrips-app
.livetrips-dashboard-route-list__number {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border:
        3px solid #fff;

    border-radius: 50%;

    color: #fff;

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

    box-shadow:
        0 0 0
        2px currentColor;
}

.livetrips-app
.livetrips-dashboard-route-list__copy {
    min-width: 0;
}

.livetrips-app
.livetrips-dashboard-route-list__copy strong {
    display: block;

    width: auto;
    max-width: none;

    overflow: visible;

    color: #233140;

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

    line-height: 1.28;

    white-space: normal;

    text-overflow: clip;
}

.livetrips-app
.livetrips-dashboard-route-list__copy span {
    display: block;

    margin-top: 4px;

    color: #8995a0;

    font-size: 10.5px;
}

.livetrips-app
.livetrips-dashboard-route-summary__metrics {
    display: grid;

    gap: 0;

    margin-top: auto;

    padding-top: 13px;

    border-top:
        1px solid
        #edf0f3;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric {
    min-height: 60px;

    display: grid;

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

    gap: 11px;

    align-items: center;

    padding: 8px 0;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--lt-blue);

    background: #edf5fa;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric span {
    color: #7c8e9c;

    font-size: 10.5px;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric strong {
    display: block;

    margin-top: 2px;

    color: #17324a;

    font-size: 15px;
    font-weight: 900;
}

.livetrips-app
.livetrips-dashboard-route-summary__ready {
    margin-top: 13px;

    padding: 14px;

    border:
        1px solid #cce9d6;

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #effaf3,
            #e4f7eb
        );
}


/* ==================== STOPS ==================== */

.livetrips-app
.livetrips-trip-section--points {
    width: 100%;

    margin: 22px 0 0;

    padding: 22px;

    border:
        1px solid
        var(--lt-border);

    border-radius: 15px;

    background: #fff;

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

.livetrips-app
.livetrips-journey-heading {
    display: grid;

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

    gap: 11px;

    align-items: center;

    min-height: 54px;

    margin: 0 0 14px;

    padding: 0 0 13px;

    border-bottom:
        1px solid #edf0f3;
}

.livetrips-app
.livetrips-trip-section--points
.livetrips-trip-section__title {
    margin: 0;

    color: var(--lt-text);

    font-size: 23px;
    font-weight: 900;
}

.livetrips-app
.livetrips-journey-heading__count {
    min-width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #285875;

    background: #edf5fa;

    font-size: 11px;
    font-weight: 900;
}

.livetrips-app
.livetrips-journey-heading__controls {
    justify-self: end;

    display: flex;

    gap: 8px;
}

.livetrips-app
.livetrips-journey-heading__button {
    min-height: 39px;

    padding: 0 13px;

    border:
        1px solid #dce6ed;

    border-radius: 8px;

    color: #24516f;

    background: #f8fbfd;

    font-size: 11px;
    font-weight: 850;
}


/* compact progression blocks */

.livetrips-app
.livetrips-live-progress {
    margin-bottom: 12px;

    border:
        1px solid #e4e9ed;

    border-radius: 10px;

    background: #fbfcfd;
}

.livetrips-app
.livetrips-owner-structural-tools {
    margin-bottom: 16px;

    padding: 12px 14px;

    border:
        1px solid #d6e7f1;

    border-radius: 10px;

    background: #eef7fd;
}


/* timeline */

.livetrips-app
.livetrips-point-timeline {
    position: relative;

    display: grid;

    gap: 15px;

    margin: 0;

    padding: 0 0 0 44px;
}

.livetrips-app
.livetrips-point-timeline::before {
    content: "";

    position: absolute;

    top: 20px;
    bottom: 20px;
    left: 20px;

    width: 3px;

    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            #22a268 0%,
            #2488ca 52%,
            #ff7900 100%
        );
}

.livetrips-app
.livetrips-point-card {
    position: relative;

    display: block;

    min-width: 0;
    min-height: 196px;

    margin: 0;

    padding:
        20px
        330px
        20px
        20px;

    border:
        1px solid
        var(--lt-border) !important;

    border-radius: 13px !important;

    background: #fff !important;

    box-shadow:
        0 5px 19px
        rgba(20,51,72,.055) !important;
}

.livetrips-app
.livetrips-point-card::before {
    content: "";

    position: absolute;

    top: 25px;
    left: -31px;

    width: 14px;
    height: 14px;

    border:
        3px solid #fff;

    border-radius: 50%;

    background: #2488ca;

    box-shadow:
        0 0 0 2px #2488ca;
}

.livetrips-app
.livetrips-point-card--role-origin::before {
    background: #22a268;

    box-shadow:
        0 0 0 2px #22a268;
}

.livetrips-app
.livetrips-point-card--role-return::before,
.livetrips-app
.livetrips-point-card--role-destination::before {
    background: #ff7900;

    box-shadow:
        0 0 0 2px #ff7900;
}

.livetrips-app
.livetrips-point-card__header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 14px;
}

.livetrips-app
.livetrips-point-card__heading {
    min-width: 0;
}

.livetrips-app
.livetrips-point-card__title {
    margin: 0;

    color: #1d2c3a;

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

    line-height: 1.22;
}

.livetrips-app
.livetrips-point-card__badges {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 7px;
}

.livetrips-app
.livetrips-point-card__meta,
.livetrips-app
.livetrips-point-card__coordinates,
.livetrips-app
.livetrips-point-card address,
.livetrips-app
.livetrips-point-card p {
    color: var(--lt-muted);

    font-size: 12px;

    line-height: 1.55;
}


/* real media only */

.livetrips-app
.livetrips-journey-stop__media:not(:has(img)) {
    display: none !important;
}

.livetrips-app
.livetrips-journey-stop__media:has(img) {
    grid-column: 1;

    width: 100%;
    height: 230px;

    overflow: hidden;

    border-radius: 11px;

    background: #eef3f6;
}

.livetrips-app
.livetrips-journey-stop__media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* next stop panel */

.livetrips-app
.livetrips-journey-next {
    position: absolute !important;

    top: 18px;
    right: 18px;
    bottom: 18px;

    width: 292px !important;
    min-width: 0;

    display: flex;

    flex-direction: column;

    padding: 15px;

    border:
        1px solid #d9e8f1;

    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #f8fcff,
            #ecf6fc
        );
}

.livetrips-app
.livetrips-journey-next__eyebrow {
    margin-bottom: 9px;

    color: #1479bc;

    font-size: 10px;
    font-weight: 900;
}

.livetrips-app
.livetrips-journey-next__body {
    display: grid;

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

    gap: 9px;

    align-items: start;
}

.livetrips-app
.livetrips-journey-next__content {
    min-width: 0;
}

.livetrips-app
.livetrips-journey-next__content strong {
    display: block;

    overflow: visible;

    color: #17324a;

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

    line-height: 1.28;

    white-space: normal;

    text-overflow: clip;
}

.livetrips-app
.livetrips-journey-next__content small {
    display: block;

    margin-top: 4px;

    color: #7d8f9c;

    font-size: 10px;
}

.livetrips-app
.livetrips-journey-next__metrics {
    display: grid;

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

    gap: 8px;

    margin-top: 13px;

    padding-top: 11px;

    border-top:
        1px solid #dbe7ee;
}

.livetrips-app
.livetrips-journey-next__metric {
    min-width: 0;

    min-height: 41px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 8px;

    border:
        1px solid #dfe8ee;

    border-radius: 8px;

    background: #fff;
}

.livetrips-app
.livetrips-journey-next__metric strong {
    color: #17324a;

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

    line-height: 1.2;

    white-space: normal;
}

.livetrips-app
.livetrips-journey-next--final {
    border-color: #cfe7d8;

    background:
        linear-gradient(
            180deg,
            #f1faf4,
            #e7f7ed
        );
}


/* many-stop compact mode */

.livetrips-app
#livetrips-points-section.is-compact
.livetrips-point-card {
    grid-template-columns: 1fr;

    min-height: 0;

    padding: 15px 17px;
}

.livetrips-app
#livetrips-points-section.is-compact
.livetrips-journey-next,
.livetrips-app
#livetrips-points-section.is-compact
.livetrips-journey-stop__media {
    display: none !important;
}


/* ==================== BOTTOM ==================== */

.livetrips-app
.livetrips-dashboard-bottom-grid {
    width: 100%;

    display: grid;

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

    gap: 20px;

    margin: 22px 0 0;
}

.livetrips-app
.livetrips-dashboard-info-card,
.livetrips-app
.livetrips-dashboard-actions-card {
    min-width: 0;

    padding: 22px;

    border:
        1px solid
        var(--lt-border);

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 6px 21px
        rgba(20,51,72,.055);
}

.livetrips-app
.livetrips-dashboard-info-card__title,
.livetrips-app
.livetrips-dashboard-actions-card__title {
    color: var(--lt-text);

    font-size: 21px;
    font-weight: 900;
}

.livetrips-app
.livetrips-dashboard-action-grid {
    display: grid;

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

    gap: 10px;
}

.livetrips-app
.livetrips-dashboard-action-grid > * {
    min-height: 82px;

    padding: 13px;

    border:
        1px solid
        #e2e9ee;

    border-radius: 10px;

    background:
        linear-gradient(
            #fff,
            #fafcfd
        );
}

.livetrips-app
.livetrips-dashboard-owner-management {
    width: 100%;

    margin: 16px 0 0;

    border:
        1px solid
        var(--lt-border);

    border-radius: 9px;

    background: #fff;
}


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

@media (max-width: 1180px) {

    .livetrips-app
    .livetrips-dashboard-route-grid {
        grid-template-columns:
            minmax(0,1fr)
            350px;
    }

    .livetrips-app
    .livetrips-route-map-canvas {
        height: 540px;
    }

    .livetrips-app
    .livetrips-point-card {
        padding-right: 307px;
    }

    .livetrips-app
    .livetrips-journey-next {
        width: 270px !important;
    }
}


@media (max-width: 900px) {

    .livetrips-app
    .livetrips-trip {
        left: 0;

        width: 100%;

        transform: none;
    }

    .livetrips-app
    .livetrips-dashboard-route-grid {
        grid-template-columns: 1fr;
    }

    .livetrips-app
    .livetrips-dashboard-kpis {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .livetrips-app
    .livetrips-dashboard-bottom-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .livetrips-app
    .livetrips-dashboard-hero {
        min-height: 0;

        background-image:
            linear-gradient(
                180deg,
                rgba(3,29,48,.91),
                rgba(3,29,48,.95)
            ),
            url("/images/2026/articles-page/articles-hero-mobile--1122x1402.webp");

        background-size:
            100% 100%,
            170% auto;

        background-position:
            center center,
            84% 88%;

        border-radius: 10px;
    }

    .livetrips-app
    .livetrips-dashboard-hero__content {
        min-height: 0;

        padding: 22px 18px 0;
    }

    .livetrips-app
    .livetrips-dashboard-hero__main {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .livetrips-app
    .livetrips-dashboard-hero__title {
        font-size:
            clamp(32px,9vw,43px);
    }

    .livetrips-app
    .livetrips-dashboard-hero__actions {
        justify-content: flex-start;
    }

    .livetrips-app
    .livetrips-dashboard-kpis {
        width: calc(100% + 36px);

        margin:
            24px -18px
            0;
    }

    .livetrips-app
    .livetrips-dashboard-kpi {
        min-height: 72px;

        padding: 11px 12px;
    }

    .livetrips-app
    .livetrips-route-map-card,
    .livetrips-app
    .livetrips-dashboard-route-summary,
    .livetrips-app
    .livetrips-trip-section--points {
        padding: 14px;
    }

    .livetrips-app
    .livetrips-route-map-canvas {
        height: min(65vh,430px);
    }

    .livetrips-app
    .livetrips-point-timeline {
        padding-left: 30px;
    }

    .livetrips-app
    .livetrips-point-timeline::before {
        left: 13px;
    }

    .livetrips-app
    .livetrips-point-card::before {
        left: -24px;
    }

    .livetrips-app
    .livetrips-point-card {
        min-height: 0;

        padding: 16px;
    }

    .livetrips-app
    .livetrips-journey-next {
        position: relative !important;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100% !important;

        margin-top: 14px;
    }

    .livetrips-app
    .livetrips-dashboard-action-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 420px) {

    .livetrips-app
    .livetrips-dashboard-kpis {
        grid-template-columns: 1fr;
    }

    .livetrips-app
    .livetrips-dashboard-kpi {
        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.13);
    }

    .livetrips-app
    .livetrips-dashboard-kpi:last-child {
        border-bottom: 0;
    }

    .livetrips-app
    .livetrips-journey-next__metrics {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   0.11.17 DETAIL ROOT INTEGRATION
   Let the Joomla/MyCamper page background show through.
   The global .livetrips-app background remains unchanged
   for My Trips and other views.
   ========================================================== */

.livetrips-app.livetrips-app--trip-detail {
    background: transparent;
}

/* ==========================================================
   0.11.15 REFINEMENT
   Integrated into the single V15 detail layer.
   ========================================================== */


/* ----------------------------------------------------------
   PAGE / TYPOGRAPHY
   ---------------------------------------------------------- */

.livetrips-app .livetrips-trip {
    font-size: 14px;

    padding:
        22px
        0
        48px;
}

.livetrips-app .livetrips-trip,
.livetrips-app .livetrips-trip button,
.livetrips-app .livetrips-trip input,
.livetrips-app .livetrips-trip select,
.livetrips-app .livetrips-trip textarea {
    color:
        #182331;
}

.livetrips-app .livetrips-trip a {
    text-decoration-thickness:
        1px;

    text-underline-offset:
        2px;
}


/* ----------------------------------------------------------
   DETAILS / COLLAPSIBLE ROWS
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-trip details {
    color:
        #182331;
}

.livetrips-app
.livetrips-trip details > summary {
    color:
        #17324a !important;

    font-size: 12px;
    font-weight: 800;

    opacity: 1 !important;

    cursor: pointer;
}

.livetrips-app
.livetrips-dashboard-details-toggle {
    margin:
        14px 0
        20px;

    border-color:
        #dbe5ec;

    background:
        #fff;
}

.livetrips-app
.livetrips-dashboard-details-toggle > summary {
    min-height:
        42px;

    display: flex;

    align-items: center;

    padding:
        0
        14px;
}


/* ----------------------------------------------------------
   GLOBAL OWNER CONTROL CONTRAST
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-trip-section--points button,
.livetrips-app
.livetrips-trip-section--points .btn,
.livetrips-app
.livetrips-trip-section--points a.btn,
.livetrips-app
.livetrips-dashboard-bottom-grid button,
.livetrips-app
.livetrips-dashboard-bottom-grid .btn,
.livetrips-app
.livetrips-dashboard-bottom-grid a.btn {
    color:
        #185277 !important;

    border:
        1px solid
        #cddde7 !important;

    background:
        #f7fbfd !important;

    opacity:
        1 !important;

    box-shadow:
        none;

    font-weight:
        800;
}

.livetrips-app
.livetrips-trip-section--points button:hover:not(:disabled),
.livetrips-app
.livetrips-trip-section--points .btn:hover,
.livetrips-app
.livetrips-dashboard-bottom-grid button:hover:not(:disabled),
.livetrips-app
.livetrips-dashboard-bottom-grid .btn:hover {
    color:
        #073956 !important;

    border-color:
        #9fc6dd !important;

    background:
        #eaf5fb !important;
}

.livetrips-app
.livetrips-trip-section--points button:disabled,
.livetrips-app
.livetrips-trip-section--points .btn:disabled,
.livetrips-app
.livetrips-trip-section--points button[disabled] {
    color:
        #70808c !important;

    border-color:
        #d8e1e6 !important;

    background:
        #edf2f5 !important;

    opacity:
        1 !important;

    cursor:
        not-allowed;
}


/* Progression is an actual primary action */

.livetrips-app
.livetrips-live-progress button:not(:disabled) {
    color:
        #fff !important;

    border-color:
        #1479bc !important;

    background:
        linear-gradient(
            135deg,
            #2388cc,
            #126cab
        ) !important;

    box-shadow:
        0 5px 14px
        rgba(20,121,188,.17);
}


/* Delete must look destructive, not like a primary blue CTA */

.livetrips-app
.livetrips-point-card
form:has(
    input[value="point.delete"]
)
button {
    color:
        #b42318 !important;

    border-color:
        #efc3bf !important;

    background:
        #fff6f5 !important;
}


/* ----------------------------------------------------------
   ROUTE AREA
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-dashboard-route-grid {
    grid-template-columns:
        minmax(0,1.88fr)
        minmax(380px,.82fr);

    gap:
        24px;
}

.livetrips-app
.livetrips-route-map-card,
.livetrips-app
.livetrips-dashboard-route-summary {
    border-color:
        #dce6ed;

    box-shadow:
        0 8px 28px
        rgba(10,44,68,.075);
}


/* ----------------------------------------------------------
   SUMMARY — TURN THE BOX LIST INTO A ROUTE TIMELINE
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-dashboard-route-summary {
    padding:
        24px;
}

.livetrips-app
.livetrips-dashboard-route-summary__header {
    padding-bottom:
        17px;
}

.livetrips-app
.livetrips-dashboard-route-summary__eyebrow {
    margin-bottom:
        6px;

    color:
        #ff7900;

    font-size:
        10px;

    letter-spacing:
        .14em;
}

.livetrips-app
.livetrips-dashboard-route-summary__title {
    font-size:
        24px;

    letter-spacing:
        -.02em;
}

.livetrips-app
.livetrips-dashboard-route-list {
    display: block;

    margin:
        17px
        0
        19px;

    padding:
        2px 0;

    overflow: visible;
}

.livetrips-app
.livetrips-dashboard-route-list:has(
    .livetrips-dashboard-route-list__item:nth-child(8)
) {
    max-height:
        440px;

    overflow-y:
        auto;
}

.livetrips-app
.livetrips-dashboard-route-list::before {
    display:
        none;
}

.livetrips-app
.livetrips-dashboard-route-list__item {
    position:
        relative;

    min-height:
        70px;

    display:
        block;

    margin:
        0;

    padding:
        9px
        8px
        12px
        54px;

    border:
        0;

    border-radius:
        0;

    background:
        transparent;
}

.livetrips-app
.livetrips-dashboard-route-list__item:not(:last-child)::after {
    content:
        "";

    position:
        absolute;

    top:
        43px;

    bottom:
        -7px;

    left:
        24px;

    width:
        2px;

    background:
        #d5e2ea;
}

.livetrips-app
.livetrips-dashboard-route-list__number {
    position:
        absolute;

    top:
        9px;

    left:
        7px;

    width:
        36px;

    height:
        36px;

    border:
        3px solid
        #fff;

    color:
        #fff;

    background:
        #2189ca;

    box-shadow:
        0 0 0
        2px
        #2189ca;
}

.livetrips-app
.livetrips-dashboard-route-list__item:first-child
.livetrips-dashboard-route-list__number {
    background:
        #1d9b5d;

    box-shadow:
        0 0 0
        2px
        #1d9b5d;
}

.livetrips-app
.livetrips-dashboard-route-list__item:last-child
.livetrips-dashboard-route-list__number {
    background:
        #ff7900;

    box-shadow:
        0 0 0
        2px
        #ff7900;
}

.livetrips-app
.livetrips-dashboard-route-list__copy strong {
    color:
        #172c3c;

    font-size:
        14px;

    font-weight:
        900;

    line-height:
        1.3;
}

.livetrips-app
.livetrips-dashboard-route-list__copy span {
    margin-top:
        4px;

    color:
        #718390;

    font-size:
        11px;
}

.livetrips-app
.livetrips-dashboard-route-summary__metrics {
    padding-top:
        15px;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric {
    min-height:
        62px;

    border-bottom:
        1px solid
        #edf1f4;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric:last-child {
    border-bottom:
        0;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric span {
    color:
        #687c8a;

    font-size:
        11px;
}

.livetrips-app
.livetrips-dashboard-route-summary__metric strong {
    color:
        #102f46;

    font-size:
        16px;
}

.livetrips-app
.livetrips-dashboard-route-summary__ready {
    padding:
        16px;

    color:
        #125a36;

    border-color:
        #bde2ca;

    background:
        linear-gradient(
            180deg,
            #effaf3,
            #e4f7eb
        );
}


/* ----------------------------------------------------------
   STOPS SECTION
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-trip-section--points {
    padding:
        24px;

    border-color:
        #dce6ed;

    box-shadow:
        0 8px 28px
        rgba(10,44,68,.075);
}

.livetrips-app
.livetrips-trip-section--points
.livetrips-trip-section__title {
    color:
        #152a3b;

    font-size:
        24px;

    letter-spacing:
        -.02em;
}

.livetrips-app
.livetrips-journey-heading {
    min-height:
        58px;

    margin-bottom:
        16px;

    border-bottom-color:
        #e7edf1;
}

.livetrips-app
.livetrips-journey-heading__button {
    min-height:
        40px;

    color:
        #185277 !important;

    border-color:
        #cddde7 !important;

    background:
        #f7fbfd !important;
}


/* ----------------------------------------------------------
   LIVE PROGRESS / OWNER TOOLS
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-live-progress {
    padding:
        13px 15px;

    border-color:
        #dfe7ec;

    background:
        #fafcfd;
}

.livetrips-app
.livetrips-live-progress,
.livetrips-app
.livetrips-live-progress * {
    opacity:
        1;
}

.livetrips-app
.livetrips-owner-structural-tools {
    padding:
        13px 15px;

    color:
        #21465f;

    border-color:
        #cee1ed;

    background:
        #edf7fc;
}

.livetrips-app
.livetrips-owner-structural-tools strong,
.livetrips-app
.livetrips-owner-structural-tools summary {
    color:
        #163a53 !important;

    font-weight:
        850;
}


/* ----------------------------------------------------------
   STOP TIMELINE
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-point-timeline {
    gap:
        13px;

    padding-left:
        46px;
}

.livetrips-app
.livetrips-point-card {
    min-height:
        184px;

    padding:
        21px
        330px
        20px
        21px;

    border-color:
        #dfe7ec !important;

    box-shadow:
        0 5px 20px
        rgba(15,49,71,.06) !important;
}

.livetrips-app
.livetrips-point-card:hover {
    border-color:
        #cbdbe5 !important;

    box-shadow:
        0 9px 26px
        rgba(15,49,71,.09) !important;
}

.livetrips-app
.livetrips-point-card__title {
    color:
        #162b3b;

    font-size:
        18px;

    font-weight:
        900;
}

.livetrips-app
.livetrips-point-card__badges {
    margin:
        7px 0
        9px;
}

.livetrips-app
.livetrips-point-card__badges > * {
    color:
        #4e6271 !important;

    border:
        1px solid
        #dbe4ea;

    background:
        #f6f8fa;

    font-weight:
        750;
}

.livetrips-app
.livetrips-point-card address,
.livetrips-app
.livetrips-point-card p,
.livetrips-app
.livetrips-point-card__meta {
    color:
        #5f7381;

    font-size:
        13px;

    line-height:
        1.55;
}


/*
 * Coordinates are administration/debug-level information.
 * They remain available through editing but no longer dominate
 * the travel-story card.
 */
.livetrips-app
.livetrips-point-card__coordinates {
    display:
        none;
}


/* ----------------------------------------------------------
   MAKE ALL SMALL POINT CONTROLS ACTUALLY VISIBLE
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-point-card button {
    min-width:
        34px;

    min-height:
        34px;

    color:
        #28536e !important;

    border:
        1px solid
        #cfdee7 !important;

    background:
        #f5f9fb !important;

    opacity:
        1 !important;
}

.livetrips-app
.livetrips-point-card button svg,
.livetrips-app
.livetrips-point-card button i {
    color:
        currentColor !important;

    opacity:
        1 !important;
}


/* Destructive form override after generic button rule */

.livetrips-app
.livetrips-point-card
form:has(
    input[value="point.delete"]
)
button {
    color:
        #b42318 !important;

    border-color:
        #efc3bf !important;

    background:
        #fff5f4 !important;
}


/* ----------------------------------------------------------
   NEXT / FINAL PANEL
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-journey-next {
    top:
        16px;

    right:
        16px;

    bottom:
        16px;

    width:
        296px !important;

    padding:
        16px;

    border-color:
        #cfe1ec;

    background:
        linear-gradient(
            180deg,
            #f8fcff,
            #ecf6fc
        );
}

.livetrips-app
.livetrips-journey-next__eyebrow {
    color:
        #0873b8;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .02em;
}

.livetrips-app
.livetrips-journey-next__content strong {
    color:
        #12334b;

    font-size:
        13px;

    line-height:
        1.32;
}

.livetrips-app
.livetrips-journey-next__content small {
    color:
        #667d8d;
}

.livetrips-app
.livetrips-journey-next__metric {
    color:
        #18374d;

    border-color:
        #d6e3eb;

    background:
        #fff;
}

.livetrips-app
.livetrips-journey-next__metric strong {
    color:
        #17364c;
}

.livetrips-app
.livetrips-journey-next--final {
    color:
        #155d39;

    border-color:
        #c3e2ce;

    background:
        linear-gradient(
            180deg,
            #f1faf4,
            #e5f6eb
        );
}


/* ----------------------------------------------------------
   OWNER EDIT DETAILS INSIDE CARDS
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-point-card details {
    margin-top:
        12px;

    padding-top:
        10px;

    border-top:
        1px solid
        #edf1f4;
}

.livetrips-app
.livetrips-point-card details > summary {
    color:
        #28536e !important;

    font-size:
        11.5px;

    font-weight:
        800;
}


/* ----------------------------------------------------------
   BOTTOM CARDS
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-dashboard-bottom-grid {
    gap:
        22px;

    margin-top:
        22px;
}

.livetrips-app
.livetrips-dashboard-info-card,
.livetrips-app
.livetrips-dashboard-actions-card {
    padding:
        24px;

    border-color:
        #dce6ed;

    box-shadow:
        0 7px 23px
        rgba(15,49,71,.06);
}

.livetrips-app
.livetrips-dashboard-info-card__title,
.livetrips-app
.livetrips-dashboard-actions-card__title {
    color:
        #152b3c;

    font-size:
        22px;

    font-weight:
        900;
}

.livetrips-app
.livetrips-dashboard-info-card dt {
    color:
        #607482;

    font-size:
        11px;

    font-weight:
        800;
}

.livetrips-app
.livetrips-dashboard-info-card dd {
    color:
        #192e3d;

    font-size:
        13px;
}

.livetrips-app
.livetrips-dashboard-action-grid > * {
    min-height:
        86px;

    color:
        #18384e !important;

    border-color:
        #dce6ed !important;

    background:
        #fff !important;

    opacity:
        1 !important;
}

.livetrips-app
.livetrips-dashboard-action-grid > *:hover {
    border-color:
        #a8ccdf !important;

    background:
        #f2f9fd !important;
}


/* ----------------------------------------------------------
   LOWER MANAGEMENT ROW
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-dashboard-owner-management {
    margin-top:
        15px;

    border-color:
        #dae4ea;

    background:
        #fff;
}

.livetrips-app
.livetrips-dashboard-owner-management > summary {
    min-height:
        42px;

    display:
        flex;

    align-items:
        center;

    padding:
        0 14px;

    color:
        #274b62 !important;

    background:
        #f9fbfc;

    font-weight:
        800;
}


/* ----------------------------------------------------------
   HERO FINISH
   ---------------------------------------------------------- */

.livetrips-app
.livetrips-dashboard-hero__title {
    text-wrap:
        balance;
}

.livetrips-app
.livetrips-dashboard-kpi__value {
    overflow:
        visible;

    text-overflow:
        clip;

    white-space:
        normal;
}


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

@media (max-width: 1180px) {

    .livetrips-app
    .livetrips-dashboard-route-grid {
        grid-template-columns:
            minmax(0,1fr)
            350px;
    }

    .livetrips-app
    .livetrips-point-card {
        padding-right:
            306px;
    }

    .livetrips-app
    .livetrips-journey-next {
        width:
            270px !important;
    }
}


@media (max-width: 900px) {

    .livetrips-app
    .livetrips-trip {
        box-shadow:
            none;

        clip-path:
            none;

        padding-top:
            12px;
    }

    .livetrips-app
    .livetrips-dashboard-route-grid {
        grid-template-columns:
            1fr;
    }

    .livetrips-app
    .livetrips-dashboard-route-summary {
        padding:
            19px;
    }
}


@media (max-width: 700px) {

    .livetrips-app
    .livetrips-trip-section--points {
        padding:
            14px;
    }

    .livetrips-app
    .livetrips-point-card {
        min-height:
            0;

        padding:
            17px;
    }

    .livetrips-app
    .livetrips-point-card__coordinates {
        display:
            none;
    }

    .livetrips-app
    .livetrips-journey-next {
        position:
            relative !important;

        top:
            auto;

        right:
            auto;

        bottom:
            auto;

        width:
            100% !important;

        margin-top:
            14px;
    }

    .livetrips-app
    .livetrips-dashboard-bottom-grid {
        grid-template-columns:
            1fr;
    }
}


/* ==========================================================
   END 0.11.15 REFINEMENT
   ========================================================== */


/* ==========================================================
   0.11.18 HERO FULL-BLEED ONLY
   Background/image goes viewport-wide.
   Hero content remains aligned to the MyCamper content width.
   ========================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-hero {
    width: 100vw;
    max-width: none;

    margin-left:
        calc(50% - 50vw);

    margin-right:
        calc(50% - 50vw);

    border-radius: 0;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-hero__content,
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-kpis {
    width:
        min(
            calc(100% - 40px),
            var(--livetrips-max-width)
        );

    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 700px) {

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-hero__content,
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-kpis {
        width:
            min(
                calc(100% - 24px),
                var(--livetrips-max-width)
            );
    }
}



/* ==========================================================
   0.11.19 HERO TOP ALIGNMENT ONLY
   Remove desktop gap between MyCamper navigation and hero.
   ========================================================== */

@media (min-width: 901px) {

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-hero {
        margin-top: -52px;
    }
}



/* ==========================================================
   0.11.20 ROUTE SUMMARY ONLY
   - Same height as map card.
   - Remove duplicated totals/status already shown in hero.
   ========================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-grid {
    align-items: stretch;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-card,
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-summary {
    height: 100%;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-summary {
    align-self: stretch;

    display: flex;
    flex-direction: column;

    min-height: 0;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list {
    flex: 1 1 auto;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-summary__metrics,
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-summary__ready {
    display: none !important;
}



/* ==========================================================
   0.11.21 ROUTE SUMMARY TRUE ROW STRETCH
   Desktop:
   - map and summary share exactly the same grid row
   - same top edge and same bottom edge
   - no fixed pixel height
   - stop list consumes all available summary height
   - scrollbar appears only after available height is filled
   ========================================================== */

@media (min-width: 901px) {

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-grid {
        align-items: stretch !important;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-route-map-card,
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-summary {
        align-self: stretch !important;

        height: auto !important;
        min-height: 0 !important;

        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-summary {
        display: flex !important;
        flex-direction: column !important;

        max-height: none !important;

        overflow: hidden;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list {
        flex: 1 1 0 !important;

        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        scrollbar-gutter: stable;
        overscroll-behavior: contain;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-summary__metrics,
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-summary__ready {
        display: none !important;
    }
}


/* LIVETRIPS-R3-MYCAMPER-DETAIL-V21-END */


/* LIVETRIPS-R3-DESTINATION-STAR-V23-BEGIN */

@keyframes livetrips-destination-star-pulse {
    0%,
    100% {
        transform: scale(1);
        filter:
            drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25))
            drop-shadow(0 0 3px rgba(245, 158, 11, 0.45));
    }

    50% {
        transform: scale(1.20);
        filter:
            drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28))
            drop-shadow(0 0 9px rgba(245, 158, 11, 0.90));
    }
}


/* Main destination marker on map */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #f59e0b !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.28),
        0 0 1px #fff;
    transform-origin: center;
    animation:
        livetrips-destination-star-pulse
        1.55s
        ease-in-out
        infinite;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination
.livetrips-route-map-marker__number {
    display: block;
    transform: none !important;
}


/* Main destination in route summary */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--principal-destination
.livetrips-dashboard-route-list__number {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #f59e0b !important;
    font-size: 1.55rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.20),
        0 0 1px #fff;
    transform-origin: center;
    animation:
        livetrips-destination-star-pulse
        1.55s
        ease-in-out
        infinite;
}


/* Destination in legend */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-legend__dot--destination {
    position: relative;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background: transparent !important;
    border: 0 !important;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-legend__dot--destination::before {
    content: "★";
    position: absolute;
    left: 50%;
    top: 50%;
    color: #f59e0b;
    font-size: 15px;
    line-height: 1;
    transform: translate(-50%, -50%);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-route-map-marker--destination,

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__item--principal-destination
    .livetrips-dashboard-route-list__number {
        animation: none !important;
    }
}

/* LIVETRIPS-R3-DESTINATION-STAR-V23-END */


/* LIVETRIPS-R3-CURRENT-PULSE-V25-BEGIN */

@keyframes livetrips-current-location-pulse {
    0% {
        transform: scale(0.82);
        opacity: 0.95;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker {
    position: relative;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 3px solid #f97316;
    border-radius: 999px;
    pointer-events: none;
    animation:
        livetrips-current-location-pulse
        1.35s
        ease-out
        infinite;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current {
    outline: 3px solid rgba(249, 115, 22, 0.88);
    outline-offset: 2px;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-next {
    box-shadow:
        0 0 0 3px rgba(23, 105, 170, 0.20),
        0 2px 8px rgba(15, 23, 42, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-route-map-marker--status-current::after {
        animation: none !important;
        opacity: 0.7;
        transform: none;
    }
}

/* LIVETRIPS-R3-CURRENT-PULSE-V25-END */








/* LIVETRIPS-R3-NAMED-MARKERS-V29-BEGIN */

/* ======================================================
   MAP — LOCATION NAMES INSTEAD OF NUMBERS
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker {
    display: inline-flex;

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

    width: auto !important;
    min-width: 76px;
    max-width: 194px;

    height: auto !important;
    min-height: 34px;

    box-sizing: border-box;

    padding:
        0.42rem
        0.68rem;

    border:
        2px solid
        #ffffff !important;

    border-radius:
        999px !important;

    background:
        #1769aa !important;

    color:
        #ffffff !important;

    box-shadow:
        0 3px 10px
        rgba(15, 23, 42, 0.24),
        0 0 0 1px
        rgba(15, 23, 42, 0.10) !important;

    font-size:
        0.75rem !important;

    font-weight:
        850 !important;

    line-height:
        1.18 !important;

    text-align:
        center;

    text-shadow:
        none !important;

    animation:
        none !important;

    transform:
        none !important;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker__label {
    display: block;

    min-width: 0;

    transform:
        none !important;

    white-space:
        normal;

    overflow-wrap:
        anywhere;

    word-break:
        normal;
}


/* Origin */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--origin {
    background:
        #178447 !important;
}


/* Normal stop */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--normal {
    background:
        #1769aa !important;
}


/* Principal destination */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination {
    background:
        #f59e0b !important;

    border:
        2px solid
        #ffffff !important;

    color:
        #3f2d00 !important;

    box-shadow:
        0 3px 12px
        rgba(180, 113, 0, 0.28),
        0 0 0 1px
        rgba(180, 113, 0, 0.16) !important;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination
.livetrips-route-map-marker__label::before {
    content:
        "★";

    display:
        inline-block;

    margin-inline-end:
        0.32rem;

    color:
        #ffffff;

    font-size:
        0.9em;
}


/* Return */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--return {
    background:
        #7a4ba3 !important;
}


/* Current location */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current {
    background:
        #f97316 !important;

    color:
        #ffffff !important;

    outline:
        3px solid
        rgba(249, 115, 22, 0.88);

    outline-offset:
        2px;
}


/* Next destination */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-next {
    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, 0.22),
        0 3px 10px
        rgba(15, 23, 42, 0.22) !important;
}


/*
 * Existing current-location ::after pulse from V25
 * remains active around the new dynamic-width pill.
 */


/* Popup contains only location name */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-popup {
    display:
        block;

    min-width:
        0;

    max-width:
        260px;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-popup strong {
    display:
        block;

    color:
        #233140;

    overflow-wrap:
        anywhere;
}


/* ======================================================
   ROUTE SUMMARY — NAME + STATE
   ====================================================== */

@keyframes livetrips-summary-current-name-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 2px
            rgba(249, 115, 22, 0.82),
            0 0 0 4px
            rgba(249, 115, 22, 0.20),
            0 3px 8px
            rgba(15, 23, 42, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 3px
            rgba(249, 115, 22, 1),
            0 0 0 8px
            rgba(249, 115, 22, 0),
            0 4px 11px
            rgba(15, 23, 42, 0.12);
    }
}


/*
 * The old vertical line was positioned for 34px circles.
 * Named pills no longer need that numbered timeline spine.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list::before {
    display:
        none;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item {
    min-height:
        66px;

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

    gap:
        10px;

    align-items:
        center;
}


/* Dynamic location-name pill */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.34rem;

    width:
        fit-content;

    max-width:
        100%;

    box-sizing:
        border-box;

    padding:
        0.48rem
        0.72rem;

    border:
        2px solid
        #dbe7ef;

    border-radius:
        999px;

    background:
        #f7fbfe;

    color:
        #24445f;

    box-shadow:
        0 3px 8px
        rgba(15, 23, 42, 0.06);

    font-size:
        0.78rem;

    font-weight:
        850;

    line-height:
        1.22;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place-title {
    min-width:
        0;

    overflow-wrap:
        anywhere;

    word-break:
        normal;
}


/* Principal destination star inside name pill */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place-star {
    flex:
        0 0 auto;

    color:
        #f59e0b;

    font-size:
        1rem;

    line-height:
        1;
}


/* State pill — right side */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    max-width:
        128px;

    box-sizing:
        border-box;

    padding:
        0.34rem
        0.54rem;

    border:
        1px solid
        #dce5ec;

    border-radius:
        999px;

    background:
        #ffffff;

    color:
        #6d7b87;

    font-size:
        0.67rem;

    font-weight:
        850;

    line-height:
        1.18;

    text-align:
        center;

    white-space:
        normal;
}


/* Stop */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--stop
.livetrips-dashboard-route-list__place {
    border-color:
        #b9d7ea;

    background:
        #f2f8fc;

    color:
        #185d8d;
}


/* Origin */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--origin
.livetrips-dashboard-route-list__place {
    border-color:
        #9bd3b6;

    background:
        #effaf4;

    color:
        #166534;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--origin {
    border-color:
        #b9e3ca;

    background:
        #f0faf4;

    color:
        #166534;
}


/* Current */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--current
.livetrips-dashboard-route-list__place {
    border-color:
        #f97316;

    background:
        #fff7ed;

    color:
        #c2410c;

    animation:
        livetrips-summary-current-name-pulse
        1.35s
        ease-in-out
        infinite;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--current {
    border-color:
        #fdba74;

    background:
        #fff7ed;

    color:
        #c2410c;
}


/* Next */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--next
.livetrips-dashboard-route-list__place {
    border-color:
        #93c5fd;

    background:
        #eff6ff;

    color:
        #1d4ed8;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--next {
    border-color:
        #bfdbfe;

    background:
        #eff6ff;

    color:
        #1d4ed8;
}


/* Principal destination */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--destination
.livetrips-dashboard-route-list__place,
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--principal-destination
.livetrips-dashboard-route-list__place {
    border-color:
        #f7c95c;

    background:
        #fffbeb;

    color:
        #8a5a00;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--destination {
    border-color:
        #fde68a;

    background:
        #fffbeb;

    color:
        #8a5a00;
}


/* Return */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--return
.livetrips-dashboard-route-list__place {
    border-color:
        #cdb4e3;

    background:
        #f7f2fb;

    color:
        #69408d;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--return {
    border-color:
        #ddc9ee;

    background:
        #f8f4fb;

    color:
        #69408d;
}


/*
 * If the principal destination is simultaneously current/next,
 * progression status remains the primary visual state.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--principal-destination.livetrips-dashboard-route-list__item--current
.livetrips-dashboard-route-list__place {
    border-color:
        #f97316;

    background:
        #fff7ed;

    color:
        #c2410c;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--principal-destination.livetrips-dashboard-route-list__item--next
.livetrips-dashboard-route-list__place {
    border-color:
        #93c5fd;

    background:
        #eff6ff;

    color:
        #1d4ed8;
}


@media (max-width: 700px) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__item {
        grid-template-columns:
            minmax(0, 1fr);

        gap:
            7px;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__state {
        justify-self:
            start;

        max-width:
            100%;
    }
}


@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__item--current
    .livetrips-dashboard-route-list__place {
        animation:
            none !important;

        box-shadow:
            0 0 0 3px
            rgba(249, 115, 22, 0.72),
            0 3px 8px
            rgba(15, 23, 42, 0.08);
    }
}

/* LIVETRIPS-R3-NAMED-MARKERS-V29-END */


/* LIVETRIPS-R3-NORTHCAPE-NAMED-MARKERS-V30-BEGIN */


/* ======================================================
   MAP — LABEL ABOVE A SMALL PIN
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker {
    position: relative !important;

    display: block !important;

    width: 200px !important;
    min-width: 0 !important;
    max-width: none !important;

    height: 64px !important;
    min-height: 0 !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    color: inherit !important;

    outline: 0 !important;

    transform: none !important;
    animation: none !important;
}


/* actual text label */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker__label {
    position: absolute;

    left: 50%;
    bottom: 19px;

    display: block;

    width: max-content;
    min-width: 0;
    max-width: 150px;

    box-sizing: border-box;

    padding:
        0.34rem
        0.55rem;

    border:
        1.5px solid
        #8cb9d7;

    border-radius:
        8px;

    background:
        rgba(255,255,255,.96);

    color:
        #174f76;

    box-shadow:
        0 2px 7px
        rgba(15,23,42,.16);

    font-size:
        0.69rem;

    font-weight:
        850;

    line-height:
        1.16;

    text-align:
        center;

    white-space:
        normal;

    overflow-wrap:
        anywhere;

    transform:
        translateX(-50%) !important;

    transition:
        opacity 120ms ease,
        visibility 120ms ease;
}


/* no star inside map text */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination
.livetrips-route-map-marker__label::before {
    content: none !important;
    display: none !important;
}


/* small location pin */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker__pin {
    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 12px;
    height: 12px;

    box-sizing: border-box;

    border:
        2px solid
        #ffffff;

    border-radius:
        50%;

    background:
        #1769aa;

    box-shadow:
        0 0 0 1px
        rgba(15,23,42,.25),
        0 2px 5px
        rgba(15,23,42,.22);

    transform:
        translateX(-50%);
}


/* normal */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--normal
.livetrips-route-map-marker__pin {
    background:
        #1769aa;
}


/* origin */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--origin
.livetrips-route-map-marker__label {
    border-color:
        #72bf91;

    color:
        #17653a;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--origin
.livetrips-route-map-marker__pin {
    background:
        #178447;
}


/* destination */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination
.livetrips-route-map-marker__label {
    border-color:
        #f5b52f;

    background:
        rgba(255,250,231,.97);

    color:
        #8a5a00;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--destination
.livetrips-route-map-marker__pin {
    background:
        #f59e0b;
}


/* return */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--return
.livetrips-route-map-marker__label {
    border-color:
        #b291cc;

    color:
        #69408d;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--return
.livetrips-route-map-marker__pin {
    background:
        #7a4ba3;
}


/* current */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current
.livetrips-route-map-marker__label {
    border-color:
        #f97316;

    background:
        #f97316;

    color:
        #ffffff;

    box-shadow:
        0 3px 10px
        rgba(249,115,22,.30);
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current
.livetrips-route-map-marker__pin {
    background:
        #f97316;
}


/* Disable old whole-marker pulse. */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current::after {
    display:
        none !important;
}


/* Current pulse only around its pin. */

@keyframes livetrips-map-current-pin-pulse {
    0% {
        box-shadow:
            0 0 0 0
            rgba(249,115,22,.80),
            0 0 0 1px
            rgba(15,23,42,.20);
    }

    75% {
        box-shadow:
            0 0 0 9px
            rgba(249,115,22,0),
            0 0 0 1px
            rgba(15,23,42,.20);
    }

    100% {
        box-shadow:
            0 0 0 9px
            rgba(249,115,22,0),
            0 0 0 1px
            rgba(15,23,42,.20);
    }
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current
.livetrips-route-map-marker__pin {
    animation:
        livetrips-map-current-pin-pulse
        1.35s
        ease-out
        infinite;
}


/* next */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-next
.livetrips-route-map-marker__label {
    border-color:
        #3b82f6;

    background:
        #eff6ff;

    color:
        #1d4ed8;
}


/*
 * Collision control:
 * only the text disappears; the geographic pin stays visible.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--label-hidden
.livetrips-route-map-marker__label {
    opacity: 0;
    visibility: hidden;
}


/* ======================================================
   SUMMARY — FORCE NAME + STATUS ON SAME ROW
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item {
    display:
        flex !important;

    flex-wrap:
        nowrap !important;

    align-items:
        center !important;

    justify-content:
        flex-start !important;

    gap:
        8px !important;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place {
    flex:
        0 1 auto;

    width:
        auto !important;

    min-width:
        0;

    max-width:
        calc(100% - 116px) !important;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place-title {
    display:
        -webkit-box;

    min-width:
        0;

    overflow:
        hidden;

    -webkit-box-orient:
        vertical;

    -webkit-line-clamp:
        2;

    line-clamp:
        2;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state {
    flex:
        0 0 108px;

    width:
        108px;

    max-width:
        108px !important;

    margin:
        0 !important;

    align-self:
        center;

    white-space:
        normal;
}


/*
 * Current pulse stays only on the location-name pill.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--current
.livetrips-dashboard-route-list__place {
    animation:
        livetrips-summary-current-name-pulse
        1.35s
        ease-in-out
        infinite;
}


@media (max-width: 700px) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__item {
        align-items:
            flex-start !important;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__place {
        max-width:
            calc(100% - 104px) !important;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__state {
        flex-basis:
            96px;

        width:
            96px;

        max-width:
            96px !important;
    }
}


@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-route-map-marker--status-current
    .livetrips-route-map-marker__pin {
        animation:
            none !important;
    }
}

/* LIVETRIPS-R3-NORTHCAPE-NAMED-MARKERS-V30-END */


/* LIVETRIPS-R3-CLEAN-SUMMARY-V31-BEGIN */


/* ======================================================
   ROUTE SUMMARY — SIMPLE LOCATION NAMES
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item {
    min-height:
        52px !important;

    display:
        flex !important;

    flex-wrap:
        nowrap !important;

    align-items:
        center !important;

    gap:
        10px !important;

    padding:
        8px 10px !important;

    border:
        0 !important;

    border-bottom:
        1px solid
        #edf1f4 !important;

    border-radius:
        0 !important;

    background:
        transparent !important;

    box-shadow:
        none !important;
}


/* Plain location name — no capsule/pill. */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place {
    flex:
        1 1 auto !important;

    display:
        inline-flex !important;

    align-items:
        center;

    gap:
        0.38rem;

    width:
        auto !important;

    max-width:
        none !important;

    min-width:
        0;

    padding:
        0 !important;

    border:
        0 !important;

    border-radius:
        0 !important;

    background:
        transparent !important;

    box-shadow:
        none !important;

    color:
        #25384a !important;

    font-size:
        0.80rem !important;

    font-weight:
        800 !important;

    line-height:
        1.28 !important;

    animation:
        none !important;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place-title {
    display:
        block !important;

    overflow:
        visible !important;

    white-space:
        normal;

    -webkit-line-clamp:
        initial !important;

    line-clamp:
        initial !important;
}


/* Principal destination: only the star + clean gold emphasis. */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__place-star {
    flex:
        0 0 auto;

    color:
        #f59e0b !important;

    font-size:
        1.05rem !important;

    line-height:
        1;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--principal-destination
.livetrips-dashboard-route-list__place {
    color:
        #7a5200 !important;
}


/* All state chips are suppressed by default. */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state {
    display:
        none !important;
}


/* ======================================================
   CURRENT — "Είμαστε εδώ"
   ====================================================== */

@keyframes livetrips-summary-here-dot-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 0
            rgba(249,115,22,.75);
    }

    55% {
        box-shadow:
            0 0 0 7px
            rgba(249,115,22,0);
    }
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--current
.livetrips-dashboard-route-list__place {
    color:
        #d95408 !important;

    font-weight:
        900 !important;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--current {
    display:
        inline-flex !important;

    flex:
        0 0 auto !important;

    align-items:
        center;

    gap:
        0.42rem;

    width:
        auto !important;

    max-width:
        none !important;

    padding:
        0 !important;

    border:
        0 !important;

    border-radius:
        0 !important;

    background:
        transparent !important;

    color:
        #d95408 !important;

    font-size:
        0.68rem !important;

    font-weight:
        900 !important;

    line-height:
        1.2;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--current::before {
    content:
        "";

    width:
        8px;

    height:
        8px;

    flex:
        0 0 8px;

    border-radius:
        50%;

    background:
        #f97316;

    animation:
        livetrips-summary-here-dot-pulse
        1.25s
        ease-out
        infinite;
}


/* ======================================================
   PRINCIPAL DESTINATION — star + label only
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--destination {
    display:
        inline-flex !important;

    flex:
        0 0 auto !important;

    width:
        auto !important;

    max-width:
        none !important;

    padding:
        0 !important;

    border:
        0 !important;

    border-radius:
        0 !important;

    background:
        transparent !important;

    color:
        #9a6900 !important;

    font-size:
        0.66rem !important;

    font-weight:
        800 !important;

    line-height:
        1.2;
}


/* ======================================================
   MAP — make current pulse obvious
   ====================================================== */

@keyframes livetrips-map-current-ring-v31 {
    0% {
        transform:
            scale(.72);

        opacity:
            .95;
    }

    75% {
        transform:
            scale(1.72);

        opacity:
            0;
    }

    100% {
        transform:
            scale(1.72);

        opacity:
            0;
    }
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current
.livetrips-route-map-marker__pin {
    position:
        absolute;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker--status-current
.livetrips-route-map-marker__pin::after {
    content:
        "";

    position:
        absolute;

    inset:
        -8px;

    border:
        3px solid
        #f97316;

    border-radius:
        50%;

    pointer-events:
        none;

    animation:
        livetrips-map-current-ring-v31
        1.25s
        ease-out
        infinite;
}


/* no extra flashy styling for ordinary summary entries */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--origin
.livetrips-dashboard-route-list__place,

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--next
.livetrips-dashboard-route-list__place,

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--stop
.livetrips-dashboard-route-list__place,

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--return
.livetrips-dashboard-route-list__place {
    border:
        0 !important;

    background:
        transparent !important;

    box-shadow:
        none !important;

    color:
        #25384a !important;
}


@media (max-width: 700px) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__item {
        align-items:
            flex-start !important;
    }
}


@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__state--current::before,

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-route-map-marker--status-current
    .livetrips-route-map-marker__pin::after {
        animation:
            none !important;
    }
}

/* LIVETRIPS-R3-CLEAN-SUMMARY-V31-END */


/* LIVETRIPS-R3-POINT-DESCRIPTIONS-V32-BEGIN */


/* ======================================================
   SUMMARY — NAME + QUIET TWO-LINE DESCRIPTION
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__content {
    flex:
        1 1 auto;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    min-width:
        0;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__content
.livetrips-dashboard-route-list__place {
    flex:
        0 0 auto !important;

    width:
        auto !important;

    max-width:
        100% !important;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__description {
    display:
        -webkit-box;

    max-width:
        100%;

    margin-top:
        3px;

    overflow:
        hidden;

    color:
        #7a8792;

    font-size:
        0.67rem;

    font-weight:
        500;

    line-height:
        1.35;

    -webkit-box-orient:
        vertical;

    -webkit-line-clamp:
        2;

    line-clamp:
        2;
}


/*
 * State remains to the right.
 * Only current / principal destination exist after V31.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--current,

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--destination {
    align-self:
        center;
}


/* ======================================================
   MAP POPUP — TITLE + LIMITED DESCRIPTION
   ====================================================== */

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker__label,

.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-marker__pin {
    cursor:
        pointer;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-popup {
    width:
        min(280px, 72vw);

    max-width:
        280px;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-popup > strong {
    display:
        block;

    color:
        #203345;

    font-size:
        0.88rem;

    font-weight:
        850;

    line-height:
        1.3;

    overflow-wrap:
        anywhere;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-route-map-popup__description {
    display:
        -webkit-box;

    margin:
        0.45rem 0 0;

    overflow:
        hidden;

    color:
        #596875;

    font-size:
        0.76rem;

    font-weight:
        500;

    line-height:
        1.42;

    -webkit-box-orient:
        vertical;

    -webkit-line-clamp:
        4;

    line-clamp:
        4;
}


@media (max-width: 700px) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__description {
        font-size:
            0.65rem;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-route-map-popup {
        width:
            min(250px, 72vw);
    }
}

/* LIVETRIPS-R3-POINT-DESCRIPTIONS-V32-END */


/* LIVETRIPS-R3-SUMMARY-DESCRIPTION-BOX-V33-BEGIN */


/*
 * Keep the description visually separated from the row divider.
 * Very subtle frame — not a heavy card.
 */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__content {
    padding:
        1px 0 4px;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__description {
    width:
        100%;

    max-width:
        100%;

    box-sizing:
        border-box;

    margin-top:
        5px;

    margin-bottom:
        2px;

    padding:
        5px 7px;

    border:
        1px solid
        #e3eaf0;

    border-radius:
        6px;

    background:
        #fbfcfd;

    color:
        #6f7c87;

    box-shadow:
        none;

    font-size:
        0.67rem;

    line-height:
        1.38;
}


/*
 * Give rows containing description enough breathing room
 * before the separator line.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item {
    padding-bottom:
        10px !important;
}


/*
 * Do not turn current/destination descriptions into loud cards.
 * Their special status remains in title / status only.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--current
.livetrips-dashboard-route-list__description,

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--principal-destination
.livetrips-dashboard-route-list__description {
    border-color:
        #e3eaf0;

    background:
        #fbfcfd;

    color:
        #6f7c87;
}


/* LIVETRIPS-R3-SUMMARY-DESCRIPTION-BOX-V33-END */


/* LIVETRIPS-R3-FULL-SUMMARY-DESCRIPTION-V34-BEGIN */

/*
 * North-Cape style behaviour:
 * do not truncate the right-column description.
 * Let the thin framed description grow naturally.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__description {
    display:
        block !important;

    height:
        auto !important;

    max-height:
        none !important;

    overflow:
        visible !important;

    white-space:
        normal !important;

    -webkit-box-orient:
        initial !important;

    -webkit-line-clamp:
        unset !important;

    line-clamp:
        unset !important;

    text-overflow:
        clip !important;
}

/* LIVETRIPS-R3-FULL-SUMMARY-DESCRIPTION-V34-END */


/* LIVETRIPS-R3-DESCRIPTION-ALIGN-V35-BEGIN */

/*
 * Align description beneath the location title text,
 * not beneath the flag/timeline spine.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__description {
    position:
        relative;

    z-index:
        2;

    width:
        calc(100% - 26px) !important;

    max-width:
        calc(100% - 26px) !important;

    margin-inline-start:
        26px !important;

    margin-top:
        5px !important;

    margin-bottom:
        3px !important;
}


/*
 * The description background must visually cover any
 * timeline decoration behind it.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__description {
    background:
        #fbfcfd !important;

    border:
        1px solid
        #e3eaf0 !important;

    border-radius:
        6px !important;
}

/* LIVETRIPS-R3-DESCRIPTION-ALIGN-V35-END */


/* LIVETRIPS-R3-SUMMARY-HEADING-STATUS-V36-BEGIN */


/*
 * Title and the only two semantic states
 * ("Είμαστε εδώ" / "Κύριος προορισμός")
 * share one heading row above the description.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading {
    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        center;

    justify-content:
        flex-start;

    column-gap:
        10px;

    row-gap:
        4px;

    width:
        100%;

    min-width:
        0;
}


.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
.livetrips-dashboard-route-list__place {
    flex:
        0 1 auto !important;

    width:
        auto !important;

    max-width:
        100% !important;

    min-width:
        0;
}


/*
 * Status now belongs to the heading itself.
 * It must not occupy a fixed right-hand column.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
.livetrips-dashboard-route-list__state--current,

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
.livetrips-dashboard-route-list__state--destination {
    flex:
        0 0 auto !important;

    width:
        auto !important;

    max-width:
        none !important;

    margin:
        0 !important;

    align-self:
        center !important;

    white-space:
        nowrap;
}


/*
 * Current status stays immediately beside the title.
 * Preserve its orange pulsing dot.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
.livetrips-dashboard-route-list__state--current {
    color:
        #d95408 !important;
}


/*
 * Principal destination status stays beside the starred name.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
.livetrips-dashboard-route-list__state--destination {
    color:
        #9a6900 !important;
}


/*
 * Description remains below the heading and keeps
 * the V33/V34/V35 full-text thin framed presentation.
 */
.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
+
.livetrips-dashboard-route-list__description {
    margin-top:
        5px !important;
}


@media (max-width: 700px) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-route-list__heading {
        column-gap:
            7px;

        row-gap:
            3px;
    }
}

/* LIVETRIPS-R3-SUMMARY-HEADING-STATUS-V36-END */


/* LIVETRIPS-R3-FULLSCREEN-WHITE-TEXT-V37-BEGIN */

/*
 * Fullscreen CTA:
 * explicit white foreground for button, icon and label
 * in every interactive state.
 */

.livetrips-app
.livetrips-route-map-card__fullscreen,

.livetrips-app
.livetrips-route-map-card__fullscreen:hover,

.livetrips-app
.livetrips-route-map-card__fullscreen:focus,

.livetrips-app
.livetrips-route-map-card__fullscreen:focus-visible,

.livetrips-app
.livetrips-route-map-card__fullscreen:active,

.livetrips-app
.livetrips-route-map-card__fullscreen[aria-pressed="true"] {
    color:
        #ffffff !important;

    -webkit-text-fill-color:
        #ffffff !important;
}


.livetrips-app
.livetrips-route-map-card__fullscreen
.livetrips-route-map-card__fullscreen-icon,

.livetrips-app
.livetrips-route-map-card__fullscreen
.livetrips-route-map-card__fullscreen-label {
    color:
        #ffffff !important;

    -webkit-text-fill-color:
        #ffffff !important;

    opacity:
        1 !important;
}


/*
 * Do not allow theme/button descendant rules
 * to recolor fullscreen content on interaction.
 */
.livetrips-app
.livetrips-route-map-card__fullscreen:hover
.livetrips-route-map-card__fullscreen-icon,

.livetrips-app
.livetrips-route-map-card__fullscreen:hover
.livetrips-route-map-card__fullscreen-label,

.livetrips-app
.livetrips-route-map-card__fullscreen:focus-visible
.livetrips-route-map-card__fullscreen-icon,

.livetrips-app
.livetrips-route-map-card__fullscreen:focus-visible
.livetrips-route-map-card__fullscreen-label,

.livetrips-app
.livetrips-route-map-card__fullscreen:active
.livetrips-route-map-card__fullscreen-icon,

.livetrips-app
.livetrips-route-map-card__fullscreen:active
.livetrips-route-map-card__fullscreen-label,

.livetrips-app
.livetrips-route-map-card__fullscreen[aria-pressed="true"]
.livetrips-route-map-card__fullscreen-icon,

.livetrips-app
.livetrips-route-map-card__fullscreen[aria-pressed="true"]
.livetrips-route-map-card__fullscreen-label {
    color:
        #ffffff !important;

    -webkit-text-fill-color:
        #ffffff !important;

    opacity:
        1 !important;
}

/* LIVETRIPS-R3-FULLSCREEN-WHITE-TEXT-V37-END */


/* LIVETRIPS-0.11.40-COMPACT-STRUCTURE */

.livetrips-app
.livetrips-trip-section--summary
.livetrips-trip-section__body {
    padding: 22px 26px;
}

.livetrips-app
.livetrips-structure-compact__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.livetrips-app
.livetrips-structure-compact__heading
.livetrips-trip-section__title {
    margin: 0;
}

.livetrips-app
.livetrips-structure-compact__mode {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid #d7e4ee;
    border-radius: 999px;
    background: #f3f8fb;
    color: #36566e;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.livetrips-app
.livetrips-structure-compact__flow {
    display: grid;
    align-items: stretch;
    gap: 10px;
}

.livetrips-app
.livetrips-structure-compact__flow--round-trip {
    grid-template-columns:
        minmax(0, 1fr)
        34px
        minmax(0, 1fr)
        34px
        minmax(0, 1fr);
}

.livetrips-app
.livetrips-structure-compact__flow--one-way {
    grid-template-columns:
        minmax(0, 1fr)
        34px
        minmax(0, 1fr);
}

.livetrips-app
.livetrips-structure-compact__node {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 68px;
    padding: 11px 14px;
    border: 1px solid #dce6ee;
    border-radius: 12px;
    background: #f9fbfc;
}

.livetrips-app
.livetrips-structure-compact__node--destination {
    border-color: #f0c895;
    background: #fffaf4;
}

.livetrips-app
.livetrips-structure-compact__icon {
    display: inline-flex;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3f8;
    color: #1876aa;
    font-size: 13px;
    line-height: 1;
}

.livetrips-app
.livetrips-structure-compact__node--destination
.livetrips-structure-compact__icon {
    background: #fff0dc;
    color: #dd791c;
}

.livetrips-app
.livetrips-structure-compact__node--return
.livetrips-structure-compact__icon {
    background: #edf3f7;
    color: #536c7d;
}

.livetrips-app
.livetrips-structure-compact__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.livetrips-app
.livetrips-structure-compact__label {
    color: #7a8999;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.livetrips-app
.livetrips-structure-compact__value {
    overflow: hidden;
    color: #15283b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.livetrips-app
.livetrips-structure-compact__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aabb8;
    font-size: 19px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .livetrips-app
    .livetrips-structure-compact__flow--round-trip,
    .livetrips-app
    .livetrips-structure-compact__flow--one-way {
        grid-template-columns: 1fr;
    }

    .livetrips-app
    .livetrips-structure-compact__arrow {
        height: 20px;
        transform: rotate(90deg);
    }

    .livetrips-app
    .livetrips-structure-compact__value {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .livetrips-app
    .livetrips-trip-section--summary
    .livetrips-trip-section__body {
        padding: 18px;
    }

    .livetrips-app
    .livetrips-structure-compact__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 13px;
    }

    .livetrips-app
    .livetrips-structure-compact__node {
        min-height: 62px;
        padding: 10px 12px;
    }
}


/* LIVETRIPS-0.11.42-PASSED-SUMMARY-STATE */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--passed {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #eaf8ef;
    color: #25834a;
    font-size: 0.63rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__state--passed::before {
    content: "✓";
    margin-right: 4px;
    font-size: 0.62rem;
    font-weight: 900;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--passed
.livetrips-dashboard-route-list__place-title {
    color: #536b5d;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__item--passed
.livetrips-dashboard-route-list__description {
    opacity: 0.88;
}


/* LIVETRIPS-0.11.44-PASSED-HEADING-LAYOUT */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-route-list__heading
.livetrips-dashboard-route-list__state--passed {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: center !important;
    white-space: nowrap !important;
}

/* LIVETRIPS-0.11.46-HERO-TRIP-STATUS */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status {
    gap: 7px;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f3c64d;
    box-shadow: 0 0 0 3px rgba(243,198,77,.14);
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status.livetrips-status-badge--active::before {
    background: #47d987;
    box-shadow: 0 0 0 0 rgba(71,217,135,.42);
    animation: livetrips-dashboard-status-live-pulse 1.8s ease-out infinite;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status.livetrips-status-badge--completed::before {
    background: #d4dde5;
    box-shadow: 0 0 0 3px rgba(212,221,229,.12);
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status.livetrips-status-badge--archived::before {
    background: #aab6c0;
    box-shadow: 0 0 0 3px rgba(170,182,192,.12);
}

@keyframes livetrips-dashboard-status-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(71,217,135,.42);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(71,217,135,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(71,217,135,0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-badge--status.livetrips-status-badge--active::before {
        animation: none;
    }
}



/* LIVETRIPS-0.11.47-HERO-STATUS-EMPHASIS */

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status {
    min-height: 38px;
    padding: 8px 16px;
    gap: 8px;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .01em;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status.livetrips-status-badge--active {
    color: #ffffff;
    background: rgba(22, 153, 78, .96);
    border-color: rgba(143, 255, 181, .82);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, .20),
        0 0 0 1px rgba(255, 255, 255, .10) inset;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-dashboard-badge--status.livetrips-status-badge--active::before {
    width: 10px;
    height: 10px;
    background: #c2ffd6;
    box-shadow: 0 0 0 0 rgba(194, 255, 214, .58);
    animation:
        livetrips-dashboard-status-live-pulse-047
        1.7s ease-out infinite;
}

@keyframes livetrips-dashboard-status-live-pulse-047 {
    0% {
        box-shadow:
            0 0 0 0 rgba(194, 255, 214, .58);
    }

    70% {
        box-shadow:
            0 0 0 9px rgba(194, 255, 214, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(194, 255, 214, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-dashboard-badge--status.livetrips-status-badge--active::before {
        animation: none;
    }
}


/* LIVETRIPS-0.11.49-OWNER-VEHICLE-PROFILE */

.livetrips-app.livetrips-app--trip-detail
.livetrips-owner-panel--vehicle {
    display: block;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form {
    margin-top: 16px;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field {
    min-width: 0;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field--wide {
    grid-column: 1 / -1;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field label {
    display: block;
    margin: 0 0 6px;
    font-weight: 750;
    color: #18354a;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field input,
.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field select {
    display: block;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    padding: 9px 11px;
    border: 1px solid rgba(24, 53, 74, .22);
    border-radius: 10px;
    background: #fff;
    color: #173247;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field input:focus,
.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form-field select:focus {
    outline: 2px solid rgba(27, 121, 188, .18);
    outline-offset: 1px;
    border-color: rgba(27, 121, 188, .58);
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form__submit {
    margin-top: 16px;
    color: #fff;
}

@media (max-width: 720px) {
    .livetrips-app.livetrips-app--trip-detail
    .livetrips-vehicle-form-grid {
        grid-template-columns: 1fr;
    }

    .livetrips-app.livetrips-app--trip-detail
    .livetrips-vehicle-form-field--wide {
        grid-column: auto;
    }
}

/* LIVETRIPS-0.11.51-PRIMARY-ACTION-WHITE-TEXT
   White foreground only for dark-blue primary owner actions.
   Secondary, outline and destructive controls remain unchanged. */

.livetrips-app.livetrips-app--trip-detail
form:has(input[name="task"][value="trip.update"])
> button[type="submit"],
.livetrips-app.livetrips-app--trip-detail
form:has(input[name="task"][value="point.create"])
> button[type="submit"],
.livetrips-app.livetrips-app--trip-detail
.livetrips-location-control
.livetrips-button,
.livetrips-app.livetrips-app--trip-detail
.livetrips-vehicle-form__submit {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* LIVETRIPS-0.11.52-VEHICLE-VISUAL-UI
   Vehicle is the first KPI on the left and the owner chooses
   vehicle type through an accessible visual radio-card picker. */

.livetrips-app
.livetrips-dashboard-kpi--vehicle {
    grid-template-columns:
        122px
        minmax(0,1fr);
    column-gap: 14px;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-image {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 116px;
    height: 76px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 2px;
    border:
        1px solid
        rgba(255,255,255,.24);
    border-radius: 14px;
    background:
        rgba(255,255,255,.96);
    box-shadow:
        0 5px 16px
        rgba(0,0,0,.13);
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-top: 0;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-value {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.18;
}

.livetrips-app
.livetrips-vehicle-type-picker {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.livetrips-app
.livetrips-vehicle-type-picker > legend {
    margin: 0 0 9px;
    padding: 0;
    color: #18354a;
    font-size: 13px;
    font-weight: 800;
}

.livetrips-app
.livetrips-vehicle-type-picker__grid {
    display: grid;
    grid-template-columns:
        repeat(4,minmax(0,1fr));
    gap: 12px;
}

.livetrips-app
.livetrips-vehicle-type-option {
    position: relative;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.livetrips-app
.livetrips-vehicle-type-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.livetrips-app
.livetrips-vehicle-type-option__card {
    position: relative;
    min-height: 194px;
    display: grid;
    grid-template-rows:
        142px
        auto;
    align-items: center;
    justify-items: center;
    gap: 8px;
    padding: 8px 10px 12px;
    border:
        2px solid
        #d8e4ec;
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 4px 14px
        rgba(20,58,83,.06);
    transition:
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}

.livetrips-app
.livetrips-vehicle-type-option:hover
.livetrips-vehicle-type-option__card {
    border-color: #9fc9e5;
    background: #f8fcff;
    transform: translateY(-1px);
}

.livetrips-app
.livetrips-vehicle-type-option > input:focus-visible
+ .livetrips-vehicle-type-option__card {
    outline:
        3px solid
        rgba(35,136,204,.22);
    outline-offset: 2px;
}

.livetrips-app
.livetrips-vehicle-type-option > input:checked
+ .livetrips-vehicle-type-option__card {
    border-color: #2388cc;
    background: #f1f9fe;
    box-shadow:
        0 0 0 3px
        rgba(35,136,204,.11),
        0 7px 18px
        rgba(20,121,188,.10);
}

.livetrips-app
.livetrips-vehicle-type-option__image {
    width: 100%;
    height: 142px;
    display: grid;
    place-items: center;
}

.livetrips-app
.livetrips-vehicle-type-option__image img {
    display: block;
    width: min(100%,300px);
    height: 136px;
    object-fit: contain;
    object-position: center;
}

.livetrips-app
.livetrips-vehicle-type-option__label {
    color: #173247;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.livetrips-app
.livetrips-vehicle-type-option__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: transparent;
    background: transparent;
    font-size: 13px;
    font-weight: 900;
}

.livetrips-app
.livetrips-vehicle-type-option > input:checked
+ .livetrips-vehicle-type-option__card
.livetrips-vehicle-type-option__check {
    color: #fff;
    background: #2388cc;
}

@media (max-width: 1100px) {
    .livetrips-app
    .livetrips-vehicle-type-picker__grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 760px) {
    .livetrips-app
    .livetrips-vehicle-type-picker__grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 460px) {
    .livetrips-app
    .livetrips-vehicle-type-picker__grid {
        grid-template-columns: 1fr;
    }
}
/* LIVETRIPS-0.11.59-HERO-KPI-POLISH */
.livetrips-app
.livetrips-dashboard-kpi--vehicle {
    grid-template-columns:
        104px
        minmax(0,1fr);
    column-gap: 12px;
    padding-left: 16px;
    padding-right: 20px;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-image {
    justify-self: start;
    width: 100px;
    height: 68px;
    padding: 2px;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-label,
.livetrips-app
.livetrips-dashboard-kpi__vehicle-value {
    justify-self: start;
    text-align: left;
}

.livetrips-app
.livetrips-dashboard-kpi__vehicle-value {
    margin-top: 2px;
}

.livetrips-app
.livetrips-dashboard-kpi__icon {
    font-size: 18px;
}

.livetrips-app
.livetrips-dashboard-kpi__icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.livetrips-app
.livetrips-dashboard-kpi__icon--stops svg circle,
.livetrips-app
.livetrips-dashboard-kpi__icon--distance svg circle,
.livetrips-app
.livetrips-dashboard-kpi__icon--time svg circle {
    fill: none;
}

@media (max-width: 991.98px) {
    .livetrips-app
    .livetrips-dashboard-kpi--vehicle {
        padding-left: 14px;
        padding-right: 16px;
    }

    .livetrips-app
    .livetrips-dashboard-kpi__vehicle-image {
        width: 92px;
        height: 64px;
    }
}


/* LIVETRIPS-0.11.60-POINT-GALLERY */

.livetrips-app
.livetrips-journey-stop__links {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
}

.livetrips-app
.livetrips-journey-stop__links a,
.livetrips-app
.livetrips-journey-stop__links button {
    min-height:36px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 11px;
    border:1px solid #d7e3eb;
    border-radius:8px;
    background:#fff;
    color:#176fa8;
    font:inherit;
    font-size:12px;
    font-weight:800;
    line-height:1.2;
    text-decoration:none;
    cursor:pointer;
}

.livetrips-app
.livetrips-journey-stop__links a:hover,
.livetrips-app
.livetrips-journey-stop__links button:hover {
    border-color:#aacdde;
    background:#f5fbff;
}

.livetrips-app
.livetrips-journey-stop__links svg {
    width:18px;
    height:18px;
    flex:0 0 18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.livetrips-app
.livetrips-journey-stop__media img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.livetrips-app
.livetrips-point-links-edit {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin:14px 0;
}

.livetrips-app
.livetrips-point-links-edit label,
.livetrips-app
.livetrips-gallery-upload label {
    display:grid;
    gap:6px;
    font-size:12px;
    font-weight:800;
}

.livetrips-app
.livetrips-point-links-edit input,
.livetrips-app
.livetrips-gallery-upload input {
    box-sizing:border-box;
    width:100%;
    min-width:0;
    min-height:40px;
    padding:8px 10px;
    border:1px solid #cedde7;
    border-radius:8px;
    background:#fff;
    color:#223847;
}

.livetrips-app
.livetrips-gallery-create-help {
    margin:10px 0 14px;
    padding:10px 12px;
    border-radius:8px;
    background:#f2f7fa;
    color:#667b88;
    font-size:11px;
}

.livetrips-app
.livetrips-gallery-manager {
    margin:14px 0;
    padding:15px;
    border:1px solid #dce8ef;
    border-radius:10px;
    background:#f8fbfd;
}

.livetrips-app
.livetrips-gallery-manager__heading {
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:flex-start;
    margin-bottom:12px;
}

.livetrips-app
.livetrips-gallery-manager__heading strong,
.livetrips-app
.livetrips-gallery-manager__heading small {
    display:block;
}

.livetrips-app
.livetrips-gallery-manager__heading small {
    margin-top:3px;
    color:#728590;
    font-size:11px;
}

.livetrips-app
.livetrips-gallery-manager__count {
    min-width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:999px;
    background:#e1f1fb;
    color:#1475b5;
    font-size:12px;
    font-weight:900;
}

.livetrips-app
.livetrips-gallery-upload {
    display:grid;
    gap:10px;
}

.livetrips-app
.livetrips-gallery-upload__meta {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}

.livetrips-app
.livetrips-gallery-upload__submit {
    justify-self:start;
    min-height:38px;
    padding:8px 14px;
    border:0;
    border-radius:8px;
    background:#167bb8;
    color:#fff;
    font-weight:900;
    cursor:pointer;
}

.livetrips-app
.livetrips-gallery-manager__grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
    margin-top:14px;
}

.livetrips-app
.livetrips-gallery-manager__item {
    position:relative;
    overflow:hidden;
    aspect-ratio:4/3;
    border:1px solid #dbe7ee;
    border-radius:9px;
    background:#eef4f7;
}

.livetrips-app
.livetrips-gallery-manager__item > img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.livetrips-app
.livetrips-gallery-manager__item-actions {
    position:absolute;
    left:5px;
    right:5px;
    bottom:5px;
    display:flex;
    justify-content:flex-end;
    gap:4px;
}

.livetrips-app
.livetrips-gallery-manager__item-actions form {
    margin:0;
}

.livetrips-app
.livetrips-gallery-manager__item-actions button {
    width:31px;
    height:31px;
    display:grid;
    place-items:center;
    padding:0;
    border:1px solid rgba(255,255,255,.8);
    border-radius:7px;
    background:rgba(16,39,54,.84);
    color:#fff;
    font-size:16px;
    font-weight:900;
    line-height:1;
    cursor:pointer;
}

.livetrips-app
.livetrips-gallery-manager__item-actions
.livetrips-gallery-manager__delete {
    background:rgba(174,49,49,.92);
}

.livetrips-gallery-lightbox {
    position:fixed;
    z-index:100000;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(7,18,26,.92);
}

.livetrips-gallery-lightbox.is-open {
    display:flex;
}

.livetrips-gallery-lightbox__figure {
    position:relative;
    width:min(1180px,94vw);
    max-height:92vh;
    margin:0;
    display:grid;
    gap:10px;
    justify-items:center;
}

.livetrips-gallery-lightbox__image {
    max-width:100%;
    max-height:80vh;
    display:block;
    border-radius:10px;
}

.livetrips-gallery-lightbox__caption {
    min-height:20px;
    color:#fff;
    text-align:center;
    font-size:13px;
    line-height:1.5;
}

.livetrips-gallery-lightbox
button {
    position:absolute;
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    padding:0;
    border:1px solid rgba(255,255,255,.35);
    border-radius:999px;
    background:rgba(0,0,0,.65);
    color:#fff;
    font-size:25px;
    cursor:pointer;
}

.livetrips-gallery-lightbox__close {
    top:-12px;
    right:-12px;
}

.livetrips-gallery-lightbox__prev {
    top:50%;
    left:-58px;
    transform:translateY(-50%);
}

.livetrips-gallery-lightbox__next {
    top:50%;
    right:-58px;
    transform:translateY(-50%);
}

@media (max-width:760px) {
    .livetrips-app
    .livetrips-point-links-edit,
    .livetrips-app
    .livetrips-gallery-upload__meta {
        grid-template-columns:1fr;
    }

    .livetrips-app
    .livetrips-gallery-manager__grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .livetrips-gallery-lightbox__prev {
        left:4px;
    }

    .livetrips-gallery-lightbox__next {
        right:4px;
    }

    .livetrips-gallery-lightbox__close {
        top:4px;
        right:4px;
    }
}

/* LIVETRIPS-0.11.66-COMPACT-RIGHT-RAIL-BEGIN */

/*
 * Desktop:
 * Left side stays in normal document flow.
 * Right rail is removed from flow, so its photo cannot
 * create tall grid rows / blank space on the left.
 */
@media (min-width: 701px) {

    .livetrips-app
    .livetrips-point-card {
        display: block;

        position: relative;

        min-width: 0;

        padding:
            20px
            330px
            20px
            20px;
    }

    .livetrips-app
    .livetrips-point-card:has(
        .livetrips-journey-stop__media img
    ) {
        min-height: 384px;
    }

    .livetrips-app
    .livetrips-journey-next {
        position: absolute !important;

        top: 18px;
        right: 18px;
        bottom: auto;

        width: 292px !important;
        height: 170px;

        box-sizing: border-box;

        margin: 0 !important;
    }

    .livetrips-app
    .livetrips-journey-stop__media:has(img) {
        position: absolute !important;

        top: 200px;
        right: 18px;

        width: 292px;
        height: auto;

        aspect-ratio: 16 / 9;

        margin: 0;

        overflow: hidden;
    }

    .livetrips-app
    .livetrips-journey-stop__media img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center center;
    }
}


/*
 * Medium desktop/tablet.
 */
@media (min-width: 701px) and (max-width: 1180px) {

    .livetrips-app
    .livetrips-point-card {
        padding-right:
            307px;
    }

    .livetrips-app
    .livetrips-point-card:has(
        .livetrips-journey-stop__media img
    ) {
        min-height:
            382px;
    }

    .livetrips-app
    .livetrips-journey-next {
        width: 270px !important;
        height: 180px;
    }

    .livetrips-app
    .livetrips-journey-stop__media:has(img) {
        top: 210px;

        width: 270px;
    }
}


/*
 * Mobile:
 * all content returns to normal vertical flow.
 */
@media (max-width: 700px) {

    .livetrips-app
    .livetrips-point-card {
        display: block;

        min-height: 0;

        padding:
            16px;
    }

    .livetrips-app
    .livetrips-journey-next {
        position: relative !important;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100% !important;
        height: auto;

        margin-top:
            14px !important;
    }

    .livetrips-app
    .livetrips-journey-stop__media:has(img) {
        position: relative !important;

        top: auto;
        right: auto;

        width: 100%;
        height: 230px;

        aspect-ratio: auto;

        margin:
            0
            0
            12px;
    }

    .livetrips-app
    .livetrips-journey-stop__media img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }
}

/* LIVETRIPS-0.11.66-COMPACT-RIGHT-RAIL-END */


/* LIVETRIPS-0.11.68-CLICKABLE-STOP-PHOTO */
.livetrips-app
.livetrips-journey-stop__gallery-trigger {
    appearance: none;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    border-radius: inherit;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.livetrips-app
.livetrips-journey-stop__gallery-trigger img {
    width: 100%;
    height: 100%;
    display: block;
}

.livetrips-app
.livetrips-journey-stop__gallery-trigger:focus-visible {
    outline: 3px solid var(--livetrips-blue);
    outline-offset: -3px;
}


/* LIVETRIPS-0.11.69-VISIBILITY-TOGGLE */

.livetrips-app
.livetrips-dashboard-visibility-form {
    display: inline-flex;
    margin: 0;
}

.livetrips-app
.livetrips-dashboard-visibility-toggle,
.livetrips-app
.livetrips-dashboard-visibility-static {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.livetrips-app
.livetrips-dashboard-visibility-toggle {
    appearance: none;
    cursor: pointer;
    border: 1px solid rgba(25,57,78,.16);
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}

.livetrips-app
.livetrips-dashboard-visibility-toggle--private,
.livetrips-app
.livetrips-dashboard-visibility-static--private {
    background: #f3f6f8;
    color: #314653;
}

.livetrips-app
.livetrips-dashboard-visibility-toggle--public,
.livetrips-app
.livetrips-dashboard-visibility-static--public {
    background: #e9f7ef;
    color: #17683d;
}

.livetrips-app
.livetrips-dashboard-visibility-static--unlisted {
    background: #fff7e6;
    color: #75520b;
}

.livetrips-app
.livetrips-dashboard-visibility-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25,57,78,.10);
}

.livetrips-app
.livetrips-dashboard-visibility-toggle:focus-visible {
    outline: 3px solid rgba(35,136,204,.35);
    outline-offset: 2px;
}

.livetrips-app
.livetrips-dashboard-visibility-toggle__icon {
    line-height: 1;
}


/* LIVETRIPS-0.11.70-LOCATION-PICKER-BLUE-BUTTON
   Dynamically-created "Επιλογή στον χάρτη" control only. */

.livetrips-app.livetrips-app--trip-detail
.livetrips-location-control
.livetrips-button {
    background: #2388cc !important;
    border-color: #2388cc !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-location-control
.livetrips-button:hover,
.livetrips-app.livetrips-app--trip-detail
.livetrips-location-control
.livetrips-button:focus,
.livetrips-app.livetrips-app--trip-detail
.livetrips-location-control
.livetrips-button:active {
    background: #1769aa !important;
    border-color: #1769aa !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.livetrips-app.livetrips-app--trip-detail
.livetrips-location-control
.livetrips-button:focus-visible {
    outline: 3px solid rgba(35,136,204,.28);
    outline-offset: 2px;
}


/* LIVETRIPS-0.11.71-STOP-EDIT-CONTROL */

.livetrips-app
.livetrips-point-card
.livetrips-point-edit {
    margin-top: 12px;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary {
    box-sizing: border-box;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid #c7dce9;
    border-radius: 9px;
    background: #f4f9fc;
    color: #24516f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    cursor: pointer;
    list-style: none;
    transition:
        background .15s ease,
        border-color .15s ease,
        color .15s ease,
        box-shadow .15s ease;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary::-webkit-details-marker {
    display: none;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary::before {
    content: "✎";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #e3f1fa;
    color: #1769aa;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary::after {
    content: "⌄";
    flex: 0 0 auto;
    margin-left: auto;
    color: #1769aa;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    transition: transform .15s ease;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary:hover {
    background: #eaf5fc;
    border-color: #9fc9e2;
    color: #174766;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary:focus-visible {
    outline: 3px solid rgba(35,136,204,.24);
    outline-offset: 2px;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit[open]
> .livetrips-journey-stop__edit-summary {
    background: #e9f5fc;
    border-color: #2388cc;
    color: #1769aa;
    box-shadow: 0 2px 8px rgba(35,136,204,.08);
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit[open]
> .livetrips-journey-stop__edit-summary::after {
    transform: rotate(180deg);
}


/* LIVETRIPS-0.11.72-GREEN-STOP-EDIT-CONTROL */

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary {
    background: #edf8f1;
    border-color: #9ed1b1;
    color: #17683d;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary::before {
    background: #dcefe4;
    color: #17683d;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary::after {
    color: #17683d;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary:hover {
    background: #e2f4e9;
    border-color: #67b586;
    color: #10522f;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit
> .livetrips-journey-stop__edit-summary:focus-visible {
    outline: 3px solid rgba(46,157,98,.24);
    outline-offset: 2px;
}

.livetrips-app
.livetrips-point-card
.livetrips-point-edit[open]
> .livetrips-journey-stop__edit-summary {
    background: #daf1e3;
    border-color: #2e9d62;
    color: #105c35;
    box-shadow: 0 2px 8px rgba(46,157,98,.10);
}


/* LIVETRIPS-0.11.73-PUBLIC-TRIPS-CATALOG */

.livetrips-app--public-catalog {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px 48px;
}

.livetrips-public-catalog__hero {
    max-width: 760px;
    margin-bottom: 24px;
}

.livetrips-public-catalog__eyebrow {
    margin-bottom: 7px;
    color: #2388cc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.livetrips-public-catalog__hero h1 {
    margin: 0 0 9px;
    color: #183b53;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
}

.livetrips-public-catalog__hero p {
    margin: 0;
    color: #5b7180;
    font-size: 15px;
    line-height: 1.6;
}

.livetrips-public-catalog__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.livetrips-public-catalog__filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid #d3e0e8;
    border-radius: 999px;
    background: #fff;
    color: #31576e;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.livetrips-public-catalog__filter strong {
    min-width: 22px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #edf3f6;
    color: #527083;
    font-size: 11px;
    text-align: center;
}

.livetrips-public-catalog__filter:hover,
.livetrips-public-catalog__filter:focus-visible {
    border-color: #8fc4e2;
    background: #f4fafe;
    color: #1769aa;
}

.livetrips-public-catalog__filter.is-active {
    border-color: #2388cc;
    background: #2388cc;
    color: #fff;
}

.livetrips-public-catalog__filter.is-active strong {
    background: rgba(255,255,255,.18);
    color: #fff;
}

.livetrips-public-catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.livetrips-public-trip-card {
    overflow: hidden;
    border: 1px solid #dce6ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23,65,91,.07);
    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease;
}

.livetrips-public-trip-card:hover {
    transform: translateY(-2px);
    border-color: #bfd6e3;
    box-shadow: 0 12px 30px rgba(23,65,91,.11);
}

.livetrips-public-trip-card__cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #dff1fb 0%,
            #b9dff2 46%,
            #dff4e8 100%
        );
    text-decoration: none !important;
}

.livetrips-public-trip-card__cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.livetrips-public-trip-card__cover-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(32,91,123,.56);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
}

.livetrips-public-trip-card__status {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

.livetrips-public-trip-card__status--live {
    background: #d83a3a;
}

.livetrips-public-trip-card__status--completed {
    background: #2e9d62;
}

.livetrips-public-trip-card__body {
    display: flex;
    flex-direction: column;
    min-height: 255px;
    padding: 17px;
}

.livetrips-public-trip-card__owner {
    margin-bottom: 5px;
    color: #748a98;
    font-size: 12px;
    font-weight: 700;
}

.livetrips-public-trip-card h2 {
    margin: 0 0 9px;
    font-size: 19px;
    line-height: 1.25;
}

.livetrips-public-trip-card h2 a {
    color: #183b53;
    text-decoration: none;
}

.livetrips-public-trip-card h2 a:hover,
.livetrips-public-trip-card h2 a:focus-visible {
    color: #1769aa;
}

.livetrips-public-trip-card__description {
    margin: 0 0 14px;
    color: #607786;
    font-size: 13px;
    line-height: 1.55;
}

.livetrips-public-trip-card__progress {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
}

.livetrips-public-trip-card__progress > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    align-items: baseline;
}

.livetrips-public-trip-card__progress dt {
    color: #8295a1;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.livetrips-public-trip-card__progress dd {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #274d64;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.livetrips-public-trip-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: auto;
    padding: 8px 13px;
    border-radius: 8px;
    background: #2388cc;
    color: #fff !important;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
}

.livetrips-public-trip-card__cta:hover,
.livetrips-public-trip-card__cta:focus-visible {
    background: #1769aa;
    color: #fff !important;
}

.livetrips-public-catalog__empty {
    padding: 36px 22px;
    border: 1px dashed #cbdbe4;
    border-radius: 12px;
    background: #f8fbfc;
    color: #617886;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 960px) {
    .livetrips-public-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .livetrips-app--public-catalog {
        padding-right: 12px;
        padding-left: 12px;
    }

    .livetrips-public-catalog__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .livetrips-public-catalog__filters {
        gap: 6px;
    }

    .livetrips-public-catalog__filter {
        flex: 1 1 auto;
        justify-content: center;
    }
}


/* LIVETRIPS-0.11.76-PUBLIC-TRIPS-HERO */

.livetrips-app--public-catalog {
    max-width: 1320px;
    padding: 24px 20px 56px;
}

.livetrips-public-catalog {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.livetrips-public-catalog__hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    max-width: none;
    margin: 0;
    padding: 48px 52px;
    border-radius: 28px;
    background:
        linear-gradient(
            90deg,
            rgba(10, 27, 39, .76) 0%,
            rgba(10, 27, 39, .46) 36%,
            rgba(10, 27, 39, .16) 68%,
            rgba(10, 27, 39, .08) 100%
        ),
        url("../images/public-trips/member-trips-hero--1916x800.webp") center center / cover no-repeat;
    box-shadow: 0 20px 48px rgba(16, 43, 61, .16);
    isolation: isolate;
}

.livetrips-public-catalog__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05) 0%,
            rgba(255,255,255,0) 24%,
            rgba(0,0,0,.12) 100%
        );
    pointer-events: none;
    z-index: 0;
}

.livetrips-public-catalog__hero > * {
    position: relative;
    z-index: 1;
}

.livetrips-public-catalog__eyebrow {
    margin-bottom: 10px;
    color: #d8eef9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.livetrips-public-catalog__hero h1 {
    max-width: 560px;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.04;
    text-shadow: 0 2px 12px rgba(0,0,0,.22);
}

.livetrips-public-catalog__hero p {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.94);
    font-size: 16px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.livetrips-public-catalog__filters {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -36px 0 2px 24px;
    padding: 12px;
    border: 1px solid rgba(220,230,236,.96);
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 36px rgba(20,52,73,.10);
}

.livetrips-public-catalog__filter {
    min-height: 42px;
    padding: 9px 14px;
    border-color: #d5e3ea;
    border-radius: 999px;
    color: #35586e;
    font-size: 13px;
    font-weight: 800;
}

.livetrips-public-catalog__filter strong {
    min-width: 24px;
    padding: 3px 7px;
    background: #eef4f7;
    color: #5c798b;
    font-size: 11px;
}

.livetrips-public-catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.livetrips-public-trip-card {
    border: 1px solid #d8e4ea;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(24,55,74,.08);
}

.livetrips-public-trip-card:hover {
    transform: translateY(-4px);
    border-color: #bdd4e0;
    box-shadow: 0 18px 36px rgba(24,55,74,.13);
}

.livetrips-public-trip-card__cover {
    aspect-ratio: 16 / 10;
}

.livetrips-public-trip-card__status {
    top: 14px;
    left: 14px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .05em;
}

.livetrips-public-trip-card__body {
    min-height: 270px;
    padding: 18px 18px 19px;
}

.livetrips-public-trip-card__owner {
    margin-bottom: 7px;
    color: #7a8f9d;
    font-size: 12px;
    font-weight: 800;
}

.livetrips-public-trip-card h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.22;
}

.livetrips-public-trip-card__description {
    margin: 0 0 15px;
    color: #607786;
    font-size: 13px;
    line-height: 1.62;
}

.livetrips-public-trip-card__progress {
    gap: 10px;
    margin: 0 0 18px;
}

.livetrips-public-trip-card__progress > div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
}

.livetrips-public-trip-card__cta {
    min-height: 42px;
    padding: 9px 15px;
    border-radius: 10px;
    background: #2388cc;
    font-size: 13px;
    font-weight: 900;
}

.livetrips-public-trip-card__cta:hover,
.livetrips-public-trip-card__cta:focus-visible {
    background: #1769aa;
}

@media (max-width: 960px) {

    .livetrips-app--public-catalog {
        padding-right: 16px;
        padding-left: 16px;
    }

    .livetrips-public-catalog__hero {
        min-height: 320px;
        padding: 38px 30px;
    }

    .livetrips-public-catalog__filters {
        margin: -24px 0 0 0;
        align-self: stretch;
    }

    .livetrips-public-catalog__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {

    .livetrips-app--public-catalog {
        padding: 14px 12px 44px;
    }

    .livetrips-public-catalog {
        gap: 16px;
    }

    .livetrips-public-catalog__hero {
        min-height: 285px;
        padding: 28px 20px;
        border-radius: 22px;
        background-position: 68% center;
    }

    .livetrips-public-catalog__eyebrow {
        margin-bottom: 8px;
        font-size: 11px;
        letter-spacing: .14em;
    }

    .livetrips-public-catalog__hero h1 {
        margin-bottom: 10px;
        font-size: 32px;
    }

    .livetrips-public-catalog__hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    .livetrips-public-catalog__filters {
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
    }

    .livetrips-public-catalog__filter {
        flex: 1 1 auto;
        justify-content: center;
    }

    .livetrips-public-catalog__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
}


/* LIVETRIPS-0.11.77-ARTICLES-STYLE */

/*
 * Public Member Trips.
 *
 * Visual language follows the existing MyCamper Travel Articles
 * design system:
 *
 * - full-bleed editorial hero
 * - white page background
 * - topic-style status filters
 * - compact two-column travel cards
 *
 * No routing, authorization or visibility behavior is changed.
 */

/* ==========================================================
   WHITE PAGE — REMOVE THE BLUE/GREY COMPONENT BACKGROUND
   ========================================================== */

body.com-livetrips.view-publictrips,
body.com-livetrips.view-publictrips #sp-main-body,
body.com-livetrips.view-publictrips #sp-main-body > .container,
body.com-livetrips.view-publictrips #sp-main-body .container-inner,
body.com-livetrips.view-publictrips #sp-component {
    background: #ffffff !important;
}

.livetrips-app--public-catalog {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    padding:
        0
        0
        58px !important;

    border-radius: 0 !important;

    background: #ffffff !important;

    box-shadow: none !important;
}

.livetrips-public-catalog {
    display: block !important;

    width: 100%;

    background: #ffffff;
}


/* ==========================================================
   HERO — FULL BLEED LIKE TRAVEL ARTICLES
   ========================================================== */

.livetrips-public-catalog__hero {
    position: relative;

    left: 50%;

    width: 100vw;

    min-height: 430px;

    margin:
        0
        -50vw
        0
        -50vw;

    padding:
        52px
        max(
            4.8vw,
            calc((100vw - 1500px) / 2)
        );

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    overflow: hidden;

    border-radius: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(3,28,47,.78) 0%,
            rgba(3,28,47,.56) 30%,
            rgba(3,28,47,.18) 58%,
            rgba(3,28,47,0) 78%
        ),
        url("../images/public-trips/member-trips-hero--1916x800.webp")
        center center / cover no-repeat;

    box-shadow: none !important;

    isolation: isolate;
}

.livetrips-public-catalog__hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3,28,47,.08) 0%,
            rgba(3,28,47,.02) 62%,
            rgba(3,28,47,.14) 100%
        );
}

.livetrips-public-catalog__hero > * {
    position: relative;

    z-index: 2;
}

.livetrips-public-catalog__eyebrow {
    margin:
        0
        0
        7px;

    color: #ffffff;

    font-size:
        clamp(
            17px,
            1.35vw,
            23px
        );

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 0;

    text-transform: none;

    text-shadow:
        0 3px 18px
        rgba(0,0,0,.34);
}

.livetrips-public-catalog__hero h1 {
    max-width: 680px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            4vw,
            72px
        );

    font-weight: 900;

    line-height: .98;

    letter-spacing: -.035em;

    text-shadow:
        0 3px 18px
        rgba(0,0,0,.34);
}

.livetrips-public-catalog__hero p {
    max-width: 610px;

    margin:
        15px
        0
        0;

    color:
        rgba(255,255,255,.95);

    font-size:
        clamp(
            16px,
            1.2vw,
            21px
        );

    font-weight: 600;

    line-height: 1.38;

    text-shadow:
        0 3px 18px
        rgba(0,0,0,.28);
}


/* ==========================================================
   FILTERS — SAME RHYTHM AS ARTICLES TOPICS
   ========================================================== */

.livetrips-public-catalog__filters {
    position: relative !important;

    z-index: 4;

    width:
        min(
            1500px,
            calc(100% - 48px)
        );

    margin:
        15px
        auto
        22px !important;

    padding: 0 !important;

    display: grid !important;

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

    gap: 11px;

    align-self: auto !important;

    border: 0 !important;

    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
}

.livetrips-public-catalog__filter {
    min-height: 66px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        10px
        8px;

    border:
        1px solid
        #e6ecf2 !important;

    border-radius: 12px !important;

    color:
        #2c3948 !important;

    background:
        linear-gradient(
            180deg,
            #fbfcfd,
            #f3f6f9
        ) !important;

    font-size: 13px;

    font-weight: 750;

    line-height: 1.2;

    text-align: center;

    text-decoration: none !important;

    box-shadow:
        0 4px 15px
        rgba(13,47,73,.04);

    transition:
        transform .16s ease,
        border-color .16s ease,
        box-shadow .16s ease;
}

.livetrips-public-catalog__filter:hover,
.livetrips-public-catalog__filter:focus-visible {
    transform:
        translateY(-2px);

    border-color:
        rgba(255,121,0,.42) !important;

    color:
        #2c3948 !important;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f9fb
        ) !important;

    box-shadow:
        0 9px 24px
        rgba(13,47,73,.09);
}

.livetrips-public-catalog__filter.is-active {
    border-color:
        #ff7900 !important;

    color:
        #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #ff8a19,
            #ff6e00
        ) !important;

    box-shadow:
        0 8px 23px
        rgba(255,121,0,.22);
}

.livetrips-public-catalog__filter strong {
    min-width: 24px;

    padding:
        3px
        7px;

    border-radius: 999px;

    color: #60717d;

    background:
        rgba(255,255,255,.82);

    font-size: 11px;

    font-weight: 800;
}

.livetrips-public-catalog__filter.is-active strong {
    color: #ffffff;

    background:
        rgba(255,255,255,.20);
}


/* ==========================================================
   TRAVEL CARDS — ARTICLES CARD SCALE
   ========================================================== */

.livetrips-public-catalog__grid {
    width:
        min(
            1500px,
            calc(100% - 48px)
        );

    margin:
        0
        auto;

    display: grid;

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

    align-items: start;

    gap: 18px !important;
}

.livetrips-public-trip-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        #e3e9ee !important;

    border-radius: 13px !important;

    background: #ffffff !important;

    box-shadow:
        0 5px 20px
        rgba(20,51,72,.055) !important;

    transition:
        transform .17s ease,
        box-shadow .17s ease;
}

.livetrips-public-trip-card:hover {
    transform:
        translateY(-2px) !important;

    border-color:
        #e3e9ee !important;

    box-shadow:
        0 10px 28px
        rgba(20,51,72,.10) !important;
}

.livetrips-public-trip-card__cover {
    position: relative;

    display: block;

    aspect-ratio:
        16 / 9 !important;

    overflow: hidden;

    background: #071d2d;
}

.livetrips-public-trip-card__cover img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.livetrips-public-trip-card:hover
.livetrips-public-trip-card__cover img {
    transform:
        scale(1.025);
}

.livetrips-public-trip-card__status {
    top: 11px !important;

    left: 11px !important;

    min-height: auto !important;

    padding:
        5px
        9px !important;

    border-radius: 5px !important;

    color: #ffffff;

    font-size: 9px !important;

    font-weight: 900;

    line-height: 1.2;

    letter-spacing: .2px !important;

    box-shadow:
        0 4px 12px
        rgba(0,0,0,.15);
}

.livetrips-public-trip-card__body {
    min-height: 0 !important;

    padding:
        14px
        15px
        13px !important;
}

.livetrips-public-trip-card__owner {
    margin:
        0
        0
        6px !important;

    color: #8b96a0 !important;

    font-size: 10px !important;

    font-weight: 700;
}

.livetrips-public-trip-card h2 {
    margin:
        0
        0
        7px !important;

    font-size: 17px !important;

    font-weight: 850;

    line-height: 1.2 !important;
}

.livetrips-public-trip-card h2 a {
    color:
        #1f2c39 !important;

    text-decoration: none !important;
}

.livetrips-public-trip-card h2 a:hover,
.livetrips-public-trip-card h2 a:focus-visible {
    color:
        #ff7900 !important;
}

.livetrips-public-trip-card__description {
    min-height: 0;

    margin:
        0
        0
        11px !important;

    color:
        #64717d !important;

    font-size: 12px !important;

    line-height: 1.45 !important;
}

.livetrips-public-trip-card__progress {
    gap: 5px !important;

    margin:
        0
        0
        12px !important;
}

.livetrips-public-trip-card__progress > div {
    grid-template-columns:
        92px
        minmax(0,1fr) !important;

    gap: 7px !important;
}

.livetrips-public-trip-card__progress dt {
    color:
        #8b96a0 !important;

    font-size: 9px !important;

    font-weight: 800;
}

.livetrips-public-trip-card__progress dd {
    color:
        #485b69 !important;

    font-size: 11px;
}

.livetrips-public-trip-card__cta {
    min-height: auto !important;

    width: auto !important;

    align-self: flex-start;

    padding: 0 !important;

    border-radius: 0 !important;

    color:
        #e96f00 !important;

    background:
        transparent !important;

    font-size: 12px !important;

    font-weight: 850 !important;

    box-shadow: none !important;

    text-decoration: none !important;
}

.livetrips-public-trip-card__cta::after {
    content: " →";
}

.livetrips-public-trip-card__cta:hover,
.livetrips-public-trip-card__cta:focus-visible {
    color:
        #b95700 !important;

    background:
        transparent !important;
}

.livetrips-public-catalog__empty {
    width:
        min(
            1500px,
            calc(100% - 48px)
        );

    margin:
        0
        auto;

    background: #ffffff;
}


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

@media (max-width: 900px) {

    .livetrips-public-catalog__hero {
        min-height: 410px;
    }

    .livetrips-public-catalog__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            ) !important;
    }
}


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

@media (max-width: 700px) {

    .livetrips-public-catalog__hero {
        min-height: 520px;

        padding:
            34px
            18px
            54px !important;

        justify-content: flex-start;

        background-position:
            66%
            center;
    }

    .livetrips-public-catalog__eyebrow {
        margin-top: 16px;

        font-size: 16px;
    }

    .livetrips-public-catalog__hero h1 {
        max-width: 94%;

        font-size:
            clamp(
                38px,
                11vw,
                50px
            );
    }

    .livetrips-public-catalog__hero p {
        max-width: 94%;

        font-size: 15px;

        line-height: 1.42;
    }

    .livetrips-public-catalog__filters {
        width:
            calc(100% - 24px);

        display: flex !important;

        gap: 8px;

        margin:
            12px
            auto
            20px !important;

        overflow-x: auto;

        padding:
            0
            0
            5px !important;

        scrollbar-width: thin;
    }

    .livetrips-public-catalog__filter {
        flex:
            0
            0
            auto !important;

        min-width: 132px;

        min-height: 56px;
    }

    .livetrips-public-catalog__grid {
        width:
            calc(100% - 24px);

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


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

@media (max-width: 420px) {

    .livetrips-public-catalog__hero {
        min-height: 500px;

        background-position:
            69%
            center;
    }

    .livetrips-public-trip-card__progress > div {
        grid-template-columns:
            82px
            minmax(0,1fr) !important;
    }
}



/* LIVETRIPS-0.11.79-ARTICLES-SIDEBAR */

.livetrips-public-catalog__content-layout {
    width:
        min(
            1500px,
            calc(100% - 48px)
        );

    margin:
        0
        auto;

    display: grid;

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

    gap: 25px;

    align-items: start;
}

.livetrips-public-catalog__main {
    min-width: 0;
}

.livetrips-public-catalog__content-layout
.livetrips-public-catalog__grid,
.livetrips-public-catalog__content-layout
.livetrips-public-catalog__empty {
    width: 100%;

    margin-right: 0;
    margin-left: 0;
}

@media (max-width: 1100px) {

    .livetrips-public-catalog__content-layout {
        grid-template-columns:
            minmax(0,1fr)
            340px;
    }
}

@media (max-width: 900px) {

    .livetrips-public-catalog__content-layout {
        grid-template-columns:
            1fr;
    }
}

@media (max-width: 700px) {

    .livetrips-public-catalog__content-layout {
        width:
            calc(100% - 24px);
    }
}

/*
 * Exact current MyCamper Content sidebar design system.
 * Source snapshot:
 * media/com_mycampercontent/css/articles-page.css
 */

/* LIVETRIPS-0.11.80-SIDEBAR-CSS-ISOLATION */

/*
 * Exact sidebar/newsletter subset extracted from the
 * verified MyCamper Content articles-page.css snapshot.
 * Unrelated article, pagination, tag and footer rules
 * are intentionally excluded.
 */

.mca-sidebar {
display: grid;

    gap: 20px;

    min-width: 0;
}

.mca-map-promo {
display: block;

    overflow: hidden;

    border-radius: 14px;

    box-shadow:
        0 9px 28px
        rgba(16,48,69,.11);

    transition:
        transform .17s ease,
        box-shadow .17s ease;
}

.mca-map-promo:hover {
transform:
        translateY(-2px);

    box-shadow:
        0 13px 34px
        rgba(16,48,69,.16);
}

.mca-map-promo picture,
.mca-map-promo img {
display: block;

    width: 100%;
}

.mca-map-promo img {
height: auto;
}

.mca-newsletter {
position: relative;

    overflow: hidden;

    min-height: 500px;

    border:
        1px solid
        #e1e8ef;

    border-radius: 14px;

    background:
        #eef6fd;

    box-shadow:
        0 9px 28px
        rgba(16,48,69,.09);
}

.mca-newsletter__art {
position: absolute;

    inset: 0;

    z-index: 0;
}

.mca-newsletter__art,
.mca-newsletter__art img {
display: block;

    width: 100%;
    height: 100%;
}

.mca-newsletter__art img {
object-fit: cover;

    object-position:
        center top;
}

.mca-newsletter__form-wrap {
position: absolute;

    z-index: 3;

    top: 34%;

    right: 6.5%;
    left: 6.5%;
}

.mca-newsletter__mobile {
display: none;
}

.mca-newsletter
.acym_module,
.mca-newsletter
.acym_fulldiv,
.mca-newsletter
.acym_module_form {
width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    background:
        transparent !important;
}

.mca-newsletter
table.acym_form,
.mca-newsletter
table.acym_form tbody,
.mca-newsletter
table.acym_form tr {
width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;
}

.mca-newsletter
table.acym_form tr {
display: grid !important;

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

    gap: 7px;
}

.mca-newsletter
table.acym_form td {
display: block !important;

    width: auto !important;

    padding: 0 !important;
}

.mca-newsletter
table.acym_form input.cell {
width: 100% !important;
    height: 38px !important;

    margin: 0 !important;

    padding:
        0 10px !important;

    border:
        1px solid
        #cfdbe5 !important;

    border-radius:
        8px !important;

    outline:
        none !important;

    background:
        rgba(255,255,255,.96) !important;

    box-shadow:
        0 3px 12px
        rgba(17,55,82,.07) !important;

    color:
        #243649 !important;

    font-size:
        10.5px !important;
}

.mca-newsletter
.acysubbuttons {
display: block !important;
}

.mca-newsletter
.subbutton {
width: 100% !important;
    height: 38px !important;

    margin: 0 !important;

    padding:
        0 10px !important;

    border:
        0 !important;

    border-radius:
        8px !important;

    color:
        #fff !important;

    background:
        linear-gradient(
            135deg,
            #ff8817,
            #ff6f00
        ) !important;

    box-shadow:
        0 6px 15px
        rgba(var(--mca-orange-rgb, 255, 121, 0),.20) !important;

    font-size:
        11px !important;
    font-weight:
        850 !important;
}

.mca-newsletter
.unsubbutton {
display: none !important;
}

.mca-newsletter
.acym__field__error__block {
font-size:
        8px !important;
}

.mca-newsletter
.acym_module_error,
.mca-newsletter
.acym_module_success {
padding:
        7px !important;

    border-radius:
        7px !important;

    font-size:
        10px !important;
}

@media (max-width: 900px) {
.mca-sidebar {
grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        align-items: start;
}

.mca-newsletter {
min-height: 500px;
}

.mca-newsletter__desktop {
display: none;
}

.mca-newsletter__mobile {
display: block;
}

.mca-newsletter
    table.acym_form tr {
grid-template-columns:
            1fr;
}

.mca-newsletter__form-wrap {
top: 31%;
}
}

@media (max-width: 700px) {
.mca-sidebar {
grid-template-columns:
            1fr;
}

.mca-newsletter {
min-height:
            min(
                590px,
                130vw
            );
}

.mca-newsletter__form-wrap {
top: 31.5%;

        right: 7%;
        left: 7%;
}
}

@media (max-width: 420px) {
.mca-newsletter {
min-height: 515px;
}
}


/* LIVETRIPS-0.11.81-SIDEBAR-VARIABLES */

/*
 * The original MyCamper Articles page supplies this custom
 * property on .mca-page.
 *
 * LiveTrips deliberately imports only the isolated sidebar
 * rules, therefore the sidebar owns the same verified value.
 */

.livetrips-public-catalog__sidebar {
    --mca-orange-rgb: 255, 121, 0;
}

