/* ==========================================================================
   MARKTUR — USER.CSS
   Plik: user.css
   Zakres:
   - ustawienia globalne,
   - nagłówek i menu mobilne,
   - strona główna i kafelki,
   - stopka,
   - strona pojedynczej wycieczki V2.2.
   ========================================================================== */


/* ==========================================================================
   1. GLOBALNE USTAWIENIA
   ========================================================================== */

html {
    overflow-y: scroll;
}

body {
    padding-top: 112px !important;
}

body.mt-mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 1200px) {
    body {
        padding-left: 9% !important;
        padding-right: 9% !important;
        background-color: #ffffff;
    }
}


/* ==========================================================================
   2. NAGŁÓWEK MARKTUR - DESKTOP
   ========================================================================== */

.header.mt-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1030;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.mt-header-inner {
    width: 100%;
    min-height: 86px;
    padding: 14px 56px;
    display: grid;
    grid-template-columns: 240px 1fr 360px;
    align-items: center;
    column-gap: 34px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
}

.mt-header-brand {
    justify-self: start;
}

.mt-header-brand img {
    max-height: 58px !important;
    width: auto !important;
    display: block !important;
}

.mt-header-nav {
    width: 100%;
    justify-self: stretch;
}

.mt-header-nav ul#mod-menu1.mod-menu {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.mt-header-nav ul#mod-menu1.mod-menu li.nav-item > a {
    display: inline-block !important;
    padding: 8px 7px 6px !important;
    color: #38424c !important;
    background-color: transparent !important;
    border-bottom: 1px solid transparent !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out,
        border-color 0.2s ease-in-out !important;
}

.mt-header-nav ul#mod-menu1.mod-menu li.nav-item > a::after {
    display: none !important;
}

.mt-header-nav ul#mod-menu1.mod-menu li.nav-item > a:hover,
.mt-header-nav ul#mod-menu1.mod-menu li.nav-item.current > a {
    color: #111827 !important;
    background-color: #f6f8fa !important;
    border-bottom-color: #ff8a00 !important;
    font-weight: 500 !important;
}

.mt-header-nav ul#mod-menu1.mod-menu li.nav-item.active:not(.current) > a {
    color: #38424c !important;
    background-color: transparent !important;
    border-bottom-color: transparent !important;
    font-weight: 500 !important;
}

.mt-header-nav ul#mod-menu1.mod-menu li.nav-item.active:not(.current) > a:hover {
    color: #111827 !important;
    background-color: #f6f8fa !important;
    border-bottom-color: #ff8a00 !important;
}


/* ==========================================================================
   3. NAGŁÓWEK MARKTUR - KONTAKT
   ========================================================================== */

.mt-header-contact {
    width: 360px;
    min-width: 360px;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    white-space: nowrap;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mt-header-contact a {
    text-decoration: none;
}

.mt-header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3f4a56;
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mt-header-contact-item:hover {
    color: #111827;
}

.mt-header-contact-item i {
    width: 16px;
    min-width: 16px;
    text-align: center;
}

.mt-header-mail {
    min-width: 150px;
}

.mt-header-phone {
    min-width: 112px;
    color: #1f2933;
    font-weight: 650;
}

.mt-header-phone:hover,
.mt-header-phone:focus,
.mt-header-phone:active {
    font-weight: 650;
}

.mt-header-phone i {
    color: #ff8a00;
}

.mt-header-mail i {
    color: #5f6873;
}

.mt-header-facebook {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dce2;
    border-radius: 50%;
    background: #ffffff;
    color: #5f6873;
    font-size: 1rem;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.mt-header-facebook:hover {
    color: #1877f2;
    border-color: #1877f2;
    background: #f6f8fa;
}


/* ==========================================================================
   4. MENU MOBILNE
   ========================================================================== */

.mt-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #d7dce2;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.mt-mobile-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: #12385b;
}

.mt-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mt-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(86vw, 360px);
    height: 100vh;
    padding: 22px 22px 28px;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 138, 0, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -18px 0 36px rgba(15, 23, 42, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}

body.mt-mobile-menu-open .mt-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

body.mt-mobile-menu-open .mt-mobile-drawer {
    transform: translateX(0);
}

.mt-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mt-mobile-drawer-logo img {
    max-height: 56px;
    width: auto;
    display: block;
}

.mt-mobile-close {
    width: 38px;
    height: 38px;
    border: 1px solid #d7dce2;
    border-radius: 50%;
    background: #ffffff;
    color: #12385b;
    cursor: pointer;
}

.mt-mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mt-mobile-menu a {
    padding: 13px 4px;
    color: #12385b;
    text-decoration: none;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f2f4;
}

.mt-mobile-menu a:hover {
    color: #ff8a00;
}

.mt-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 22px;
}

.mt-mobile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    text-decoration: none;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 0.92rem;
}

.mt-mobile-contact i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff8a00;
    color: #ffffff;
}


/* ==========================================================================
   5. STRONA GŁÓWNA - BANER I HASŁO
   ========================================================================== */

.mt-home {
    width: 100%;
}

.mt-home-banner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto 28px;
    padding: 0 24px;
}

.mt-home-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.mt-home-intro {
    max-width: 900px;
    margin: -20px auto 34px;
    padding: 0 24px;
    text-align: center;
}

.mt-home-intro h1,
.mt-home-intro h2 {
    margin: 0 0 10px;
    color: #111827;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.mt-home-intro p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}


/* ==========================================================================
   6. KAFELKI OFERTY - SIATKA
   ========================================================================== */

.mt-offers {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 24px;
}

.mt-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* ==========================================================================
   7. KAFELKI OFERTY - KARTA
   ========================================================================== */

.mt-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.mt-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.mt-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.mt-card-image-wrap {
    position: relative;
    width: 100%;
    height: 285px;
    flex: 0 0 auto;
    overflow: hidden;
    background: #f3f4f6;
}

.mt-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mt-card:hover .mt-card-image {
    transform: scale(1.025);
}

.mt-card-image-wrap::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.78) 30%,
        rgba(0, 0, 0, 0.45) 65%,
        rgba(0, 0, 0, 0.00) 100%
    );
}

.mt-card-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #ffffff;
}

.mt-card-title {
    margin: 0 0 6px 0;
    color: #ffffff;
    font-size: 1.32rem;
    line-height: 1.16;
    font-weight: 750;
    letter-spacing: -0.02em;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.65),
        0 0 18px rgba(0, 0, 0, 0.45);
}

.mt-card-route {
    margin: 0;
    min-height: 40px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.93rem;
    line-height: 1.38;
    font-weight: 400;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.60),
        0 0 14px rgba(0, 0, 0, 0.40);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 7px 11px;
    border-radius: 3px;
    background: #ff8a00;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.28);
}


/* ==========================================================================
   8. KAFELKI OFERTY - META I STATUSY
   ========================================================================== */

.mt-card-bottom {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "date date"
        "price status";
    align-items: center;
    gap: 9px 18px;
    min-height: 104px;
    padding: 14px 22px 16px;
    background: #ffffff;
    border-top: 1px solid #eef0f2;
}

.mt-card-date {
    grid-area: date;
    display: inline-flex;
    align-items: center;
    color: #46515c;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.91rem;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.mt-card-price {
    grid-area: price;
    display: inline-flex;
    align-items: center;
    color: #c66700;
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.17rem;
    line-height: 1.15;
    font-weight: 550;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.mt-card-meta-icon {
    color: #495057 !important;
    margin-right: 7px;
    font-size: 0.95rem;
}

.mt-card-status {
    grid-area: status;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 3px;
    color: #ffffff !important;
    font-size: 0.82rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);
}

.mt-card-status::before {
    display: none !important;
}

.mt-status-free {
    background-color: #2e9d5b;
}

.mt-status-full {
    background-color: #d11f2f;
}

.mt-status-done {
    background-color: #2f78a8;
}

.mt-status-default {
    background-color: #69717a;
}


/* ==========================================================================
   10. STOPKA MARKTUR
   ========================================================================== */

.mt-footer-v2 {
    position: relative;
    width: 100vw;
    margin: 70px 0 0 calc(50% - 50vw);
    overflow: hidden;
    border-top: 2px solid #ff8a00;
    background:
        radial-gradient(circle at 18% 35%, rgba(255,255,255,.08) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 32%, rgba(255,255,255,.07) 0 1px, transparent 2px),
        linear-gradient(180deg, #12385b 0%, #0b2945 100%);
    background-size: 18px 18px, 20px 20px, auto;
    color: rgba(255,255,255,.86);
}

.mt-footer-v2::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 28px rgba(255,255,255,.025),
        inset 0 0 0 58px rgba(255,255,255,.018);
}

.mt-footer-v2::after {
    content: "✈";
    position: absolute;
    right: 9%;
    top: 56px;
    color: rgba(255,255,255,.08);
    font-size: 7rem;
    transform: rotate(-18deg);
}

.mt-footer-v2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 22% 34%, rgba(255,255,255,.07), transparent 28%),
        radial-gradient(ellipse at 76% 40%, rgba(255,255,255,.06), transparent 30%);
    pointer-events: none;
}

.mt-footer-v2 .mt-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 42px 24px 30px;
    text-align: center;
    font-family: "Montserrat", system-ui, sans-serif;
}

.mt-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-footer-logo img {
    max-height: 90px;
    width: auto;
    display: block;
    margin: 0 auto;
    transform: translateX(22px);
}

.mt-footer-tagline {
    margin: 14px 0 30px;
    color: #ffffff;
}

.mt-footer-tagline span {
    display: block;
    margin-bottom: 2px;
    font-size: 1.65rem;
    line-height: 1.2;
    font-weight: 500;
}

.mt-footer-tagline strong {
    display: block;
    margin-top: 0;
    color: #ff8a00;
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 750;
    font-style: italic;
}

.mt-footer-v2 .mt-footer-menu {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.mt-footer-v2 .mt-footer-menu,
.mt-footer-contact,
.mt-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 28px;
    margin-bottom: 22px;
}

.mt-footer-v2 .mt-footer-menu a,
.mt-footer-contact a,
.mt-footer-bottom a {
    color: rgba(255,255,255,.86);
    text-decoration: none;
}

.mt-footer-v2 .mt-footer-menu a:hover,
.mt-footer-contact a:hover,
.mt-footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ff8a00;
    text-underline-offset: 4px;
}

.mt-footer-contact {
    margin-bottom: 24px;
}

.mt-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.mt-footer-contact i,
.mt-footer-contact a:last-child i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff8a00;
    color: #ffffff;
}

.mt-footer-note {
    max-width: 780px;
    margin: 0 auto 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.66);
    font-size: 0.76rem;
    line-height: 1.65;
}

.mt-footer-bottom {
    margin-bottom: 0;
    gap: 10px 16px;
    color: rgba(255,255,255,.72);
    font-size: 0.82rem;
}

.mt-footer-bottom span {
    color: rgba(255,255,255,.82);
}

.mt-footer-bottom a::before {
    content: "•";
    display: inline-block;
    margin-right: 16px;
    color: #ff8a00;
}


/* ==========================================================================
   12. RESPONSYWNOŚĆ
   ========================================================================== */

@media (max-width: 1300px) {
    body {
        padding-top: 86px !important;
    }

    .mt-header-inner {
        min-height: 72px !important;
        padding: 10px 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        column-gap: 16px !important;
    }

    .mt-header-brand img {
        max-height: 52px !important;
    }

    .mt-header-nav,
    .mt-header-contact {
        display: none !important;
    }

    .mt-mobile-toggle {
        display: inline-flex !important;
    }
}

@media (max-width: 1199px) {
    .mt-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 86px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .mt-home-intro {
        margin-top: -6px;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .mt-home-intro h1,
    .mt-home-intro h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .mt-home-banner {
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .mt-offers {
        padding: 24px 12px;
    }

    .mt-offers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mt-card-image-wrap {
        height: 230px;
    }

    .mt-card-route {
        min-height: auto;
    }

    .mt-card-bottom {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "date date"
            "price status";
        gap: 10px 12px;
        min-height: auto;
        padding: 14px 18px 16px;
    }

    .mt-card-status {
        justify-self: end;
        align-self: center;
        padding: 6px 9px;
        font-size: 0.78rem;
    }

    .mt-card-price {
        align-self: center;
        font-size: 1.08rem;
    }

    .mt-footer-v2 {
        margin-top: 46px;
    }

    .mt-footer-v2 .mt-footer-inner {
        padding: 34px 16px 26px;
    }

    .mt-footer-logo img {
        max-height: 64px;
    }

    .mt-footer-tagline span {
        font-size: 1.3rem;
    }

    .mt-footer-tagline strong {
        font-size: 1.2rem;
    }

    .mt-footer-contact,
    .mt-footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .mt-footer-bottom a::before {
        display: none;
    }
}

/* ==========================================================================
   13. STRONA POJEDYNCZEJ WYCIECZKI — V2.2 FINAL
   ========================================================================== */

.mt-trip-page {
    --mt-trip-navy: #0b2d4d;
    --mt-trip-navy-2: #123f68;
    --mt-trip-orange: #ff8500;
    --mt-trip-orange-dark: #db7000;
    --mt-trip-text: #10243c;
    --mt-trip-muted: #627185;
    --mt-trip-border: #e2e7ec;
    --mt-trip-card: #ffffff;

    width: 100%;
    color: var(--mt-trip-text);
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


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

.mt-trip-hero {
    position: relative;
    width: 100vw;
    min-height: 600px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background-color: var(--mt-trip-navy);
    background-repeat: no-repeat;
    background-position: center 42%;
    background-size: cover;
}

/* Delikatny efekt parallax tylko na większych ekranach. */
@media (min-width: 992px) {
    .mt-trip-hero {
        background-attachment: fixed;
    }
}

.mt-trip-hero-no-image {
    background:
        radial-gradient(circle at 24% 28%, rgba(255, 133, 0, 0.15), transparent 32%),
        linear-gradient(135deg, #164b78 0%, #0b2d4d 70%);
}

.mt-trip-hero::after {
    content: "";
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.24) 52%,
        rgba(255,255,255,0.82) 82%,
        #ffffff 100%
    );
}

.mt-trip-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 72% 38%,
            rgba(255, 255, 255, 0.05),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            rgba(3, 22, 39, 0.96) 0%,
            rgba(4, 29, 50, 0.85) 31%,
            rgba(4, 29, 50, 0.52) 60%,
            rgba(4, 29, 50, 0.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 25, 43, 0.44) 0%,
            rgba(4, 25, 43, 0) 48%
        );
}

.mt-trip-hero-inner {
    position: relative;
    z-index: 3;
    width: min(1380px, calc(100% - 48px));
    min-height: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: center;
    gap: 64px;
    padding: 58px 0 84px;
}

.mt-trip-hero-content {
    max-width: 810px;
    color: #ffffff;
}

.mt-trip-hero-eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.3;
}

.mt-trip-hero-title {
    max-width: 800px;
    margin: 0;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.65rem, 4.7vw, 4.65rem) !important;
    line-height: 1.01;
    font-weight: 700;
    letter-spacing: -0.038em;
    text-wrap: balance;
    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.34),
        0 0 32px rgba(0, 0, 0, 0.18);
}

.mt-trip-hero-route {
    margin: 20px 0 0;
    color: var(--mt-trip-orange);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.5;
    font-weight: 760;
    text-shadow: 0 2px 12px rgba(0,0,0,.22);
}

.mt-trip-hero-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.mt-trip-hero-fact {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mt-trip-hero-fact > i {
    width: 34px;
    flex: 0 0 34px;
    margin-top: 1px;
    color: var(--mt-trip-orange);
    font-size: 1.55rem;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.22));
}

.mt-trip-hero-fact div {
    min-width: 0;
}

.mt-trip-hero-fact span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.68rem;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.mt-trip-hero-fact strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.38;
    font-weight: 680;
}


/* ==========================================================================
   PANEL KONTAKTOWY HERO
   ========================================================================== */

.mt-trip-contact-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 133, 0, 0.70);
    border-radius: 10px;
    background:
        linear-gradient(
            160deg,
            rgba(15, 57, 92, 0.96),
            rgba(5, 31, 53, 0.98)
        );
    color: #ffffff;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(5px);
}

.mt-trip-price {
    padding: 23px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.mt-trip-price span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.74rem;
}

.mt-trip-price strong {
    display: block;
    color: var(--mt-trip-orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.62rem;
    line-height: 1;
    font-weight: 700;
}

.mt-trip-contact-intro {
    padding: 21px 25px 15px;
    text-align: center;
}

.mt-trip-contact-intro h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 800;
}

.mt-trip-contact-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.77rem;
    line-height: 1.58;
}

.mt-trip-contact-actions {
    display: grid;
    gap: 11px;
    padding: 9px 16px 18px;
}

.mt-trip-contact-button {
    min-height: 61px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 15px;
    border-radius: 6px;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mt-trip-contact-button:hover {
    transform: translateY(-2px);
}

.mt-trip-contact-button > i {
    width: 34px;
    flex: 0 0 34px;
    font-size: 1.15rem;
    text-align: center;
}

.mt-trip-contact-button span {
    min-width: 0;
}

.mt-trip-contact-button small {
    display: block;
    margin-bottom: 2px;
    font-size: 0.67rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mt-trip-contact-button strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 0.93rem;
    line-height: 1.25;
    font-weight: 800;
}

.mt-trip-contact-phone {
    border: 1px solid var(--mt-trip-orange);
    background: var(--mt-trip-orange);
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(255,133,0,.18);
}

.mt-trip-contact-phone:hover {
    background: var(--mt-trip-orange-dark);
}

.mt-trip-contact-email {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff !important;
}

.mt-trip-contact-email:hover {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.11);
}


/* ==========================================================================
   GŁÓWNY UKŁAD
   ========================================================================== */

.mt-trip-main {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    align-items: start;
    gap: 30px;
    padding: 42px 0 34px;
}

.mt-trip-content,
.mt-trip-sidebar {
    min-width: 0;
}

.mt-trip-sidebar {
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .mt-trip-sidebar {
        position: sticky;
        top: 108px;
        align-self: start;
    }
}

.mt-trip-section,
.mt-trip-card,
.mt-trip-info-box,
.mt-trip-notes {
    border: 1px solid var(--mt-trip-border);
    border-radius: 9px;
    background: var(--mt-trip-card);
    box-shadow: 0 7px 22px rgba(15, 35, 55, 0.075);
}


/* ==========================================================================
   PLAN WYCIECZKI
   ========================================================================== */

.mt-trip-plan {
    overflow: hidden;
}

.mt-trip-section-header {
    padding: 23px 28px 18px;
    border-bottom: 1px solid var(--mt-trip-border);
}

.mt-trip-section-header h2 {
    margin: 0;
    color: var(--mt-trip-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.58rem;
    line-height: 1.2;
    font-weight: 700;
}

.mt-trip-timeline {
    padding: 5px 30px 15px;
}

.mt-trip-day {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
}

.mt-trip-day:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 54px;
    bottom: 0;
    left: 27px;
    width: 1px;
    background: #edf0f3;
}

.mt-trip-day-marker {
    position: relative;
    z-index: 2;
    padding-top: 22px;
}

.mt-trip-day-marker span {
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mt-trip-orange);
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1;
    font-weight: 800;
    box-shadow:
        0 7px 17px rgba(255, 133, 0, 0.28),
        0 0 0 4px #fff;
}

.mt-trip-day-body {
    display: flow-root;
    padding: 24px 0 25px;
}

.mt-trip-day:not(:last-child) .mt-trip-day-body {
    border-bottom: 1px solid var(--mt-trip-border);
}

.mt-trip-day-copy {
    min-width: 0;
}

.mt-trip-day-label {
    margin: 0 0 5px;
    color: var(--mt-trip-orange);
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.mt-trip-day h3 {
    margin: 0 0 10px;
    color: var(--mt-trip-text);
    font-size: 1.14rem;
    line-height: 1.35;
    font-weight: 800;
}

.mt-trip-editor-content {
    color: #293b4e;
    font-size: 0.9rem;
    line-height: 1.72;
}

.mt-trip-editor-content > *:first-child {
    margin-top: 0;
}

.mt-trip-editor-content > *:last-child {
    margin-bottom: 0;
}

.mt-trip-editor-content p {
    margin: 0 0 0.75em;
}

.mt-trip-day-photo {
    float: right;
    width: clamp(245px, 42%, 320px);
    height: 180px;
    margin: 0 0 16px 28px;
    overflow: hidden;
    border-radius: 9px;
    background: #edf1f4;
    box-shadow:
        0 8px 22px rgba(15, 35, 55, 0.13),
        inset 0 0 0 1px rgba(255,255,255,.45);
}

.mt-trip-day-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .32s ease, filter .32s ease;
}

.mt-trip-day:hover .mt-trip-day-photo img {
    transform: scale(1.035);
    filter: saturate(1.03) contrast(1.015);
}

.mt-trip-timeline-custom .mt-trip-day {
    display: block;
}

.mt-trip-timeline-custom .mt-trip-day:not(:last-child)::before {
    display: none;
}

.mt-trip-day-gallery {
    float: right;
    width: clamp(300px, 46%, 360px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 0 0 16px 28px;
}

.mt-trip-day-gallery .mt-trip-gallery-trigger {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: #edf1f4;
    box-shadow:
        0 8px 22px rgba(15, 35, 55, 0.13),
        inset 0 0 0 1px rgba(255,255,255,.45);
}

.mt-trip-day-gallery .mt-trip-gallery-trigger:first-child:nth-last-child(3) {
    grid-column: 1 / -1;
}

.mt-trip-day-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .32s ease, filter .32s ease;
}

.mt-trip-day:hover .mt-trip-day-gallery img {
    transform: scale(1.035);
    filter: saturate(1.03) contrast(1.015);
}


/* ==========================================================================
   PRAWA KOLUMNA
   ========================================================================== */

.mt-trip-card {
    padding: 21px;
}

.mt-trip-card h2 {
    margin: 0 0 16px;
    color: var(--mt-trip-text);
    font-size: 1.06rem;
    line-height: 1.3;
    font-weight: 800;
}

.mt-trip-details-list {
    margin: 0;
}

.mt-trip-detail-row {
    display: grid;
    grid-template-columns: minmax(115px, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
    gap: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #e9edf0;
}

.mt-trip-detail-row:last-child {
    border-bottom: 0;
}

.mt-trip-detail-row dt {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #435368;
    font-size: 0.76rem;
    line-height: 1.45;
    font-weight: 620;
}

.mt-trip-detail-row dt i {
    width: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    color: #A8742A;
    text-align: center;
}

.mt-trip-detail-row dd {
    margin: 0;
    color: var(--mt-trip-text);
    font-size: 0.79rem;
    line-height: 1.48;
    font-weight: 650;
    text-align: right;
    overflow-wrap: anywhere;
}

.mt-trip-detail-price dd {
    color: var(--mt-trip-orange);
    font-size: 1.08rem;
    font-weight: 820;
}

.mt-trip-sidebar-contact p {
    margin: -7px 0 14px;
    color: var(--mt-trip-muted);
    font-size: 0.76rem;
    line-height: 1.58;
}

.mt-trip-sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--mt-trip-text);
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 750;
}

.mt-trip-sidebar-contact a:hover {
    color: var(--mt-trip-orange);
}

.mt-trip-sidebar-contact a i {
    width: 24px;
    color: var(--mt-trip-orange);
    font-size: 1.02rem;
    text-align: center;
}


/* ==========================================================================
   PDF
   ========================================================================== */

.mt-trip-pdf {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    border-color: var(--mt-trip-navy);
    background:
        linear-gradient(
            145deg,
            var(--mt-trip-navy-2),
            var(--mt-trip-navy)
        );
    color: #ffffff;
}

.mt-trip-pdf-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1.25rem;
}

.mt-trip-pdf h2 {
    margin-bottom: 5px;
    color: #ffffff;
}

.mt-trip-pdf p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
    line-height: 1.5;
}

.mt-trip-pdf-button,
.mt-trip-pdf-original a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 14px;
    border: 1px solid var(--mt-trip-orange);
    border-radius: 5px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.75rem;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.mt-trip-pdf-button:hover,
.mt-trip-pdf-original a:hover {
    background: var(--mt-trip-orange);
    color: #ffffff !important;
}

.mt-trip-pdf-button i {
    color: var(--mt-trip-orange);
}

.mt-trip-pdf-button:hover i {
    color: #ffffff;
}


/* ==========================================================================
   DOLNE SEKCJE
   ========================================================================== */

.mt-trip-bottom {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 28px;
}

.mt-trip-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mt-trip-info-box,
.mt-trip-notes {
    padding: 25px 27px;
}

.mt-trip-info-box header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
}

.mt-trip-info-box h2 {
    margin: 0;
    color: var(--mt-trip-text);
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 800;
}

.mt-trip-info-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.72rem;
}

.mt-trip-included .mt-trip-info-icon {
    background: #e8f7ec;
    color: #19a23b;
}

.mt-trip-additional .mt-trip-info-icon {
    background: #fff2e3;
    color: var(--mt-trip-orange);
}

.mt-trip-info-box .mt-trip-editor-content,
.mt-trip-notes .mt-trip-editor-content {
    font-size: 0.83rem;
    line-height: 1.67;
}

.mt-trip-info-box .mt-trip-editor-content strong,
.mt-trip-info-box .mt-trip-editor-content b,
.mt-trip-notes .mt-trip-editor-content strong,
.mt-trip-notes .mt-trip-editor-content b {
    color: var(--mt-trip-text);
    font-weight: 800;
}

.mt-trip-info-box .mt-trip-editor-content ul,
.mt-trip-notes .mt-trip-editor-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mt-trip-info-box .mt-trip-editor-content li,
.mt-trip-notes .mt-trip-editor-content li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 27px;
}

.mt-trip-info-box .mt-trip-editor-content li::before,
.mt-trip-notes .mt-trip-editor-content li::before {
    position: absolute;
    top: 0.08em;
    left: 1px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.mt-trip-included .mt-trip-editor-content li::before {
    content: "\f00c";
    color: #1a9c45;
}

.mt-trip-additional .mt-trip-editor-content li::before {
    content: "\f105";
    color: var(--mt-trip-orange);
}

/* Pole 18 bez automatycznego nagłówka. */
.mt-trip-notes-plain {
    margin-top: 20px;
    border-left: 4px solid var(--mt-trip-orange);
    background:
        linear-gradient(90deg, #fff8ef 0%, #fffdf9 100%);
}


/* ==========================================================================
   RESPONSYWNOŚĆ
   ========================================================================== */


@media (max-width: 1199px) {
    .mt-trip-hero-inner {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 38px;
    }

    .mt-trip-hero-facts {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }

    .mt-trip-main {
        grid-template-columns: minmax(0, 1fr) 330px;
    }
}

@media (max-width: 991.98px) {
    .mt-trip-hero {
        min-height: auto;
        background-attachment: scroll;
    }

    .mt-trip-hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(4, 27, 47, 0.88) 0%,
                rgba(4, 27, 47, 0.68) 48%,
                rgba(4, 27, 47, 0.92) 100%
            );
    }

    .mt-trip-hero-inner {
        min-height: 760px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 34px;
        padding: 48px 0 92px;
    }

    .mt-trip-contact-panel {
        width: 100%;
        max-width: 560px;
    }

    .mt-trip-main {
        grid-template-columns: 1fr;
    }

    .mt-trip-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-trip-pdf {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .mt-trip-day-body {
        display: flex;
        flex-direction: column;
    }

    .mt-trip-day-copy {
        order: 1;
    }

    .mt-trip-day-photo {
        order: 2;
        float: none;
        width: 100%;
        height: 220px;
        margin: 16px 0 0;
    }

    .mt-trip-day-gallery {
        float: none;
        width: 100%;
        margin: 16px 0 0;
    }

    .mt-trip-timeline-custom .mt-trip-day-body {
        display: flex;
        flex-direction: column;
    }

    .mt-trip-timeline-custom .mt-trip-day-copy {
        order: 1;
    }

    .mt-trip-timeline-custom .mt-trip-day-gallery,
    .mt-trip-timeline-custom .mt-trip-day-photo {
        order: 2;
    }

    .mt-trip-hero-inner,
    .mt-trip-main,
    .mt-trip-bottom {
        width: min(100% - 28px, 1380px);
    }

    .mt-trip-hero-inner {
        min-height: 800px;
        padding: 38px 0 88px;
    }

    .mt-trip-hero-title {
        font-size: clamp(2.25rem, 11vw, 3.4rem) !important;
    }

    .mt-trip-hero-route {
        margin-top: 17px;
    }

    .mt-trip-hero-facts {
        grid-template-columns: 1fr 1fr;
        gap: 19px 14px;
        margin-top: 34px;
    }

    .mt-trip-price strong {
        font-size: 2.25rem;
    }

    .mt-trip-main {
        gap: 20px;
        padding-top: 28px;
    }

    .mt-trip-section-header {
        padding: 20px 18px 16px;
    }

    .mt-trip-timeline {
        padding: 4px 17px 13px;
    }

    .mt-trip-day {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
    }

    .mt-trip-timeline-custom .mt-trip-day {
        display: block;
    }

    .mt-trip-day:not(:last-child)::before {
        left: 19px;
    }

    .mt-trip-day-marker span {
        width: 32px;
        height: 32px;
        font-size: 0.86rem;
    }

    .mt-trip-day-photo {
        height: 220px;
    }

    .mt-trip-sidebar {
        grid-template-columns: 1fr;
    }

    .mt-trip-pdf {
        grid-column: auto;
    }

    .mt-trip-bottom-grid {
        grid-template-columns: 1fr;
    }

    .mt-trip-info-box,
    .mt-trip-notes {
        padding: 21px 19px;
    }
}

@media (max-width: 479px) {
    .mt-trip-hero-facts {
        grid-template-columns: 1fr;
    }

    .mt-trip-hero-inner {
        min-height: 900px;
    }

    .mt-trip-detail-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .mt-trip-detail-row dd {
        padding-left: 26px;
        text-align: left;
    }

    .mt-trip-pdf {
        grid-template-columns: 1fr;
    }

    .mt-trip-day-photo {
        height: 180px;
    }
}
/* ==========================================================================
   MARKTUR — KALENDARZ IMPREZ 2.0
   ========================================================================== */

.mt-cal2-page {
    --mt-cal2-navy: #0b2d4d;
    --mt-cal2-orange: #ff8500;
    --mt-cal2-orange-dark: #dc7200;
    --mt-cal2-gold: #a8742a;
    --mt-cal2-text: #10243c;
    --mt-cal2-muted: #617084;
    --mt-cal2-border: #e1e7ec;
    --mt-cal2-card: #ffffff;

    width: 100%;
    color: var(--mt-cal2-text);
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* HERO */

.mt-cal2-hero {
    position: relative;
    width: 100vw;
    min-height: 470px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background-color: var(--mt-cal2-navy);
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    box-shadow: 0 18px 44px rgba(11, 45, 77, 0.14);
}

@media (min-width: 992px) {
    .mt-cal2-hero {
        background-attachment: fixed;
    }
}

.mt-cal2-hero-no-image {
    background:
        radial-gradient(circle at 72% 38%, rgba(255,133,0,.16), transparent 28%),
        linear-gradient(125deg, #0b2d4d 0%, #123f68 58%, #1b527f 100%);
}

.mt-cal2-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 3;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.24) 52%,
        rgba(255,255,255,.82) 82%,
        #fff 100%
    );
}

.mt-cal2-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 38%, rgba(255,255,255,.05), transparent 30%),
        linear-gradient(
            90deg,
            rgba(3,22,39,.96) 0%,
            rgba(4,29,50,.86) 34%,
            rgba(4,29,50,.54) 64%,
            rgba(4,29,50,.22) 100%
        );
}

.mt-cal2-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 48px));
    min-height: 470px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 0 78px;
}

.mt-cal2-hero-eyebrow {
    margin: 0 0 14px;
    color: var(--mt-cal2-orange);
    font-size: .82rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.mt-cal2-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 4.7vw, 4.45rem) !important;
    line-height: 1.01;
    font-weight: 700;
    letter-spacing: -.038em;
    text-shadow: 0 2px 18px rgba(0,0,0,.18);
}

.mt-cal2-hero-lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.94);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.65;
}


/* TIMELINE */

.mt-cal2-content {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 34px;
}

.mt-cal2-timeline {
    position: relative;
}

.mt-cal2-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 18px;
    width: 1px;
    background: #e5eaee;
}

.mt-cal2-month {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 38px;
}

.mt-cal2-month-header {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-top: 2px;
}

.mt-cal2-month-dot {
    position: relative;
    z-index: 2;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--mt-cal2-orange);
    box-shadow: 0 6px 15px rgba(255,133,0,.24);
}

.mt-cal2-month-header h2 {
    margin: 5px 0 0;
    color: var(--mt-cal2-navy);
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.01em;
}

.mt-cal2-list {
    display: grid;
    gap: 18px;
}


/* KARTA */

.mt-cal2-card {
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--mt-cal2-border);
    border-radius: 12px;
    background: var(--mt-cal2-card);
    box-shadow: 0 9px 26px rgba(15,35,55,.085);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

.mt-cal2-card:hover {
    transform: translateY(-3px);
    border-color: #d5dde4;
    box-shadow: 0 16px 38px rgba(15,35,55,.13);
}

.mt-cal2-card-top {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 22px;
    border-bottom: 1px solid #edf0f2;
    background:
        linear-gradient(90deg, #fff 0%, #fff 72%, #fbfcfd 100%);
}

.mt-cal2-date {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--mt-cal2-gold);
    font-size: 1.18rem;
    line-height: 1.3;
    font-weight: 800;
}

.mt-cal2-date i {
    width: 22px;
    flex: 0 0 22px;
    color: var(--mt-cal2-gold);
    text-align: center;
}

.mt-cal2-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
}

.mt-cal2-new,
.mt-cal2-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: .68rem;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .025em;
    white-space: nowrap;
}

.mt-cal2-new {
    border: 1px solid #d88a18;
    background: #fffaf2;
    color: #c97800;
}

.mt-cal2-status {
    border: 1px solid currentColor;
}

.mt-cal2-status-free {
    color: #3a9a5c;
    background: #f6fcf8;
}

.mt-cal2-status-last {
    color: #c27100;
    background: #fff8eb;
}

.mt-cal2-status-full {
    color: #d34a57;
    background: #fff6f7;
}

.mt-cal2-status-done {
    color: #5d89a5;
    background: #f5f9fc;
}

.mt-cal2-status-default {
    color: #66717d;
    background: #f5f7f8;
}

.mt-cal2-card-body {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 202px;
}

.mt-cal2-image {
    display: block;
    min-height: 202px;
    overflow: hidden;
    background: #e9eef2;
    text-decoration: none;
}

.mt-cal2-image img {
    width: 100%;
    height: 100%;
    min-height: 202px;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.mt-cal2-card:hover .mt-cal2-image img {
    transform: scale(1.035);
}

.mt-cal2-image-placeholder {
    width: 100%;
    min-height: 202px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa7b3;
    font-size: 2rem;
}

.mt-cal2-card-copy {
    min-width: 0;
    min-height: 202px;
    display: flex;
    flex-direction: column;
    padding: 18px 22px 17px;
}

.mt-cal2-card-copy h3 {
    min-height: 2.5em;
    max-height: 2.5em;
    margin: 0 0 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--mt-cal2-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    line-height: 1.25;
    font-weight: 700;
}

.mt-cal2-card-copy h3 a {
    color: inherit;
    text-decoration: none;
}

.mt-cal2-card-copy h3 a:hover {
    color: var(--mt-cal2-orange-dark);
}

.mt-cal2-route-slot {
    min-height: 3.2em;
    max-height: 3.2em;
}

.mt-cal2-route {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4d6074;
    font-size: .94rem;
    line-height: 1.6;
}

.mt-cal2-route i {
    width: 20px;
    flex: 0 0 20px;
    margin-top: 4px;
    color: var(--mt-cal2-gold);
    text-align: center;
}

.mt-cal2-route span {
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mt-cal2-card-bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #edf0f2;
}

.mt-cal2-price small {
    display: block;
    margin-bottom: 4px;
    color: #788597;
    font-size: .7rem;
    line-height: 1.2;
}

.mt-cal2-price strong {
    display: block;
    color: var(--mt-cal2-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.78rem;
    line-height: 1.05;
    font-weight: 700;
}

.mt-cal2-button {
    min-width: 165px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 13px;
    border: 1px solid #d88a18;
    border-radius: 5px;
    background: #ffffff;
    color: #b86d00 !important;
    text-decoration: none !important;
    font-size: .7rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.mt-cal2-button:hover {
    transform: translateY(-1px);
    border-color: var(--mt-cal2-orange);
    background: var(--mt-cal2-orange);
    color: #ffffff !important;
}

.mt-cal2-empty {
    padding: 60px 24px;
    border: 1px solid var(--mt-cal2-border);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15,35,55,.07);
}

.mt-cal2-empty i {
    margin-bottom: 16px;
    color: var(--mt-cal2-gold);
    font-size: 2.4rem;
}

.mt-cal2-empty h2 {
    margin: 0 0 8px;
    color: var(--mt-cal2-navy);
}

.mt-cal2-empty p {
    margin: 0;
    color: var(--mt-cal2-muted);
}


/* TABLET */

@media (max-width: 1199px) {
    .mt-cal2-month {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mt-cal2-list {
        padding-left: 48px;
    }

    .mt-cal2-card-body {
        grid-template-columns: 200px minmax(0, 1fr);
    }
}

@media (max-width: 991.98px) {
    .mt-cal2-hero {
        min-height: 440px;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center 45%;
        background-size: cover;
    }

    .mt-cal2-hero-inner {
        min-height: 440px;
        padding: 46px 0 72px;
    }

    .mt-cal2-content {
        width: min(100% - 28px, 1380px);
    }

    .mt-cal2-card-top {
        align-items: flex-start;
    }

    .mt-cal2-card-body {
        grid-template-columns: 185px minmax(0, 1fr);
    }

    .mt-cal2-card-copy {
        padding: 20px 20px 18px;
    }

    .mt-cal2-card-copy h3 {
        font-size: 1.28rem;
    }

    .mt-cal2-route {
        font-size: .88rem;
    }

    .mt-cal2-button {
        min-width: 150px;
    }
}


/* TELEFON */

@media (max-width: 767px) {
    .mt-cal2-hero {
        min-height: 440px;
        background-position: 58% center;
    }

    .mt-cal2-hero-inner {
        width: min(100% - 28px, 1380px);
        min-height: 440px;
        padding: 40px 0 68px;
    }

    .mt-cal2-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.2rem) !important;
    }

    .mt-cal2-timeline::before {
        left: 16px;
    }

    .mt-cal2-month-header {
        gap: 12px;
    }

    .mt-cal2-month-dot {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
    }

    .mt-cal2-list {
        padding-left: 38px;
    }

    .mt-cal2-card-top {
        flex-direction: column;
        gap: 12px;
        padding: 15px 16px;
    }

    .mt-cal2-date {
        font-size: 1rem;
    }

    .mt-cal2-badges {
        justify-content: flex-start;
    }

    .mt-cal2-card-body {
        grid-template-columns: 1fr;
    }

    .mt-cal2-image,
    .mt-cal2-image img,
    .mt-cal2-image-placeholder {
        min-height: 190px;
        height: 190px;
    }

    .mt-cal2-card-copy {
        min-height: 0;
        padding: 20px 17px 18px;
    }

    .mt-cal2-card-copy h3 {
        min-height: 3.75em;
        max-height: 3.75em;
        font-size: 1.3rem;
        -webkit-line-clamp: 3;
    }

    .mt-cal2-card-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .mt-cal2-button {
        width: 100%;
        min-width: 0;
    }
}
/* ==========================================================================
   MARKTUR — KALENDARZ
   DŁUŻSZE TYTUŁY NA TELEFONIE
   ========================================================================== */

@media (max-width: 767px) {
    .mt-cal2-card-copy h3 {
        min-height: 3.75em;
        max-height: 3.75em;
        -webkit-line-clamp: 3;
    }
}
/* ==========================================================================
   MARKTUR — KALENDARZ
   PARALLAX HERO NA TABLECIE PIONOWO I TELEFONIE
   ========================================================================== */

@media (max-width: 991.98px) {
    .mt-cal2-hero {
        background-attachment: fixed !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center 45%;
    }
}

@media (max-width: 767px) {
    .mt-cal2-hero {
        background-position: 58% center;
    }
}

/* ==========================================================================
   MENU GŁÓWNE — WYJĄTEK DLA UKRYTEJ POZYCJI MENU
   ========================================================================== */

/*
 * Artykuły wycieczek otwierane przez ukrytą pozycję menu Itemid 117
 * podświetlają nadrzędną pozycję „Oferta”.
 */
body.itemid-117
.mt-header-nav
ul#mod-menu1.mod-menu
li.nav-item.active:not(.current) > a {
    color: #111827 !important;
    background-color: #f6f8fa !important;
    border-bottom-color: #ff8a00 !important;
    font-weight: 500 !important;
}

/* =========================================================
   HISTORIA NASZYCH PODRÓŻY
   ========================================================= */

.mt-history {
    width: 100%;
}

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

.mt-history-hero {
    position: relative;
    width: 100vw;
    min-height: 470px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-color: #071f35;
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    color: #fff;
    isolation: isolate;
    box-shadow: 0 18px 44px rgba(11, 45, 77, 0.14);
}

@media (min-width: 992px) {
    .mt-history-hero {
        background-attachment: fixed;
    }
}

.mt-history-hero--without-image {
    background:
        radial-gradient(
            circle at 76% 30%,
            rgba(255, 133, 0, 0.18),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            #061b2f 0%,
            #0a3659 60%,
            #0c496f 100%
        );
}


.mt-history-hero-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 24, 42, 0.98) 0%,
            rgba(4, 31, 53, 0.93) 29%,
            rgba(5, 39, 66, 0.72) 57%,
            rgba(5, 34, 57, 0.36) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 18, 31, 0.08) 0%,
            rgba(2, 18, 31, 0.18) 58%,
            rgba(2, 18, 31, 0.72) 100%
        );
}

/*
 * Mocniejsze, płynne przejście Hero do białego tła.
 */
.mt-history-hero-bottom-fade {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 125px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 22%,
            rgba(255, 255, 255, 0.23) 43%,
            rgba(255, 255, 255, 0.66) 72%,
            #fff 100%
        );
}

.mt-history-hero-container {
    width: min(100% - 3rem, 1320px);
    min-height: 470px;
    margin: 0 auto;
}

.mt-history-hero-content {
    display: flex;
    min-height: 470px;
    max-width: 790px;
    flex-direction: column;
    justify-content: center;
    padding: 4.25rem 0 6.75rem;
}

.mt-history-hero-eyebrow {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.mt-history-hero-title {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.35rem, 5.7vw, 5.85rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-wrap: balance;
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.34),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.mt-history-hero-title > span {
    display: block;
}

.mt-history-hero-title-accent {
    color: #ff8500;
}

.mt-history-hero-accent-line {
    display: flex;
    align-items: center;
    width: 145px;
    height: 4px;
    margin: 1.45rem 0 1.4rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.mt-history-hero-accent-line span {
    display: block;
    width: 64px;
    height: 100%;
    border-radius: inherit;
    background: #ff8500;
}

.mt-history-hero-description {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.mt-history-hero-description > :first-child {
    margin-top: 0;
}

.mt-history-hero-description > :last-child {
    margin-bottom: 0;
}

/* =========================================================
   TREŚĆ HISTORII
   ========================================================= */

.mt-history-content {
    width: 100%;
    padding-top: 2.75rem;
    padding-bottom: 5.5rem;
}

.mt-history-years {
    display: flex;
    flex-direction: column;
    gap: 6.5rem;
}

.mt-history-year {
    position: relative;
    padding-top: 2.65rem;
    border-top: 1px solid rgba(5, 35, 58, 0.14);
}

.mt-history-year-heading {
    max-width: 860px;
    margin-bottom: 2.75rem;
}

.mt-history-year-label {
    margin: 0 0 0.6rem;
    color: #ff8500;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.mt-history-year-title {
    margin: 0;
    color: #071f35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.85rem, 4.2vw, 4.35rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.96;
}

.mt-history-year-description {
    max-width: 780px;
    margin-top: 1.3rem;
    color: #394a58;
    font-size: 1.06rem;
    line-height: 1.76;
}

.mt-history-year-description > :first-child {
    margin-top: 0;
}

.mt-history-year-description > :last-child {
    margin-bottom: 0;
}

.mt-history-grid {
    margin-top: 0;
}

.mt-history-card .mt-card-title {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.mt-history-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1.35rem;
    transition: transform 0.22s ease;
}

.mt-history-card:hover .mt-history-card-arrow,
.mt-history-card:focus-within .mt-history-card-arrow {
    transform: translateX(0.3rem);
}

.mt-history-year-action {
    margin-top: 2.4rem;
}

.mt-history-year-link {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 0.85rem;
    padding: 0.82rem 1.4rem;
    border: 1px solid #0b3d61;
    border-radius: 0.35rem;
    background: #0b3d61;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(5, 35, 58, 0.12);
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mt-history-year-link:hover,
.mt-history-year-link:focus-visible {
    border-color: #ff8500;
    background: #ff8500;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 133, 0, 0.2);
}

.mt-history-year-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.22s ease;
}

.mt-history-year-link:hover .mt-history-year-link-arrow,
.mt-history-year-link:focus-visible .mt-history-year-link-arrow {
    transform: translateX(0.25rem);
}

.mt-history-empty,
.mt-history-empty-year {
    margin: 2rem 0;
    color: #667681;
    font-style: italic;
}

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

@media (max-width: 991.98px) {
    .mt-history-hero {
        min-height: 440px;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center 45%;
        background-size: cover;
    }

    .mt-history-hero-container,
    .mt-history-hero-content {
        min-height: 440px;
    }

    .mt-history-hero-content {
        max-width: 700px;
        padding-top: 3.75rem;
        padding-bottom: 6.25rem;
    }

    .mt-history-hero-title {
        font-size: clamp(3.2rem, 7.2vw, 5.1rem);
    }

    .mt-history-years {
        gap: 5.5rem;
    }
}


/* =========================================================
   HISTORIA — TABLET PIONOWO
   ========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
    .mt-history-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
    }

    .mt-history-year-action {
        text-align: center;
    }
}

/* =========================================================
   TELEFONY
   ========================================================= */

@media (max-width: 767.98px) {
    .mt-history-hero {
        min-height: 440px;
        background-position: 58% center;
    }

    .mt-history-hero-container {
        width: min(100% - 2rem, 1320px);
        min-height: 440px;
    }

    .mt-history-hero-content {
        min-height: 440px;
        justify-content: flex-end;
        padding-top: 4rem;
        padding-bottom: 6.25rem;
    }

    .mt-history-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 24, 42, 0.94) 0%,
                rgba(3, 27, 47, 0.84) 100%
            ),
            linear-gradient(
                180deg,
                rgba(2, 18, 31, 0.18) 0%,
                rgba(2, 18, 31, 0.62) 100%
            );
    }

    .mt-history-hero-bottom-fade {
        height: 100px;
    }

    .mt-history-hero-eyebrow {
        margin-bottom: 0.85rem;
        font-size: 0.71rem;
        letter-spacing: 0.085em;
    }

    .mt-history-hero-title {
        font-size: clamp(2.8rem, 12.5vw, 4.15rem);
        line-height: 0.93;
    }

    .mt-history-hero-accent-line {
        margin-top: 1.2rem;
        margin-bottom: 1.15rem;
    }

    .mt-history-hero-description {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .mt-history-content {
        padding-top: 2rem;
        padding-bottom: 3.75rem;
    }

    .mt-history-years {
        gap: 4.5rem;
    }

    .mt-history-year {
        padding-top: 1.8rem;
    }

    .mt-history-year-heading {
        margin-bottom: 1.8rem;
    }

    .mt-history-year-title {
        font-size: clamp(2.6rem, 12vw, 3.55rem);
    }

    .mt-history-year-description {
        font-size: 1rem;
        line-height: 1.66;
    }

    .mt-history-year-action {
        margin-top: 1.8rem;
    }

    .mt-history-year-link {
        width: 100%;
        justify-content: center;
        padding-right: 1rem;
        padding-left: 1rem;
        text-align: center;
    }
}

/* =========================================================
   MAŁE TELEFONY
   ========================================================= */

@media (max-width: 479.98px) {
    .mt-history-hero {
        min-height: 420px;
    }

    .mt-history-hero-container,
    .mt-history-hero-content {
        min-height: 420px;
    }

    .mt-history-hero-title {
        font-size: clamp(2.55rem, 13vw, 3.55rem);
    }

    .mt-history-hero-description {
        font-size: 0.94rem;
    }

    .mt-history-year-title {
        font-size: 2.75rem;
    }
}

/* =========================================================
   OGRANICZENIE ANIMACJI
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mt-history-card-arrow,
    .mt-history-year-link,
    .mt-history-year-link-arrow {
        transition: none;
    }
}
.mt-history-card-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.mt-history-card .mt-card-date {
    padding-bottom: 0;
    border-bottom: 0;
}

.mt-history-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #0b3d61;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
   HISTORIA — PEŁNY WIDOK ROKU
   ========================================================= */

.mt-history-year-page {
    width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

.mt-history-year-page-header {
    max-width: 860px;
    margin-bottom: 3rem;
}

.mt-history-year-page-title {
    margin: 0;
    color: #071f35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.mt-history-year-page-description {
    max-width: 780px;
    margin-top: 1.35rem;
    color: #394a58;
    font-size: 1.06rem;
    line-height: 1.75;
}

.mt-history-year-page-description > :first-child {
    margin-top: 0;
}

.mt-history-year-page-description > :last-child {
    margin-bottom: 0;
}

.mt-history-year-page-grid {
    margin-top: 0;
}

.mt-history-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.mt-history-pagination .pagination {
    margin: 0;
}

@media (max-width: 767.98px) {
    .mt-history-year-page {
        padding-top: 2.25rem;
        padding-bottom: 3.5rem;
    }

    .mt-history-year-page-header {
        margin-bottom: 2rem;
    }

    .mt-history-year-page-title {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .mt-history-year-page-description {
        font-size: 1rem;
        line-height: 1.65;
    }
}
/* ========================================================================== 
   16. STRONA „O NAS” — WERSJA DOCELOWA
   ========================================================================== */

.mt-about {
    --about-navy: #0b2d4d;
    --about-navy-2: #123f68;
    --about-orange: #ff8500;
    --about-orange-dark: #dc7200;
    --about-text: #17283a;
    --about-muted: #5f6e7d;
    --about-border: #dfe6ec;
    --about-soft: #f6f9fb;

    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    color: var(--about-text);
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mt-about *,
.mt-about *::before,
.mt-about *::after {
    box-sizing: border-box;
}

.mt-about-content {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

/* HERO */

.mt-about-hero {
    position: relative;
    width: 100vw;
    min-height: 470px;
    margin: 0 0 34px calc(50% - 50vw);
    overflow: hidden;
    background-color: #0b2d4d;
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    color: #fff;
    box-shadow: 0 18px 44px rgba(11, 45, 77, .14);
    isolation: isolate;
}

@media (min-width: 992px) {
    .mt-about-hero {
        background-attachment: fixed;
    }
}

.mt-about-hero--without-image {
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 133, 0, .18), transparent 23%),
        radial-gradient(circle at 70% 110%, rgba(255, 255, 255, .09), transparent 35%),
        linear-gradient(135deg, #123f68 0%, #0b2d4d 62%, #071f35 100%);
}

.mt-about-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 76% 28%, rgba(255, 255, 255, .06), transparent 30%),
        linear-gradient(
            90deg,
            rgba(3, 22, 39, .96) 0%,
            rgba(4, 29, 50, .86) 34%,
            rgba(4, 29, 50, .56) 64%,
            rgba(4, 29, 50, .24) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 18, 31, .06) 0%,
            rgba(2, 18, 31, .18) 58%,
            rgba(2, 18, 31, .58) 100%
        );
}

.mt-about-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 48px));
    min-height: 470px;
    margin: 0 auto;
    padding: 64px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    gap: 64px;
}

.mt-about-hero::before {
    content: "";
    position: absolute;
    right: 9%;
    bottom: 82px;
    z-index: 1;
    width: 280px;
    height: 1px;
    opacity: .5;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .82) 0 7px, transparent 7px 14px);
    transform: rotate(-18deg);
}

.mt-about-hero::after {
    content: "✈";
    position: absolute;
    right: 7%;
    bottom: 28px;
    z-index: 1;
    color: rgba(255, 255, 255, .13);
    font-size: 4.4rem;
    transform: rotate(-18deg);
}

.mt-about-hero-decor {
    position: absolute;
    top: 42px;
    right: 19%;
    z-index: 1;
    color: rgba(255, 255, 255, .08);
    font-size: 12rem;
    line-height: 1;
}

.mt-about-hero-copy {
    max-width: 900px;
}

.mt-about-eyebrow {
    margin: 0 0 13px;
    color: var(--about-orange);
    font-size: .78rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.mt-about-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5rem) !important;
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.mt-about-hero-lead {
    max-width: 820px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .96);
    font-size: 1.13rem;
    line-height: 1.65;
    font-weight: 600;
}

.mt-about-hero-copy > p:last-child {
    max-width: 900px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: .94rem;
    line-height: 1.72;
}

.mt-about-hero-number {
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 14px rgba(255, 255, 255, .025), 0 18px 42px rgba(0, 0, 0, .17);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: mt-about-number-float 8s ease-in-out infinite;
    will-change: transform;
}

.mt-about-hero-number strong {
    color: var(--about-orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: .9;
    font-weight: 700;
}

.mt-about-hero-number span {
    max-width: 110px;
    margin-top: 11px;
    color: #fff;
    font-size: .74rem;
    line-height: 1.4;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* PASEK FAKTÓW */

.mt-about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 82px;
}

.mt-about-fact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid var(--about-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 35, 55, .06);
}

.mt-about-fact > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3e5;
    color: var(--about-orange);
    font-size: 1.05rem;
    line-height: 1;
}

.mt-about-fact > div { min-width: 0; }
.mt-about-fact strong,
.mt-about-fact span { display: block; }
.mt-about-fact strong { color: var(--about-navy); font-size: .92rem; line-height: 1.35; font-weight: 800; }
.mt-about-fact span { margin-top: 3px; color: var(--about-muted); font-size: .76rem; line-height: 1.45; }

/* NAGŁÓWKI SEKCJI */

.mt-about-trust,
.mt-about-documents { margin-bottom: 86px; }
.mt-about-section-header { max-width: 820px; margin-bottom: 34px; }
.mt-about-section-header-centered { margin-right: auto; margin-left: auto; text-align: center; }

.mt-about-section-header h2,
.mt-about-insurance h2 {
    margin: 0;
    color: var(--about-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 3.5vw, 3.65rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.035em;
}

.mt-about-section-header > p:last-child {
    margin: 16px 0 0;
    color: var(--about-muted);
    font-size: 1rem;
    line-height: 1.72;
}

/* KAFELKI ZALET */

.mt-about-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mt-about-trust-item {
    position: relative;
    min-height: 265px;
    padding: 28px 25px 26px;
    overflow: hidden;
    border: 1px solid var(--about-border);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 35, 55, .07);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mt-about-trust-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--about-orange), #ffb45c);
}

.mt-about-trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 133, 0, .42);
    box-shadow: 0 17px 38px rgba(15, 35, 55, .12);
}

.mt-about-trust-icon { display: none; }
.mt-about-trust-item h3 { margin: 0 0 12px; color: var(--about-navy); font-size: 1.06rem; line-height: 1.35; font-weight: 800; }
.mt-about-trust-item p { margin: 0; color: var(--about-muted); font-size: .84rem; line-height: 1.68; }

/* ACCORDION */

.mt-about-accordion { display: grid; gap: 12px; }
.mt-about-accordion-item {
    overflow: hidden;
    border: 1px solid var(--about-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 35, 55, .055);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.mt-about-accordion-item[open] { border-color: rgba(255, 133, 0, .58); box-shadow: 0 12px 28px rgba(15, 35, 55, .09); }
.mt-about-accordion-item summary {
    min-height: 62px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    cursor: pointer;
    list-style: none;
    transition: background-color .2s ease;
}
.mt-about-accordion-item summary::-webkit-details-marker { display: none; }
.mt-about-accordion-item summary::marker { content: ""; }
.mt-about-accordion-item summary:hover,
.mt-about-accordion-item[open] summary { background: #f8fafb; }
.mt-about-accordion-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #edf3f7;
    color: var(--about-navy-2);
}
.mt-about-accordion-icon:empty::before { content: "\f15c"; font-family: "Font Awesome 6 Free"; font-size: 1rem; font-weight: 900; }
.mt-about-accordion-item[open] .mt-about-accordion-icon { background: #fff1df; color: var(--about-orange); }
.mt-about-accordion-title { min-width: 0; color: var(--about-navy); font-size: .88rem; line-height: 1.42; font-weight: 720; }
.mt-about-accordion-toggle {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e0e7;
    border-radius: 50%;
    background: #fff;
}
.mt-about-accordion-toggle::before,
.mt-about-accordion-toggle::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--about-navy);
    transition: transform .2s ease;
}
.mt-about-accordion-toggle::after { transform: rotate(90deg); }
.mt-about-accordion-item[open] .mt-about-accordion-toggle { border-color: var(--about-orange); background: var(--about-orange); }
.mt-about-accordion-item[open] .mt-about-accordion-toggle::before,
.mt-about-accordion-item[open] .mt-about-accordion-toggle::after { background: #fff; }
.mt-about-accordion-item[open] .mt-about-accordion-toggle::after { transform: rotate(0); }
.mt-about-accordion-content { margin: 0 16px 16px 70px; padding: 16px 18px; border-left: 3px solid var(--about-orange); border-radius: 0 7px 7px 0; background: #fffaf4; }
.mt-about-accordion-content p { margin: 0 0 14px; color: #526272; font-size: .86rem; line-height: 1.68; }
.mt-about-document-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid var(--about-navy);
    border-radius: 5px;
    background: var(--about-navy);
    color: #fff !important;
    text-decoration: none !important;
    font-size: .77rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .025em;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.mt-about-document-link:hover { transform: translateY(-1px); border-color: var(--about-orange); background: var(--about-orange); }

/* UBEZPIECZENIA */

.mt-about-insurance {
    position: relative;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 36px;
    padding: 48px 52px;
    overflow: hidden;
    border: 1px solid rgba(255, 133, 0, .3);
    border-radius: 16px;
    background: radial-gradient(circle at 90% 10%, rgba(255, 133, 0, .13), transparent 28%), linear-gradient(145deg, #f7fafc, #fff);
    box-shadow: 0 16px 40px rgba(15, 35, 55, .08);
}
.mt-about-insurance::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border: 34px solid rgba(11, 45, 77, .035);
    border-radius: 50%;
}
.mt-about-insurance-icon {
    position: relative;
    z-index: 1;
    width: 116px;
    height: 116px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--about-navy-2), var(--about-navy));
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 14px 30px rgba(11, 45, 77, .2);
}
.mt-about-insurance-copy { position: relative; z-index: 1; min-width: 0; }
.mt-about-insurance-copy > p:not(.mt-about-eyebrow) { max-width: 870px; margin: 17px 0 0; color: var(--about-muted); font-size: .94rem; line-height: 1.72; }
.mt-about-insurance-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin-top: 26px; }
.mt-about-insurance-link {
    min-width: 0;
    min-height: 84px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 1px solid var(--about-border);
    border-radius: 9px;
    background: #fff;
    color: var(--about-navy) !important;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(15, 35, 55, .055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.mt-about-insurance-link:hover { transform: translateY(-2px); border-color: var(--about-orange); box-shadow: 0 11px 25px rgba(15, 35, 55, .1); }
.mt-about-insurance-link-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf3f7;
    color: var(--about-navy-2);
    font-size: 1rem;
}
.mt-about-insurance-link-content { min-width: 0; }
.mt-about-insurance-link strong,
.mt-about-insurance-link small { display: block; }
.mt-about-insurance-link strong { font-size: .88rem; line-height: 1.35; font-weight: 800; }
.mt-about-insurance-link small { margin-top: 4px; color: var(--about-muted); font-size: .7rem; line-height: 1.45; }
.mt-about-insurance-link-arrow { justify-self: end; color: var(--about-orange); font-size: 1rem; transition: transform .2s ease; }
.mt-about-insurance-link:hover .mt-about-insurance-link-arrow { transform: translateX(3px); }

/* RESPONSYWNOŚĆ */

@media (max-width: 1199px) {
    .mt-about-hero-inner { grid-template-columns: minmax(0, 1fr) 185px; gap: 42px; padding: 54px 0; }
    .mt-about-hero-number { width: 180px; height: 180px; }
    .mt-about-hero-number strong { font-size: 4.25rem; }
    .mt-about-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mt-about-trust-item { min-height: 230px; }
}

@media (max-width: 991.98px) {
    .mt-about-hero {
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center 45%;
        background-size: cover;
    }

    .mt-about-content,
    .mt-about-hero-inner { width: min(100% - 28px, 1380px); }
    .mt-about-hero { min-height: auto; }
    .mt-about-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 48px 0; }
    .mt-about-hero-number { width: auto; height: auto; flex-direction: row; justify-content: flex-start; gap: 12px; padding: 17px 22px; border-radius: 11px; }
    .mt-about-hero-number strong { font-size: 3.3rem; }
    .mt-about-hero-number span { max-width: none; margin-top: 0; text-align: left; }
    .mt-about-facts { grid-template-columns: 1fr; margin-bottom: 68px; }
    .mt-about-insurance { grid-template-columns: 92px minmax(0, 1fr); gap: 26px; padding: 40px 34px; }
    .mt-about-insurance-icon { width: 88px; height: 88px; font-size: 2rem; }
    .mt-about-insurance-links { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .mt-about-hero {
        background-position: 58% center;
    }

    .mt-about-hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(3, 22, 39, .93) 0%,
                rgba(3, 27, 47, .82) 100%
            ),
            linear-gradient(
                180deg,
                rgba(2, 18, 31, .14) 0%,
                rgba(2, 18, 31, .62) 100%
            );
    }

    .mt-about,
    .mt-about-content,
    .mt-about-hero-inner { width: min(100% - 24px, 1380px); }
    .mt-about-hero { margin-bottom: 22px; }
    .mt-about-hero-inner { padding: 38px 0 32px; }
    .mt-about-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem) !important; }
    .mt-about-hero-lead { margin-top: 20px; font-size: 1rem; }
    .mt-about-hero-copy > p:last-child { font-size: .88rem; line-height: 1.66; }
    .mt-about-hero-number { padding: 14px 16px; }
    .mt-about-hero-number strong { font-size: 2.9rem; }
    .mt-about-fact { padding: 17px 18px; }
    .mt-about-trust,
    .mt-about-documents { margin-bottom: 64px; }
    .mt-about-section-header { margin-bottom: 25px; }
    .mt-about-section-header h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
    .mt-about-section-header > p:last-child { font-size: .92rem; line-height: 1.65; }
    .mt-about-trust-grid { grid-template-columns: 1fr; gap: 15px; }
    .mt-about-trust-item { min-height: auto; padding: 24px 22px; }
    .mt-about-accordion-item summary { min-height: 60px; grid-template-columns: 36px minmax(0, 1fr) 28px; gap: 11px; padding: 10px 12px; }
    .mt-about-accordion-icon { width: 38px; height: 38px; }
    .mt-about-accordion-title { font-size: .82rem; line-height: 1.42; }
    .mt-about-accordion-toggle { width: 28px; height: 28px; }
    .mt-about-accordion-content { margin: 0 14px 14px; padding: 16px; }
    .mt-about-insurance { grid-template-columns: 1fr; gap: 22px; padding: 31px 20px; overflow: visible; }
    .mt-about-insurance::after { display: none; }
    .mt-about-insurance-icon { width: 76px; height: 76px; font-size: 1.7rem; }
    .mt-about-insurance-copy { width: 100%; min-width: 0; }
    .mt-about-insurance-copy h2 { max-width: 100%; margin: 0; font-size: clamp(2.25rem, 10.7vw, 3rem); line-height: .98; letter-spacing: -.045em; overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
    .mt-about-insurance-copy > p:not(.mt-about-eyebrow) { max-width: 100%; margin-top: 17px; font-size: .94rem; line-height: 1.68; }
    .mt-about-insurance-links { width: 100%; min-width: 0; margin-top: 24px; }
    .mt-about-insurance-link { grid-template-columns: 42px minmax(0, 1fr) 22px; min-height: 108px; gap: 12px; padding: 20px 16px; }
    .mt-about-insurance-link strong { font-size: .95rem; line-height: 1.34; overflow-wrap: anywhere; }
    .mt-about-insurance-link small { margin-top: 6px; font-size: .75rem; line-height: 1.5; overflow-wrap: anywhere; }
    .mt-about-insurance-link-arrow { align-self: end; font-size: 1.15rem; }
}

@media (max-width: 420px) {
    .mt-about-insurance { padding-right: 16px; padding-left: 16px; }
    .mt-about-insurance-copy h2 { font-size: clamp(2.05rem, 10.2vw, 2.55rem); letter-spacing: -.05em; }
    .mt-about-insurance-link { grid-template-columns: 38px minmax(0, 1fr) 20px; gap: 10px; padding: 18px 14px; }
    .mt-about-insurance-link-icon { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    .mt-about-hero-number {
        animation: none;
    }

    .mt-about-trust-item,
    .mt-about-accordion-item,
    .mt-about-accordion-toggle::before,
    .mt-about-accordion-toggle::after,
    .mt-about-document-link,
    .mt-about-insurance-link,
    .mt-about-insurance-link-arrow { transition: none; }
}


/* ==========================================================================
   18. STRONA „KONTAKT” — WERSJA DOCELOWA
   ========================================================================== */

.marktur-contact {
    --contact-navy: var(--mt-color-navy, #0b2d4d);
    --contact-navy-2: var(--mt-color-navy-2, #123f68);
    --contact-orange: var(--mt-color-orange, #ff8500);
    --contact-orange-dark: var(--mt-color-orange-dark, #dc7200);
    --contact-text: var(--mt-color-text, #17283a);
    --contact-muted: var(--mt-color-muted, #5f6e7d);
    --contact-border: var(--mt-color-border, #dfe6ec);
    --contact-soft: var(--mt-color-soft, #f6f9fb);
    --contact-white: #ffffff;

    width: 100%;
    color: var(--contact-text);
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.marktur-contact *,
.marktur-contact *::before,
.marktur-contact *::after {
    box-sizing: border-box;
}

.marktur-contact__edit {
    position: relative;
    z-index: 5;
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto 12px;
    text-align: right;
}


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

.marktur-contact-hero {
    position: relative;
    width: 100vw;
    min-height: 470px;
    margin: 0 0 54px calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background-color: var(--contact-navy);
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(11, 45, 77, 0.14);
}

@media (min-width: 992px) {
    .marktur-contact-hero {
        background-attachment: fixed;
    }
}

.marktur-contact-hero--without-image {
    background:
        radial-gradient(
            circle at 84% 14%,
            rgba(255, 133, 0, 0.19),
            transparent 25%
        ),
        radial-gradient(
            circle at 72% 112%,
            rgba(255, 255, 255, 0.08),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--contact-navy-2) 0%,
            var(--contact-navy) 62%,
            #071f35 100%
        );
}

.marktur-contact-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 76% 28%,
            rgba(255, 255, 255, 0.06),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(3, 22, 39, 0.96) 0%,
            rgba(4, 29, 50, 0.86) 34%,
            rgba(4, 29, 50, 0.56) 64%,
            rgba(4, 29, 50, 0.24) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 18, 31, 0.06) 0%,
            rgba(2, 18, 31, 0.18) 58%,
            rgba(2, 18, 31, 0.58) 100%
        );
}

.marktur-contact-hero::before {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 84px;
    width: 285px;
    height: 1px;
    opacity: 0.48;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.82) 0 7px,
        transparent 7px 14px
    );
    transform: rotate(-18deg);
}

.marktur-contact-hero::after {
    content: "✉";
    position: absolute;
    right: 7%;
    bottom: 22px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 4.7rem;
    transform: rotate(-10deg);
}

.marktur-contact-hero__content {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 48px));
    min-height: 470px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 0 70px;
}

.marktur-contact-hero__eyebrow,
.marktur-contact-person__eyebrow,
.marktur-contact-form-card__eyebrow,
.marktur-contact-section-heading__eyebrow {
    margin: 0 0 11px;
    color: var(--contact-orange);
    font-size: 0.76rem;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.marktur-contact-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.3rem) !important;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.marktur-contact-hero__lead {
    max-width: 760px;
    margin: 24px 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.04rem, 1.4vw, 1.22rem);
    line-height: 1.65;
}

.marktur-contact-hero__online {
    max-width: 720px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    line-height: 1.55;
    backdrop-filter: blur(3px);
}

.marktur-contact-hero__online-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--contact-orange);
    color: #ffffff;
    font-size: 1rem;
}


/* ==========================================================================
   GŁÓWNY UKŁAD
   ========================================================================== */

.marktur-contact-main {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto 82px;
}

.marktur-contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 30px;
}


/* ==========================================================================
   KARTA WŁAŚCICIELA
   ========================================================================== */

.marktur-contact-person,
.marktur-contact-form-card {
    overflow: hidden;
    border: 1px solid var(--contact-border);
    border-radius: var(--mt-radius-feature, 16px);
    background: #ffffff;
    box-shadow:
        var(
            --mt-shadow-feature,
            0 16px 40px rgba(15, 35, 55, 0.09)
        );
}

.marktur-contact-person__image-wrap {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #e8edf1;
}

.marktur-contact-person__image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(7, 31, 53, 0.38) 0%,
        rgba(7, 31, 53, 0) 100%
    );
}

.marktur-contact-person__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.marktur-contact-person__content {
    padding: 31px 32px 32px;
}

.marktur-contact-person h2,
.marktur-contact-form-card h2,
.marktur-contact-section-heading h2 {
    margin: 0;
    color: var(--contact-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.marktur-contact-person h2,
.marktur-contact-form-card h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

.marktur-contact-person__intro {
    margin: 17px 0 26px;
    color: var(--contact-muted);
    font-size: 0.93rem;
    line-height: 1.72;
}


/* ==========================================================================
   DANE KONTAKTOWE
   ========================================================================== */

.marktur-contact-details {
    display: grid;
    gap: 12px;
}

.marktur-contact-detail {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f2;
}

.marktur-contact-detail:last-child {
    border-bottom: 0;
}

.marktur-contact-detail__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff2e3;
    color: var(--contact-orange);
    font-size: 1rem;
}

.marktur-contact-detail__content {
    min-width: 0;
}

.marktur-contact-detail__label,
.marktur-contact-detail__value {
    display: block;
}

.marktur-contact-detail__label {
    margin-bottom: 3px;
    color: #778494;
    font-size: 0.7rem;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.marktur-contact-detail a,
.marktur-contact-detail__value {
    color: var(--contact-navy);
    font-size: 0.93rem;
    line-height: 1.45;
    font-weight: 750;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.marktur-contact-detail a:hover,
.marktur-contact-detail a:focus-visible {
    color: var(--contact-orange-dark);
}


/* ==========================================================================
   KARTA „DZIAŁAMY ONLINE”
   ========================================================================== */

.marktur-contact-online-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    margin-top: 25px;
    padding: 20px;
    border: 1px solid rgba(255, 133, 0, 0.26);
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            #fff8ef 0%,
            #fffdf9 100%
        );
}

.marktur-contact-online-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--contact-navy);
    color: #ffffff;
    font-size: 1.1rem;
}

.marktur-contact-online-card h3 {
    margin: 0 0 7px;
    color: var(--contact-navy);
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 800;
}

.marktur-contact-online-card p {
    margin: 0;
    color: var(--contact-muted);
    font-size: 0.81rem;
    line-height: 1.62;
}


/* ==========================================================================
   KARTA FORMULARZA
   ========================================================================== */

.marktur-contact-form-card {
    padding: 34px 36px 38px;
}

.marktur-contact-form-card__header {
    margin-bottom: 26px;
}

.marktur-contact-form-card__header > p:last-child {
    margin: 15px 0 0;
    color: var(--contact-muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

.marktur-contact-form,
.marktur-contact-form form {
    width: 100%;
}

.marktur-contact-form__fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.marktur-contact-form__legend {
    width: 100%;
    margin: 0 0 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--contact-border);
    color: var(--contact-navy);
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 800;
}

.marktur-contact-form__fields {
    display: grid;
    gap: 18px;
}

.marktur-contact-form__field {
    min-width: 0;
}

.marktur-contact-form .control-group,
.marktur-contact-form .mb-3 {
    margin: 0 !important;
}

.marktur-contact-form .control-label {
    width: 100%;
}

.marktur-contact-form .controls {
    width: 100%;
}

.marktur-contact-form label {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--contact-navy);
    font-size: 0.79rem;
    line-height: 1.35;
    font-weight: 750;
}

.marktur-contact-form label .star,
.marktur-contact-form label .required {
    color: #c92b3a;
}


/* ==========================================================================
   POLA FORMULARZA
   ========================================================================== */

.marktur-contact-form input[type="text"],
.marktur-contact-form input[type="email"],
.marktur-contact-form input[type="tel"],
.marktur-contact-form input[type="url"],
.marktur-contact-form input[type="number"],
.marktur-contact-form input[type="password"],
.marktur-contact-form select,
.marktur-contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cfd8df;
    border-radius: 7px;
    background: #ffffff;
    color: var(--contact-text);
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.marktur-contact-form textarea {
    min-height: 165px;
    resize: vertical;
}

.marktur-contact-form input::placeholder,
.marktur-contact-form textarea::placeholder {
    color: #98a4af;
    opacity: 1;
}

.marktur-contact-form input:focus,
.marktur-contact-form select:focus,
.marktur-contact-form textarea:focus {
    outline: 0;
    border-color: var(--contact-orange);
    background: #fffdf9;
    box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.12);
}

.marktur-contact-form input.invalid,
.marktur-contact-form textarea.invalid,
.marktur-contact-form select.invalid,
.marktur-contact-form .form-control.invalid {
    border-color: #c92b3a;
}

.marktur-contact-form .form-text,
.marktur-contact-form .text-muted {
    margin-top: 6px;
    color: #7a8793 !important;
    font-size: 0.72rem;
    line-height: 1.45;
}

.marktur-contact-form .invalid-feedback,
.marktur-contact-form .form-control-feedback {
    margin-top: 6px;
    color: #b42332;
    font-size: 0.74rem;
    line-height: 1.45;
}

.marktur-contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.marktur-contact-form .form-check-input {
    margin-top: 0.2rem;
}


/* ==========================================================================
   CAPTCHA
   ========================================================================== */

.marktur-contact-form__captcha {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--contact-border);
}

.marktur-contact-form__captcha fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.marktur-contact-form__captcha iframe {
    max-width: 100%;
}


/* ==========================================================================
   PRZYCISK WYSYŁANIA
   ========================================================================== */

.marktur-contact-form__actions {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--contact-border);
}

.marktur-contact-form__submit {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--contact-orange) !important;
    border-radius: var(--mt-radius-control, 6px) !important;
    background: var(--contact-orange) !important;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow:
        var(
            --mt-shadow-button-orange,
            0 8px 20px rgba(255, 133, 0, 0.22)
        );
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.marktur-contact-form__submit:hover,
.marktur-contact-form__submit:focus-visible {
    transform: translateY(-1px);
    border-color: var(--contact-orange-dark) !important;
    background: var(--contact-orange-dark) !important;
    color: #ffffff !important;
}

.marktur-contact-form__submit:focus-visible {
    outline: 3px solid rgba(255, 133, 0, 0.34);
    outline-offset: 3px;
}

.marktur-contact-form__privacy {
    max-width: 620px;
    margin: 14px 0 0;
    color: #788594;
    font-size: 0.72rem;
    line-height: 1.55;
}


/* ==========================================================================
   KOMUNIKAT BRAKU FORMULARZA
   ========================================================================== */

.marktur-contact-form-card .alert {
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #cbdde8;
    border-radius: 8px;
    background: #f3f8fb;
    color: #31556f;
    font-size: 0.86rem;
    line-height: 1.55;
}


/* ==========================================================================
   DOLNE KAFELKI KONTAKTOWE
   ========================================================================== */

.marktur-contact-methods {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 24px;
}

.marktur-contact-section-heading {
    max-width: 830px;
    margin: 0 auto 32px;
    text-align: center;
}

.marktur-contact-section-heading h2 {
    font-size: clamp(2.35rem, 3.5vw, 3.65rem);
    line-height: 1.04;
}

.marktur-contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.marktur-contact-method-card {
    position: relative;
    min-height: 235px;
    padding: 29px 26px 27px;
    overflow: hidden;
    border: 1px solid var(--contact-border);
    border-radius: var(--mt-radius-card, 12px);
    background: #ffffff;
    box-shadow:
        var(
            --mt-shadow-card,
            0 9px 26px rgba(15, 35, 55, 0.08)
        );
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.marktur-contact-method-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 125px;
    height: 125px;
    border: 18px solid rgba(11, 45, 77, 0.035);
    border-radius: 50%;
}

.marktur-contact-method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 133, 0, 0.42);
    box-shadow:
        var(
            --mt-shadow-card-hover,
            0 16px 38px rgba(15, 35, 55, 0.13)
        );
}

.marktur-contact-method-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            #fff6eb,
            #ffead0
        );
    color: var(--contact-orange);
    font-size: 1.22rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 133, 0, 0.14);
}

.marktur-contact-method-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 11px;
    color: var(--contact-navy);
    font-size: 1.04rem;
    line-height: 1.35;
    font-weight: 800;
}

.marktur-contact-method-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--contact-muted);
    font-size: 0.84rem;
    line-height: 1.68;
}


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

@media (max-width: 1199px) {
    .marktur-contact-main__grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(0, 1.08fr);
        gap: 24px;
    }

    .marktur-contact-person__content {
        padding: 28px 26px 29px;
    }

    .marktur-contact-form-card {
        padding: 30px 29px 34px;
    }
}


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

@media (max-width: 991.98px) {
    .marktur-contact-hero {
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center 45%;
        background-size: cover;
    }

    .marktur-contact-hero__content,
    .marktur-contact-main,
    .marktur-contact-methods,
    .marktur-contact__edit {
        width: min(100% - 28px, 1380px);
    }

    .marktur-contact-main__grid {
        grid-template-columns: 1fr;
    }

    .marktur-contact-person {
        display: grid;
        grid-template-columns:
            minmax(280px, 0.78fr)
            minmax(0, 1.22fr);
    }

    .marktur-contact-person__image-wrap {
        height: 100%;
        min-height: 620px;
    }

    .marktur-contact-methods__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marktur-contact-method-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }
}


/* ==========================================================================
   TELEFON
   ========================================================================== */

@media (max-width: 767.98px) {
    .marktur-contact-hero {
        min-height: auto;
        margin-bottom: 34px;
        background-position: 58% center;
    }

    .marktur-contact-hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(3, 22, 39, 0.93) 0%,
                rgba(3, 27, 47, 0.82) 100%
            ),
            linear-gradient(
                180deg,
                rgba(2, 18, 31, 0.14) 0%,
                rgba(2, 18, 31, 0.62) 100%
            );
    }

    .marktur-contact-hero__content,
    .marktur-contact-main,
    .marktur-contact-methods,
    .marktur-contact__edit {
        width: min(100% - 24px, 1380px);
    }

    .marktur-contact-hero__content {
        min-height: 440px;
        padding: 45px 0 54px;
    }

    .marktur-contact-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem) !important;
    }

    .marktur-contact-hero__lead {
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .marktur-contact-hero__online {
        align-items: flex-start;
        font-size: 0.82rem;
    }

    .marktur-contact-main {
        margin-bottom: 62px;
    }

    .marktur-contact-person {
        display: block;
    }

    .marktur-contact-person__image-wrap {
        height: 390px;
        min-height: 0;
    }

    .marktur-contact-person__content {
        padding: 26px 20px 27px;
    }

    .marktur-contact-person h2,
    .marktur-contact-form-card h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .marktur-contact-form-card {
        padding: 27px 20px 30px;
    }

    .marktur-contact-methods__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .marktur-contact-method-card,
    .marktur-contact-method-card:last-child {
        width: 100%;
        min-height: auto;
        grid-column: auto;
    }

    .marktur-contact-section-heading {
        margin-bottom: 25px;
    }

    .marktur-contact-section-heading h2 {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }
}


/* ==========================================================================
   MAŁE TELEFONY
   ========================================================================== */

@media (max-width: 479.98px) {
    .marktur-contact-hero__content {
        min-height: 420px;
    }

    .marktur-contact-hero__online {
        padding: 12px 13px;
    }

    .marktur-contact-hero__online-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .marktur-contact-person__image-wrap {
        height: 330px;
    }

    .marktur-contact-detail {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 11px;
    }

    .marktur-contact-detail__icon {
        width: 38px;
        height: 38px;
    }

    .marktur-contact-online-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
    }

    .marktur-contact-online-card__icon {
        width: 42px;
        height: 42px;
    }

    .marktur-contact-form__submit {
        width: 100%;
    }
}


/* ==========================================================================
   OGRANICZENIE ANIMACJI
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .marktur-contact-method-card,
    .marktur-contact-form__submit {
        transition: none !important;
    }
}
/* ==========================================================================
   KONTAKT — POPRAWKA NAGŁÓWKA NA TELEFONIE
   ========================================================================== */

@media (max-width: 767.98px) {
    .marktur-contact-person h2 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.02;
        letter-spacing: -0.045em;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
    }
}

@media (max-width: 420px) {
    .marktur-contact-person h2 {
        font-size: clamp(1.9rem, 8.7vw, 2.35rem);
        letter-spacing: -0.05em;
    }
}
/* ==========================================================================
   19. STRONA „OFERTA” — HERO
   ========================================================================== */

.mt-offer-page {
    --mt-offer-navy: #071f35;
    --mt-offer-navy-light: #123f68;
    --mt-offer-orange: #ff8500;

    width: 100%;
    color: #17283a;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


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

.mt-offer-hero {
    position: relative;
    width: 100vw;
    min-height: 470px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background-color: var(--mt-offer-navy);
    background-repeat: no-repeat;
    background-position: center 48%;
    background-size: cover;
    color: #ffffff;
}

@media (min-width: 992px) {
    .mt-offer-hero {
        background-attachment: fixed;
    }
}

.mt-offer-hero--without-image {
    background:
        radial-gradient(circle at 78% 24%, rgba(255, 133, 0, 0.16), transparent 28%),
        linear-gradient(125deg, #071f35 0%, #0b2d4d 58%, #174f7a 100%);
}

.mt-offer-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 32%,
            rgba(255, 255, 255, 0.07),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            rgba(3, 22, 39, 0.97) 0%,
            rgba(4, 29, 50, 0.90) 30%,
            rgba(4, 29, 50, 0.65) 58%,
            rgba(4, 29, 50, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 18, 31, 0.06) 0%,
            rgba(2, 18, 31, 0.18) 62%,
            rgba(2, 18, 31, 0.58) 100%
        );
}

.mt-offer-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 48px));
    min-height: 470px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 56px 0 86px;
}

.mt-offer-hero-content {
    max-width: 840px;
}

.mt-offer-hero-eyebrow {
    margin: 0 0 14px;
    color: var(--mt-offer-orange);
    font-size: 0.8rem;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.mt-offer-hero-title {
    max-width: 820px;
    margin: 0;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem) !important;
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.36),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.mt-offer-hero-accent {
    width: 150px;
    height: 4px;
    margin: 1.45rem 0 1.35rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}

.mt-offer-hero-accent span {
    display: block;
    width: 66px;
    height: 100%;
    border-radius: inherit;
    background: var(--mt-offer-orange);
}

.mt-offer-hero-lead {
    max-width: 710px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.1rem, 1.65vw, 1.38rem);
    line-height: 1.55;
    font-weight: 650;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.mt-offer-hero-description {
    max-width: 780px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.91rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.mt-offer-hero-description span {
    display: inline-block;
    margin: 0 8px;
    color: var(--mt-offer-orange);
    font-weight: 800;
}

.mt-offer-hero-scroll {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 29px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    text-decoration: none !important;
    backdrop-filter: blur(3px);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.mt-offer-hero-scroll:hover,
.mt-offer-hero-scroll:focus-visible {
    transform: translateY(-2px);
    border-color: var(--mt-offer-orange);
    background: var(--mt-offer-orange);
    color: #ffffff !important;
}

.mt-offer-hero-scroll i {
    font-size: 0.9rem;
}

.mt-offer-hero-bottom-fade {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 112px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.07) 24%,
            rgba(255, 255, 255, 0.28) 48%,
            rgba(255, 255, 255, 0.72) 76%,
            #ffffff 100%
        );
}


/* ==========================================================================
   PRZEJŚCIE DO KAFELKÓW
   ========================================================================== */

.mt-offer-list {
    position: relative;
    z-index: 4;
    padding-top: 38px;
    background: transparent;
}

.mt-offer-list::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        linear-gradient(
            180deg,
            #e7ebef 0,
            #f1f4f6 34px,
            #f8f9fa 72px,
            #ffffff 125px,
            #ffffff 100%
        );
    border-top: 1px solid rgba(11, 45, 77, 0.10);
    box-shadow:
        0 -14px 30px rgba(15, 35, 55, 0.08);
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}


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

@media (max-width: 991.98px) {
    .mt-offer-hero {
        min-height: 440px;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .mt-offer-hero-inner {
        min-height: 440px;
        padding-top: 52px;
        padding-bottom: 82px;
    }
}


/* ==========================================================================
   TELEFON
   ========================================================================== */

@media (max-width: 767.98px) {
    .mt-offer-hero {
        min-height: 440px;
        background-position: 58% center;
    }

    .mt-offer-hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(3, 22, 39, 0.91) 0%,
                rgba(3, 27, 47, 0.80) 100%
            ),
            linear-gradient(
                180deg,
                rgba(2, 18, 31, 0.12) 0%,
                rgba(2, 18, 31, 0.64) 100%
            );
    }

    .mt-offer-hero-inner {
        width: min(100% - 28px, 1380px);
        min-height: 440px;
        align-items: flex-end;
        padding-top: 50px;
        padding-bottom: 88px;
    }

    .mt-offer-hero-title {
        font-size: clamp(2.8rem, 13vw, 4.15rem) !important;
    }

    .mt-offer-hero-lead {
        font-size: 1.04rem;
        line-height: 1.55;
    }

    .mt-offer-hero-description {
        font-size: 0.83rem;
        line-height: 1.62;
    }

    .mt-offer-hero-description span {
        margin-right: 5px;
        margin-left: 5px;
    }

    .mt-offer-hero-scroll {
        width: 100%;
        justify-content: center;
        margin-top: 24px;
        text-align: center;
    }

    .mt-offer-list {
        padding-top: 28px;
    }
}


/* ==========================================================================
   MAŁE TELEFONY
   ========================================================================== */

@media (max-width: 479.98px) {
    .mt-offer-hero {
        min-height: 420px;
    }

    .mt-offer-hero-inner {
        min-height: 420px;
    }

    .mt-offer-hero-title {
        font-size: clamp(2.55rem, 13.5vw, 3.55rem) !important;
    }

    .mt-offer-hero-description span {
        display: none;
    }

    .mt-offer-hero-description {
        max-width: 330px;
    }
}


/* ==========================================================================
   OGRANICZENIE ANIMACJI
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .mt-offer-hero-scroll {
        transition: none;
    }
}
/* ==========================================================================
   HERO „O NAS” I „KONTAKT” — DOLNE PRZEJŚCIE DO BIAŁEGO TŁA
   ========================================================================== */

.mt-about-hero-bottom-fade,
.marktur-contact-hero-bottom-fade {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 125px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 22%,
            rgba(255, 255, 255, 0.23) 43%,
            rgba(255, 255, 255, 0.66) 72%,
            #ffffff 100%
        );
}

@media (max-width: 767.98px) {
    .mt-about-hero-bottom-fade,
    .marktur-contact-hero-bottom-fade {
        height: 100px;
    }
}

/* ==========================================================================
   WSPÓLNA DEKORACJA HERO — SZKLANE KOŁO Z IKONĄ I PODPISEM
   ========================================================================== */

.mt-hero-orbit {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: max(5.2vw, 44px);
    width: clamp(180px, 12vw, 210px);
    aspect-ratio: 1;
    pointer-events: none;
    transform: translateY(-50%);
    will-change: transform;
}

.mt-hero-orbit__circle,
.mt-hero-orbit__ghost {
    position: absolute;
    border-radius: 50%;
}

.mt-hero-orbit__circle {
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background:
        radial-gradient(circle at 34% 24%, rgba(255,255,255,.16), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.10), rgba(8,36,59,.28));
    box-shadow:
        inset 0 0 0 14px rgba(255,255,255,.025),
        inset 0 1px 0 rgba(255,255,255,.18),
        0 18px 46px rgba(0,0,0,.22);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.mt-hero-orbit__ghost {
    width: 70%;
    height: 70%;
    top: -22%;
    right: -18%;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow:
        inset 0 0 0 22px rgba(255,255,255,.018),
        0 0 0 1px rgba(255,133,0,.035);
    opacity: .72;
    animation: mt-hero-orbit-ghost-float 15s ease-in-out infinite;
}

.mt-hero-orbit__icon {
    width: 50%;
    height: 50%;
    flex: 0 0 auto;
    overflow: visible;
    color: rgba(255,255,255,.62);
    filter: drop-shadow(0 5px 14px rgba(0,0,0,.18));
}

.mt-hero-orbit__icon * {
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mt-hero-orbit__icon .mt-hero-orbit__accent {
    fill: #ff8500;
    stroke: #ff8500;
}

.mt-hero-orbit__icon .mt-hero-orbit__accent-line {
    stroke: #ff8500;
}

.mt-hero-orbit__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 0.72rem;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.055em;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.34);
}

.mt-hero-orbit__label span {
    display: block;
}

.mt-hero-orbit--history .mt-hero-orbit__icon {
    width: 47%;
    height: 47%;
}

.mt-hero-orbit--contact .mt-hero-orbit__icon {
    width: 51%;
    height: 51%;
}

.mt-hero-orbit--offer .mt-hero-orbit__icon {
    width: 49%;
    height: 49%;
}

@keyframes mt-hero-orbit-float {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

@keyframes mt-hero-orbit-float-mobile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

@keyframes mt-about-number-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 768px) {
    .mt-hero-orbit {
        animation: mt-hero-orbit-float 8s ease-in-out infinite;
    }
}

@keyframes mt-hero-orbit-ghost-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

@media (max-width: 1199px) {
    .mt-hero-orbit {
        right: 34px;
        width: 180px;
    }
}

@media (max-width: 991.98px) {
    .mt-hero-orbit {
        top: 27%;
        right: 22px;
        width: 160px;
        opacity: .76;
    }

    .mt-hero-orbit__circle {
        gap: 6px;
        padding: 19px;
    }

    .mt-hero-orbit__label {
        font-size: 0.64rem;
    }

    .mt-hero-orbit__ghost {
        opacity: .48;
    }
}

@media (max-width: 767.98px) {
    .mt-hero-orbit {
        top: 22px;
        right: 14px;
        width: 122px;
        transform: none;
        opacity: .48;
    }

    .mt-hero-orbit__circle {
        gap: 4px;
        padding: 14px;
        animation: mt-hero-orbit-float-mobile 8s ease-in-out infinite;
        border-color: rgba(255,255,255,.34);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .mt-hero-orbit__label {
        font-size: 0.52rem;
        letter-spacing: 0.04em;
    }

    .mt-hero-orbit__ghost {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .mt-hero-orbit {
        width: 108px;
        opacity: .38;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-hero-orbit,
    .mt-hero-orbit__circle,
    .mt-hero-orbit__ghost {
        animation: none;
    }
}
/* ==========================================================================
   MARKTUR — UJEDNOLICONE, LEKKIE PRZEJŚCIE POD HERO
   Wszystkie główne podstrony przechodzą bezpośrednio do białego tła.
   ========================================================================== */

.mt-cal2-hero,
.mt-history-hero,
.mt-about-hero,
.marktur-contact-hero,
.mt-offer-hero {
    box-shadow: none !important;
}

.mt-cal2-content,
.mt-history-content,
.mt-about-content,
.marktur-contact-main,
.marktur-contact-methods,
.mt-offer-list {
    background-color: #ffffff;
}

/* Oferta: bez szarego pasa i bez cienia nad sekcją kafelków. */
.mt-offer-list::before {
    background: #ffffff !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

/* Pełna szerokość białego tła od początku właściwej treści. */
.mt-cal2-content,
.mt-history-content,
.mt-about-content,
.marktur-contact-main,
.mt-offer-list {
    position: relative;
    z-index: 4;
}

.mt-cal2-content::before,
.mt-history-content::before,
.mt-about-content::before,
.marktur-contact-main::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #ffffff;
    pointer-events: none;
}


/* ==========================================================================
   MARKTUR — KALENDARZ IMPREZ 3.0
   Trójkolumnowa karta: zdjęcie / opis / cena i działania.
   ========================================================================== */

.mt-cal2-list {
    gap: 22px;
}

.mt-cal3-card {
    min-height: 252px;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr) 270px;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--mt-cal2-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 35, 55, 0.075);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mt-cal3-card:hover {
    transform: translateY(-2px);
    border-color: #d3dce4;
    box-shadow: 0 14px 32px rgba(15, 35, 55, 0.11);
}

.mt-cal3-image {
    display: block;
    min-width: 0;
    margin: 16px 0 16px 16px;
    overflow: hidden;
    border-radius: 10px;
    background: #e9eef2;
    text-decoration: none;
}

.mt-cal3-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.mt-cal3-card:hover .mt-cal3-image img {
    transform: scale(1.025);
}

.mt-cal3-image-placeholder {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa7b3;
    font-size: 2rem;
}

.mt-cal3-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 28px;
}

.mt-cal3-date {
    margin: 0 0 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mt-cal2-navy);
    font-size: 1.06rem;
    line-height: 1.35;
    font-weight: 800;
}

.mt-cal3-date i {
    width: 22px;
    flex: 0 0 22px;
    color: #a38a17;
    font-size: 1.1rem;
    text-align: center;
}

.mt-cal3-title {
    min-height: 2.5em;
    max-height: 2.5em;
    margin: 0 0 18px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--mt-cal2-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 1.8vw, 1.72rem);
    line-height: 1.25;
    font-weight: 700;
}

.mt-cal3-title a {
    color: inherit;
    text-decoration: none;
}

.mt-cal3-title a:hover {
    color: var(--mt-cal2-orange-dark);
}

.mt-cal3-route-slot {
    min-height: 3.2em;
    max-height: 3.2em;
}

.mt-cal3-route {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #52657a;
    font-size: 0.91rem;
    line-height: 1.6;
}

.mt-cal3-route i {
    width: 20px;
    flex: 0 0 20px;
    margin-top: 4px;
    color: #a38a17;
    text-align: center;
}

.mt-cal3-route span {
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mt-cal3-side {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    padding: 22px 22px 22px 30px;
    border-left: 1px solid #e4e9ed;
}

.mt-cal3-badges {
    width: 100%;
    min-height: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 9px;
}

.mt-cal3-badges .mt-cal2-new,
.mt-cal3-badges .mt-cal2-status {
    min-height: 31px;
    padding: 7px 11px;
    border-radius: 5px;
    background: #ffffff;
    font-size: 0.67rem;
}

.mt-cal3-badges .mt-cal2-new {
    border-color: #d88a18;
    color: #c97800;
}

.mt-cal3-badges .mt-cal2-status-done {
    border-color: #7ba4bd;
    color: #5d89a5;
    background: #f8fbfd;
}

.mt-cal3-badges .mt-cal2-status-free {
    border-color: #72b989;
    color: #3a9a5c;
    background: #f8fcf9;
}

.mt-cal3-badges .mt-cal2-status-full {
    border-color: #df7a83;
    color: #d34a57;
    background: #fff9f9;
}

.mt-cal3-badges .mt-cal2-status-last {
    border-color: #d9a44c;
    color: #b97813;
    background: #fffaf2;
}

.mt-cal3-price {
    align-self: center;
    width: 100%;
    padding: 20px 0 18px;
}

.mt-cal3-price span {
    display: block;
    margin-bottom: 6px;
    color: #a38a17;
    font-size: 0.72rem;
    line-height: 1.3;
    font-weight: 600;
}

.mt-cal3-price strong {
    display: block;
    color: var(--mt-cal2-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    line-height: 1.05;
    font-weight: 700;
}

.mt-cal3-button {
    width: 100%;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 15px;
    border: 1px solid var(--mt-cal2-orange);
    border-radius: 6px;
    background: #ffffff;
    color: #c96d00 !important;
    text-decoration: none !important;
    font-size: 0.71rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.mt-cal3-button:hover,
.mt-cal3-button:focus-visible {
    transform: translateY(-1px);
    border-color: var(--mt-cal2-orange-dark);
    background: var(--mt-cal2-orange);
    color: #ffffff !important;
}

.mt-cal3-button i {
    transition: transform 0.2s ease;
}

.mt-cal3-button:hover i,
.mt-cal3-button:focus-visible i {
    transform: translateX(3px);
}


/* TABLET */

@media (max-width: 1199px) {
    .mt-cal3-card {
        grid-template-columns: 245px minmax(0, 1fr) 235px;
    }

    .mt-cal3-main {
        padding-right: 22px;
        padding-left: 22px;
    }

    .mt-cal3-side {
        padding-right: 18px;
        padding-left: 22px;
    }
}

@media (max-width: 991.98px) {
    .mt-cal3-card {
        grid-template-columns: 220px minmax(0, 1fr) 215px;
    }

    .mt-cal3-image {
        margin: 14px 0 14px 14px;
    }

    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        min-height: 205px;
    }

    .mt-cal3-main {
        padding: 18px;
    }

    .mt-cal3-title {
        font-size: 1.25rem;
    }

    .mt-cal3-route {
        font-size: 0.84rem;
    }

    .mt-cal3-side {
        padding: 18px 16px 18px 20px;
    }

    .mt-cal3-price strong {
        font-size: 1.65rem;
    }
}


/* TELEFON */

@media (max-width: 767.98px) {
    .mt-cal3-card {
        grid-template-columns: 1fr;
    }

    .mt-cal3-image {
        height: 220px;
        margin: 0;
        border-radius: 0;
    }

    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        height: 220px;
        min-height: 220px;
    }

    .mt-cal3-main {
        padding: 19px 17px 16px;
    }

    .mt-cal3-date {
        margin-bottom: 13px;
        font-size: 0.96rem;
    }

    .mt-cal3-title {
        min-height: 3.75em;
        max-height: 3.75em;
        margin-bottom: 13px;
        font-size: 1.3rem;
        -webkit-line-clamp: 3;
    }

    .mt-cal3-side {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "badges badges"
            "price button";
        gap: 15px 14px;
        align-items: end;
        padding: 15px 17px 18px;
        border-top: 1px solid #e4e9ed;
        border-left: 0;
    }

    .mt-cal3-badges {
        grid-area: badges;
        justify-content: flex-start;
    }

    .mt-cal3-price {
        grid-area: price;
        align-self: end;
        padding: 0;
    }

    .mt-cal3-price strong {
        font-size: 1.55rem;
    }

    .mt-cal3-button {
        grid-area: button;
        width: auto;
        min-width: 165px;
    }
}

@media (max-width: 479.98px) {
    .mt-cal3-image,
    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        height: 190px;
        min-height: 190px;
    }

    .mt-cal3-side {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badges"
            "price"
            "button";
    }

    .mt-cal3-button {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-cal3-card,
    .mt-cal3-image img,
    .mt-cal3-button,
    .mt-cal3-button i {
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — KALENDARZ IMPREZ 3.1
   Miesiące jako nagłówki sekcji, bez pionowej osi czasu.
   Karty wykorzystują pełną szerokość kontenera.
   ========================================================================== */

.mt-cal2-months {
    display: grid;
    gap: 48px;
}

.mt-cal2-month-section {
    min-width: 0;
}

.mt-cal2-month-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    padding: 0 2px;
}

.mt-cal2-month-marker {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    background: var(--mt-cal2-orange);
    box-shadow:
        0 5px 14px rgba(255, 133, 0, 0.24),
        0 0 0 1px rgba(255, 133, 0, 0.08);
}

.mt-cal2-month-heading h2 {
    margin: 0;
    color: var(--mt-cal2-navy);
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.mt-cal2-month-section .mt-cal2-list {
    width: 100%;
    padding-left: 0 !important;
}

/* Dawna oś czasu nie jest już używana. */
.mt-cal2-timeline::before {
    display: none !important;
}

/* Pełna szerokość i uporządkowana prawa kolumna. */
.mt-cal3-card {
    width: 100%;
    grid-template-columns: 290px minmax(0, 1fr) 265px;
}

.mt-cal3-side {
    align-items: start;
}

.mt-cal3-badges {
    justify-content: flex-start;
}

.mt-cal3-price {
    text-align: left;
}

.mt-cal3-button {
    justify-self: start;
    text-align: left;
}

/* Tytuł nadal ma dwa zarezerwowane wiersze, ale otrzymuje więcej miejsca. */
.mt-cal3-title {
    min-height: 2.5em;
    max-height: 2.5em;
    -webkit-line-clamp: 2;
}

/* TABLET */
@media (max-width: 1199px) {
    .mt-cal2-months {
        gap: 42px;
    }

    .mt-cal3-card {
        grid-template-columns: 245px minmax(0, 1fr) 235px;
    }
}

@media (max-width: 991.98px) {
    .mt-cal3-card {
        grid-template-columns: 215px minmax(0, 1fr) 210px;
    }
}

/* TELEFON */
@media (max-width: 767.98px) {
    .mt-cal2-months {
        gap: 34px;
    }

    .mt-cal2-month-heading {
        margin-bottom: 14px;
    }

    .mt-cal2-month-marker {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        border-width: 4px;
    }

    .mt-cal3-card {
        grid-template-columns: 1fr;
    }

    .mt-cal3-badges {
        justify-content: flex-start;
    }
}


/* ==========================================================================
   MARKTUR — KALENDARZ IMPREZ 3.2
   Spłaszczone karty i uporządkowana prawa kolumna.
   ========================================================================== */

.mt-cal2-list {
    gap: 18px;
}

.mt-cal3-card {
    min-height: 210px;
    grid-template-columns: 235px minmax(0, 1fr) 245px;
    border-radius: 12px;
}

.mt-cal3-image {
    height: 178px;
    min-height: 178px;
    align-self: center;
    margin: 16px 0 16px 16px;
}

.mt-cal3-image img,
.mt-cal3-image-placeholder {
    height: 178px;
    min-height: 178px;
}

.mt-cal3-main {
    justify-content: center;
    padding: 18px 24px;
}

.mt-cal3-date {
    margin-bottom: 20px;
}

.mt-cal3-title {
    margin-bottom: 16px;
}

.mt-cal3-side {
    grid-template-rows: auto auto 1px auto;
    align-content: center;
    padding: 18px 20px 18px 26px;
}

.mt-cal3-badges {
    min-height: 0;
    display: grid;
    justify-content: start;
    justify-items: start;
    gap: 7px;
    margin-bottom: 14px;
}

.mt-cal3-badges .mt-cal2-new,
.mt-cal3-badges .mt-cal2-status {
    width: auto;
    min-height: 29px;
    padding: 6px 10px;
}

.mt-cal3-price {
    align-self: auto;
    padding: 0 0 14px;
    text-align: left;
}

.mt-cal3-price span {
    margin-bottom: 5px;
}

.mt-cal3-price strong {
    font-size: 2.35rem;
}

.mt-cal3-side::after {
    content: "";
    width: 100%;
    height: 1px;
    margin-bottom: 14px;
    background: #e5eaee;
}

.mt-cal3-button {
    width: 100%;
    min-height: 42px;
    padding: 8px 14px;
    border-width: 1px;
    border-radius: 7px;
    justify-self: stretch;
}

@media (max-width: 1199px) {
    .mt-cal3-card {
        grid-template-columns: 215px minmax(0, 1fr) 225px;
    }

    .mt-cal3-image,
    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        height: 166px;
        min-height: 166px;
    }

    .mt-cal3-main {
        padding-right: 20px;
        padding-left: 20px;
    }

    .mt-cal3-side {
        padding-right: 16px;
        padding-left: 20px;
    }
}

@media (max-width: 991.98px) {
    .mt-cal3-card {
        grid-template-columns: 190px minmax(0, 1fr) 205px;
    }

    .mt-cal3-image,
    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        height: 154px;
        min-height: 154px;
    }

    .mt-cal3-main {
        padding: 16px 17px;
    }

    .mt-cal3-date {
        margin-bottom: 14px;
    }

    .mt-cal3-title {
        margin-bottom: 12px;
    }

    .mt-cal3-side {
        padding: 16px 14px 16px 18px;
    }

    .mt-cal3-price strong {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .mt-cal3-card {
        grid-template-columns: 1fr;
    }

    .mt-cal3-image {
        width: 100%;
        height: 210px;
        min-height: 210px;
        margin: 0;
    }

    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        height: 210px;
        min-height: 210px;
    }

    .mt-cal3-side {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        grid-template-areas:
            "badges badges"
            "price button";
        gap: 14px 16px;
        padding: 15px 17px 18px;
    }

    .mt-cal3-badges {
        grid-area: badges;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .mt-cal3-price {
        grid-area: price;
        padding: 0;
    }

    .mt-cal3-side::after {
        display: none;
    }

    .mt-cal3-button {
        grid-area: button;
        width: auto;
        min-width: 165px;
        justify-self: end;
    }
}

@media (max-width: 479.98px) {
    .mt-cal3-image,
    .mt-cal3-image img,
    .mt-cal3-image-placeholder {
        height: 185px;
        min-height: 185px;
    }

    .mt-cal3-side {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badges"
            "price"
            "button";
    }

    .mt-cal3-button {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }
}


/* ==========================================================================
   MARKTUR — KALENDARZ IMPREZ 3.3
   Finalna korekta prawego panelu karty.
   ========================================================================== */

.mt-cal3-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mt-cal3-badges {
    width: 100%;
    margin-bottom: 12px;
}

.mt-cal3-price {
    width: 100%;
    padding: 0 0 11px;
}

.mt-cal3-price span {
    margin-bottom: 2px;
}

.mt-cal3-side::after {
    width: 100%;
    margin-bottom: 11px;
}

.mt-cal3-button {
    width: auto;
    min-width: 175px;
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.66rem;
    border-radius: 6px;
}

@media (max-width: 991.98px) {
    .mt-cal3-button {
        min-width: 160px;
    }
}

@media (max-width: 767.98px) {
    .mt-cal3-side {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "badges badges"
            "price button";
        gap: 14px 16px;
        align-items: end;
    }

    .mt-cal3-badges {
        grid-area: badges;
        margin-bottom: 0;
    }

    .mt-cal3-price {
        grid-area: price;
        padding: 0;
    }

    .mt-cal3-side::after {
        display: none;
    }

    .mt-cal3-button {
        grid-area: button;
        min-width: 150px;
        justify-self: end;
    }
}

@media (max-width: 479.98px) {
    .mt-cal3-side {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badges"
            "price"
            "button";
    }

    .mt-cal3-button {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }
}


/* ==========================================================================
   MARKTUR — OFERTA: SEKCJA KORZYŚCI I OPINII
   ========================================================================== */

.mt-offer-benefits,
.mt-offer-opinions {
    position: relative;
    width: min(100% - 3rem, 1380px);
    margin-right: auto;
    margin-left: auto;
}

.mt-offer-benefits {
    padding: 86px 0 78px;
}

.mt-offer-opinions {
    padding: 78px 0 92px;
}

.mt-offer-section-heading {
    width: min(100%, 760px);
    margin: 0 auto 38px;
    text-align: center;
}

.mt-offer-section-eyebrow {
    margin: 0 0 10px;
    color: #a38a17;
    font-size: 0.73rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mt-offer-section-heading h2 {
    margin: 0;
    color: #0b2f53;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    line-height: 1.12;
    font-weight: 700;
}

.mt-offer-section-heading > p:last-child {
    margin: 16px auto 0;
    color: #5d6e7f;
    font-size: 1rem;
    line-height: 1.75;
}

.mt-offer-benefits::before,
.mt-offer-opinions::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 50%;
    width: 100vw;
    transform: translateX(-50%);
    pointer-events: none;
}

.mt-offer-benefits::before {
    background:
        radial-gradient(circle at 10% 12%, rgba(163, 138, 23, 0.07), transparent 26%),
        radial-gradient(circle at 92% 80%, rgba(11, 47, 83, 0.05), transparent 28%),
        #ffffff;
}

.mt-offer-opinions::before {
    background:
        linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    border-top: 1px solid rgba(11, 47, 83, 0.07);
}

.mt-offer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mt-offer-benefit-card {
    min-height: 230px;
    padding: 28px 26px 26px;
    border: 1px solid #e1e7ec;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(15, 35, 55, 0.06);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mt-offer-benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(163, 138, 23, 0.32);
    box-shadow: 0 16px 34px rgba(15, 35, 55, 0.10);
}

.mt-offer-benefit-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(163, 138, 23, 0.28);
    border-radius: 50%;
    background: rgba(163, 138, 23, 0.07);
    color: #a38a17;
    font-size: 1.35rem;
}

.mt-offer-benefit-card h3 {
    margin: 0 0 10px;
    color: #0b2f53;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
}

.mt-offer-benefit-card p {
    margin: 0;
    color: #5d6e7f;
    font-size: 0.91rem;
    line-height: 1.7;
}

.mt-offer-opinions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mt-offer-opinion-card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 34px 28px 26px;
    overflow: hidden;
    border: 1px solid #dfe6eb;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 35, 55, 0.065);
}

.mt-offer-opinion-quote {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #a38a17;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.4rem;
    line-height: 1;
    opacity: 0.22;
}

.mt-offer-opinion-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #30465b;
    font-size: 0.98rem;
    line-height: 1.75;
    font-style: italic;
}

.mt-offer-opinion-card footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #e9edf0;
}

.mt-offer-opinion-card footer strong,
.mt-offer-opinion-card footer span {
    display: block;
}

.mt-offer-opinion-card footer strong {
    color: #0b2f53;
    font-size: 0.92rem;
    line-height: 1.35;
}

.mt-offer-opinion-card footer span {
    margin-top: 3px;
    color: #7a8792;
    font-size: 0.78rem;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .mt-offer-benefits,
    .mt-offer-opinions {
        width: min(100% - 2rem, 1380px);
    }

    .mt-offer-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-offer-opinions-grid {
        grid-template-columns: 1fr;
    }

    .mt-offer-opinion-card {
        min-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .mt-offer-benefits {
        padding: 64px 0 58px;
    }

    .mt-offer-opinions {
        padding: 58px 0 70px;
    }

    .mt-offer-section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .mt-offer-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mt-offer-benefit-card {
        min-height: 0;
        padding: 24px 22px;
    }

    .mt-offer-opinions-grid {
        gap: 16px;
    }

    .mt-offer-opinion-card {
        min-height: 0;
        padding: 30px 22px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-offer-benefit-card {
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — POLITYKA PRYWATNOŚCI
   Dedykowany widok długiego dokumentu prawnego.
   ========================================================================== */

.mt-policy-page {
    --mt-policy-navy: #0b2d4d;
    --mt-policy-navy-2: #123f68;
    --mt-policy-gold: #a38a17;
    --mt-policy-text: #26394c;
    --mt-policy-muted: #657485;
    --mt-policy-border: #dfe6ec;
    --mt-policy-soft: #f6f8fa;

    width: 100%;
    color: var(--mt-policy-text);
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.mt-policy-page *,
.mt-policy-page *::before,
.mt-policy-page *::after {
    box-sizing: border-box;
}

.mt-policy-edit {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto 12px;
    text-align: right;
}


/* NISKI HERO */

.mt-policy-hero {
    position: relative;
    width: 100vw;
    min-height: 245px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(163, 138, 23, 0.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 64% 116%,
            rgba(255, 255, 255, 0.08),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #123f68 0%,
            #0b2d4d 63%,
            #071f35 100%
        );
    color: #ffffff;
}

.mt-policy-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 56px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.16) 42%,
        rgba(255, 255, 255, 0.72) 78%,
        #ffffff 100%
    );
}

.mt-policy-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 48px));
    min-height: 245px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
    padding: 34px 220px 52px 0;
}

.mt-policy-hero__copy {
    min-width: 0;
}

.mt-policy-hero__eyebrow {
    margin: 0 0 8px;
    color: var(--mt-policy-gold);
    font-size: 0.73rem;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mt-policy-hero h1 {
    margin: 0;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 4.2vw, 4rem) !important;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.mt-policy-hero__date {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.5;
}

.mt-policy-hero__date strong {
    color: #ffffff;
}

.mt-policy-pdf-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.74rem;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    backdrop-filter: blur(4px);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.mt-policy-pdf-button:hover,
.mt-policy-pdf-button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--mt-policy-gold);
    background: var(--mt-policy-gold);
    color: #ffffff !important;
}

.mt-policy-hero__decor {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: max(6vw, 44px);
    width: 150px;
    height: 150px;
    transform: translateY(-50%);
    pointer-events: none;
}

.mt-policy-hero__decor-circle {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 34% 24%,
            rgba(255, 255, 255, 0.15),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.065);
    box-shadow:
        inset 0 0 0 12px rgba(255, 255, 255, 0.022),
        0 16px 36px rgba(0, 0, 0, 0.18);
    color: #ffffff;
    text-align: center;
    animation: mt-policy-decor-float 8s ease-in-out infinite;
}

.mt-policy-hero__decor-circle i {
    color: var(--mt-policy-gold);
    font-size: 2.05rem;
}

.mt-policy-hero__decor-circle span {
    color: #ffffff;
    font-size: 0.62rem;
    line-height: 1.32;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

@keyframes mt-policy-decor-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* GŁÓWNY UKŁAD */

.mt-policy-layout {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 52px;
    padding: 44px 0 72px;
}

.mt-policy-sidebar {
    min-width: 0;
}

.mt-policy-sidebar__inner {
    position: sticky;
    top: 112px;
    padding: 22px 18px 18px;
    border: 1px solid var(--mt-policy-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 9px 26px rgba(15, 35, 55, 0.07);
}

.mt-policy-sidebar__label {
    margin: 0 0 13px;
    padding: 0 7px 12px;
    border-bottom: 1px solid #e7ebee;
    color: var(--mt-policy-gold);
    font-size: 0.69rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.mt-policy-nav {
    display: grid;
    gap: 2px;
}

.mt-policy-nav a {
    position: relative;
    display: block;
    padding: 8px 9px 8px 15px;
    border-radius: 6px;
    color: #59697a;
    text-decoration: none;
    font-size: 0.74rem;
    line-height: 1.45;
    font-weight: 620;
    transition:
        color 0.18s ease,
        background-color 0.18s ease;
}

.mt-policy-nav a::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 4px;
    width: 2px;
    border-radius: 2px;
    background: transparent;
}

.mt-policy-nav a:hover {
    color: var(--mt-policy-navy);
    background: #f6f8fa;
}

.mt-policy-nav a.is-active {
    color: var(--mt-policy-navy);
    background: rgba(163, 138, 23, 0.08);
    font-weight: 800;
}

.mt-policy-nav a.is-active::before {
    background: var(--mt-policy-gold);
}

.mt-policy-sidebar__pdf {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 9px 12px;
    border: 1px solid var(--mt-policy-navy);
    border-radius: 6px;
    background: var(--mt-policy-navy);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.72rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.mt-policy-sidebar__pdf:hover {
    border-color: var(--mt-policy-gold);
    background: var(--mt-policy-gold);
}


/* TREŚĆ DOKUMENTU */

.mt-policy-document {
    min-width: 0;
    max-width: 920px;
    padding: 34px 42px 48px;
    border: 1px solid var(--mt-policy-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 35, 55, 0.065);
}

.mt-policy-document h2,
.mt-policy-document h3 {
    scroll-margin-top: 126px;
    color: var(--mt-policy-navy);
}

.mt-policy-document h2 {
    margin: 3.2rem 0 1.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e5eaee;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.mt-policy-document > h2:first-child {
    margin-top: 0;
}

.mt-policy-document h3 {
    margin: 2rem 0 0.8rem;
    font-size: 1.08rem;
    line-height: 1.4;
    font-weight: 800;
}

.mt-policy-document p {
    margin: 0 0 1rem;
    color: var(--mt-policy-text);
    font-size: 0.91rem;
    line-height: 1.78;
}

.mt-policy-document ul,
.mt-policy-document ol {
    margin: 0.3rem 0 1.25rem;
    padding-left: 1.45rem;
}

.mt-policy-document li {
    margin-bottom: 0.55rem;
    padding-left: 0.3rem;
    color: var(--mt-policy-text);
    font-size: 0.9rem;
    line-height: 1.72;
}

.mt-policy-document li::marker {
    color: var(--mt-policy-gold);
}

.mt-policy-document a {
    color: var(--mt-policy-navy-2);
    text-decoration-color: var(--mt-policy-gold);
    text-underline-offset: 3px;
}

.mt-policy-document strong {
    color: var(--mt-policy-navy);
}

.mt-policy-document blockquote {
    margin: 1.5rem 0;
    padding: 17px 20px;
    border-left: 4px solid var(--mt-policy-gold);
    border-radius: 0 8px 8px 0;
    background: #fbfaf3;
    color: #455669;
}


/* TABLET */

@media (max-width: 991.98px) {
    .mt-policy-hero__inner,
    .mt-policy-layout,
    .mt-policy-edit {
        width: min(100% - 28px, 1380px);
    }

    .mt-policy-hero__inner {
        padding-right: 170px;
    }

    .mt-policy-hero__decor {
        right: 20px;
        width: 128px;
        height: 128px;
        opacity: 0.72;
    }

    .mt-policy-layout {
        grid-template-columns: 225px minmax(0, 1fr);
        gap: 35px;
    }

    .mt-policy-sidebar__inner {
        top: 98px;
    }

    .mt-policy-document {
        padding: 30px 30px 42px;
    }
}


/* TELEFON */

@media (max-width: 767.98px) {
    .mt-policy-hero {
        min-height: 260px;
    }

    .mt-policy-hero__inner,
    .mt-policy-layout,
    .mt-policy-edit {
        width: min(100% - 24px, 1380px);
    }

    .mt-policy-hero__inner {
        min-height: 260px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 18px;
        padding: 35px 92px 48px 0;
    }

    .mt-policy-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3rem) !important;
    }

    .mt-policy-pdf-button {
        width: fit-content;
        min-height: 42px;
        padding: 9px 12px;
        font-size: 0.66rem;
    }

    .mt-policy-hero__decor {
        top: 26px;
        right: 10px;
        width: 86px;
        height: 86px;
        transform: none;
        opacity: 0.48;
    }

    .mt-policy-hero__decor-circle i {
        font-size: 1.35rem;
    }

    .mt-policy-hero__decor-circle span {
        display: none;
    }

    .mt-policy-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 28px;
        padding-bottom: 52px;
    }

    .mt-policy-sidebar__inner {
        position: static;
        padding: 17px 14px;
    }

    .mt-policy-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .mt-policy-nav a {
        padding: 8px 8px 8px 12px;
        font-size: 0.68rem;
    }

    .mt-policy-document {
        max-width: none;
        padding: 25px 19px 34px;
    }

    .mt-policy-document h2,
    .mt-policy-document h3 {
        scroll-margin-top: 98px;
    }

    .mt-policy-document h2 {
        margin-top: 2.65rem;
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .mt-policy-document h3 {
        margin-top: 1.7rem;
        font-size: 1rem;
    }

    .mt-policy-document p,
    .mt-policy-document li {
        font-size: 0.87rem;
        line-height: 1.72;
    }
}

@media (max-width: 479.98px) {
    .mt-policy-nav {
        grid-template-columns: 1fr;
    }

    .mt-policy-pdf-button span {
        max-width: 170px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-policy-hero__decor-circle,
    .mt-policy-pdf-button {
        animation: none;
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — POLITYKA PRYWATNOŚCI 1.1
   Ukrycie automatycznej prezentacji pól, pewny sticky i przycisk „Do góry”.
   ========================================================================== */

/*
 * Pola dodatkowe są pobierane przez PHP i używane w Hero.
 * Nie powinny być ponownie drukowane przez standardowy renderer Joomla.
 */
.mt-policy-page .fields-container,
.mt-policy-page .com-content-article__info,
.mt-policy-page dl.fields-container {
    display: none !important;
}

/*
 * Sticky ustawiamy na całej kolumnie bocznej.
 * To jest odporniejsze niż pozycjonowanie wyłącznie elementu wewnętrznego.
 */
.mt-policy-page,
.mt-policy-layout {
    overflow: visible !important;
}

.mt-policy-sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
    max-height: calc(100vh - 126px);
}

.mt-policy-sidebar__inner {
    position: static;
    max-height: calc(100vh - 126px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 45, 77, 0.28) transparent;
}

.mt-policy-sidebar__inner::-webkit-scrollbar {
    width: 7px;
}

.mt-policy-sidebar__inner::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(11, 45, 77, 0.25);
}

.mt-policy-sidebar__inner::-webkit-scrollbar-track {
    background: transparent;
}


/* PŁYWAJĄCY PRZYCISK „DO GÓRY” */

.mt-policy-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 1025;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(163, 138, 23, 0.72);
    border-radius: 999px;
    background: rgba(11, 45, 77, 0.94);
    color: #ffffff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    box-shadow: 0 10px 28px rgba(7, 31, 53, 0.24);
    backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.mt-policy-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mt-policy-back-to-top:hover,
.mt-policy-back-to-top:focus-visible {
    border-color: #a38a17;
    background: #a38a17;
    color: #ffffff;
}

.mt-policy-back-to-top:focus-visible {
    outline: 3px solid rgba(163, 138, 23, 0.25);
    outline-offset: 3px;
}

.mt-policy-back-to-top i {
    font-size: 0.82rem;
}

@media (max-width: 991.98px) {
    .mt-policy-sidebar {
        top: 94px;
        max-height: calc(100vh - 110px);
    }

    .mt-policy-sidebar__inner {
        max-height: calc(100vh - 110px);
    }
}

@media (max-width: 767.98px) {
    .mt-policy-sidebar {
        position: static;
        max-height: none;
    }

    .mt-policy-sidebar__inner {
        max-height: none;
        overflow: visible;
    }

    .mt-policy-back-to-top {
        right: 14px;
        bottom: 18px;
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
    }

    .mt-policy-back-to-top span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-policy-back-to-top {
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — DOKUMENTY PRAWNE 2.0
   Wspólna typografia i panel podsumowania Polityki Cookies.
   ========================================================================== */

/*
 * Dokumenty prawne mają spokojniejszą typografię niż podstrony
 * marketingowe. Odstępy między akapitami pozostają bez zmian.
 */
.mt-policy-document h2 {
    color: #37414b;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 1.18rem;
    line-height: 1.38;
    font-weight: 800;
    letter-spacing: -0.012em;
}

.mt-policy-document h3 {
    color: #37414b;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 800;
}


/* PANEL PODSUMOWANIA POLITYKI COOKIES */

.mt-cookie-summary {
    margin: 0 0 34px;
    padding: 25px 26px 27px;
    border: 1px solid rgba(163, 138, 23, 0.28);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(163, 138, 23, 0.08),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #fffdf7 0%,
            #ffffff 100%
        );
}

.mt-cookie-summary__eyebrow {
    margin: 0 0 6px !important;
    color: #a38a17 !important;
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.mt-cookie-summary h2 {
    margin: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 1.16rem !important;
}

.mt-cookie-summary__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mt-cookie-summary__item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid #e2e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.mt-cookie-summary__item span,
.mt-cookie-summary__item strong {
    display: block;
}

.mt-cookie-summary__item span {
    color: #37414b;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 750;
}

.mt-cookie-summary__item strong {
    font-size: 0.68rem;
    line-height: 1.35;
    font-weight: 800;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.mt-cookie-summary__item.is-used strong {
    color: #318352;
}

.mt-cookie-summary__item.is-not-used strong {
    color: #78848e;
}


/* ODRĘBNA IKONA DLA POLITYKI COOKIES */

.mt-policy-page--cookies
.mt-policy-hero__decor-circle i {
    color: #a38a17;
}


/* TABLET I TELEFON */

@media (max-width: 767.98px) {
    .mt-policy-document h2 {
        font-size: 1.08rem;
        line-height: 1.42;
    }

    .mt-policy-document h3 {
        font-size: 0.96rem;
    }

    .mt-cookie-summary {
        padding: 21px 18px 22px;
    }

    .mt-cookie-summary__grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   MARKTUR — INSTRUKCJA OBSŁUGI SERWISU
   Prywatna dokumentacja administratora.
   ========================================================================== */

.mt-admin-guide,
.mt-admin-guide-layout {
    overflow: visible !important;
}

.mt-admin-guide {
    --guide-gold: #a38a17;
    --guide-graphite: #37414b;
    --guide-border: #dfe5e9;
    --guide-soft: #f5f7f8;
    color: #3f4850;
}

.mt-admin-guide__edit {
    position: relative;
    z-index: 5;
}

.mt-admin-guide-hero {
    position: relative;
    min-height: 285px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-inline: calc(50% - 50vw);
    padding: 58px max(24px, calc((100vw - 1180px) / 2));
    background:
        radial-gradient(
            circle at 78% 24%,
            rgba(163, 138, 23, 0.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f7f8f9 0%,
            #ffffff 52%,
            #f3f5f6 100%
        );
    border-bottom: 1px solid #e4e8eb;
}

.mt-admin-guide-hero__inner {
    position: relative;
    z-index: 2;
    width: min(760px, 70%);
}

.mt-admin-guide-hero__eyebrow {
    margin: 0 0 10px;
    color: var(--guide-gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mt-admin-guide-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--guide-graphite);
    font-size: clamp(2rem, 4.3vw, 3.55rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.mt-admin-guide-hero__lead {
    max-width: 680px;
    margin: 20px 0 0;
    color: #65717a;
    font-size: 1rem;
    line-height: 1.72;
}

.mt-admin-guide-hero__decor {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: max(28px, calc((100vw - 1120px) / 2));
    width: 190px;
    height: 190px;
    transform: translateY(-50%);
}

.mt-admin-guide-hero__ghost {
    position: absolute;
    inset: -34px;
    border: 1px solid rgba(163, 138, 23, 0.14);
    border-radius: 50%;
}

.mt-admin-guide-hero__circle {
    position: absolute;
    inset: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(163, 138, 23, 0.56);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 55px rgba(47, 57, 65, 0.09);
    color: var(--guide-gold);
    text-align: center;
    animation: mtAdminGuideFloat 5.2s ease-in-out infinite;
}

.mt-admin-guide-hero__circle i {
    font-size: 2.25rem;
}

.mt-admin-guide-hero__circle span {
    color: var(--guide-graphite);
    font-size: 0.65rem;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: 0.095em;
}

@keyframes mtAdminGuideFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.mt-admin-guide-layout {
    width: min(1180px, calc(100% - 38px));
    display: grid;
    grid-template-columns: minmax(225px, 275px) minmax(0, 1fr);
    gap: 46px;
    margin: 42px auto 70px;
    align-items: start;
}

.mt-admin-guide-sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
    max-height: calc(100vh - 126px);
}

.mt-admin-guide-sidebar__inner {
    max-height: calc(100vh - 126px);
    overflow-y: auto;
    padding: 20px 12px 20px 18px;
    border: 1px solid var(--guide-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(37, 48, 57, 0.06);
    scrollbar-width: thin;
    scrollbar-color: rgba(55, 65, 75, 0.25) transparent;
}

.mt-admin-guide-sidebar__label {
    margin: 0 8px 12px;
    color: var(--guide-gold);
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.mt-admin-guide-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mt-admin-guide-nav a {
    display: block;
    border-left: 2px solid transparent;
    border-radius: 0 7px 7px 0;
    color: #68737c;
    text-decoration: none;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.mt-admin-guide-nav__h2 {
    padding: 8px 9px;
    font-size: 0.79rem;
    line-height: 1.35;
    font-weight: 780;
}

.mt-admin-guide-nav__h3 {
    padding: 5px 9px 5px 21px;
    font-size: 0.71rem;
    line-height: 1.35;
    font-weight: 620;
}

.mt-admin-guide-nav a:hover,
.mt-admin-guide-nav a.is-active {
    border-left-color: var(--guide-gold);
    background: rgba(163, 138, 23, 0.08);
    color: var(--guide-graphite);
}

.mt-admin-guide-document {
    min-width: 0;
}

.mt-admin-guide-intro {
    margin: 0 0 34px;
    padding: 22px 24px;
    border: 1px solid rgba(163, 138, 23, 0.25);
    border-radius: 11px;
    background: #fffdf7;
}

.mt-admin-guide-intro__eyebrow {
    margin: 0 0 7px !important;
    color: var(--guide-gold) !important;
    font-size: 0.68rem !important;
    font-weight: 850 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mt-admin-guide-intro p:last-child {
    margin-bottom: 0;
}

.mt-admin-guide-document h2 {
    margin: 52px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e7ea;
    color: var(--guide-graphite);
    font-size: 1.55rem;
    line-height: 1.25;
    font-weight: 850;
    scroll-margin-top: 112px;
}

.mt-admin-guide-document h2:first-of-type {
    margin-top: 0;
}

.mt-admin-guide-document h3 {
    margin: 31px 0 11px;
    color: var(--guide-graphite);
    font-size: 1.06rem;
    line-height: 1.4;
    font-weight: 800;
    scroll-margin-top: 112px;
}

.mt-admin-guide-document p,
.mt-admin-guide-document li {
    font-size: 0.94rem;
    line-height: 1.72;
}

.mt-admin-guide-document ul,
.mt-admin-guide-document ol {
    margin-bottom: 18px;
}

.mt-admin-guide-document code {
    padding: 2px 5px;
    border-radius: 4px;
    background: #eef1f3;
    color: #39444c;
    font-size: 0.86em;
    overflow-wrap: anywhere;
}

.mt-admin-guide-note,
.mt-admin-guide-warning,
.mt-admin-guide-tech,
.mt-admin-guide-file {
    margin: 14px 0 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.62;
}

.mt-admin-guide-note {
    border-left: 3px solid #4a86a8;
    background: #f2f8fb;
}

.mt-admin-guide-warning {
    border-left: 3px solid #c58b25;
    background: #fff8e9;
}

.mt-admin-guide-tech {
    border-left: 3px solid #7d8991;
    background: #f4f6f7;
}

.mt-admin-guide-file {
    border: 1px solid var(--guide-border);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 48, 57, 0.045);
}

.mt-admin-guide-file p {
    margin: 8px 0 0;
}

.mt-admin-guide-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 1025;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(163, 138, 23, 0.72);
    border-radius: 999px;
    background: rgba(55, 65, 75, 0.95);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    box-shadow: 0 10px 28px rgba(37, 48, 57, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

.mt-admin-guide-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mt-admin-guide-back-to-top:hover,
.mt-admin-guide-back-to-top:focus-visible {
    background: var(--guide-gold);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .mt-admin-guide-layout {
        grid-template-columns: minmax(200px, 235px) minmax(0, 1fr);
        gap: 28px;
    }

    .mt-admin-guide-sidebar {
        top: 94px;
        max-height: calc(100vh - 110px);
    }

    .mt-admin-guide-sidebar__inner {
        max-height: calc(100vh - 110px);
    }
}

@media (max-width: 767.98px) {
    .mt-admin-guide-hero {
        min-height: 315px;
        padding: 44px 22px 122px;
    }

    .mt-admin-guide-hero__inner {
        width: 100%;
    }

    .mt-admin-guide-hero__decor {
        top: auto;
        right: 22px;
        bottom: 14px;
        width: 105px;
        height: 105px;
        transform: none;
    }

    .mt-admin-guide-hero__ghost {
        inset: -17px;
    }

    .mt-admin-guide-hero__circle {
        inset: 4px;
    }

    .mt-admin-guide-hero__circle i {
        font-size: 1.35rem;
    }

    .mt-admin-guide-hero__circle span {
        font-size: 0.5rem;
    }

    .mt-admin-guide-layout {
        width: min(100% - 28px, 760px);
        display: block;
        margin-top: 26px;
    }

    .mt-admin-guide-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 28px;
    }

    .mt-admin-guide-sidebar__inner {
        max-height: 52vh;
    }

    .mt-admin-guide-document h2 {
        font-size: 1.36rem;
        scroll-margin-top: 92px;
    }

    .mt-admin-guide-document h3 {
        scroll-margin-top: 92px;
    }

    .mt-admin-guide-back-to-top {
        right: 14px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        border-radius: 50%;
    }

    .mt-admin-guide-back-to-top span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-admin-guide-hero__circle,
    .mt-admin-guide-back-to-top {
        animation: none;
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — INSTRUKCJA SERWISU 2.0
   Bloki powiązań i wpływu zmian.
   ========================================================================== */

.mt-admin-guide-relations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 30px;
    padding: 18px;
    border: 1px solid #dfe5e9;
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            #fafbfc 0%,
            #ffffff 100%
        );
    box-shadow: 0 8px 24px rgba(37, 48, 57, 0.045);
}

.mt-admin-guide-relations__title {
    grid-column: 1 / -1;
    margin: 0 0 1px !important;
    color: #a38a17 !important;
    font-size: 0.69rem !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.mt-admin-guide-relations__group,
.mt-admin-guide-relations__impact {
    min-width: 0;
    padding: 12px 13px;
    border-radius: 7px;
    background: #f4f6f7;
}

.mt-admin-guide-relations__impact {
    background: #f2f8fb;
    border-left: 3px solid #4a86a8;
}

.mt-admin-guide-relations__group > strong,
.mt-admin-guide-relations__impact > strong {
    display: block;
    margin-bottom: 7px;
    color: #37414b;
    font-size: 0.76rem;
    line-height: 1.35;
    font-weight: 820;
}

.mt-admin-guide-relations ul {
    margin: 0;
    padding-left: 17px;
}

.mt-admin-guide-relations li {
    margin: 3px 0;
    font-size: 0.78rem;
    line-height: 1.5;
}

.mt-admin-guide-relations code {
    padding: 1px 4px;
    font-size: 0.8em;
}

.mt-admin-guide-relations__warning {
    grid-column: 1 / -1;
    padding: 12px 14px;
    border-left: 3px solid #c58b25;
    border-radius: 6px;
    background: #fff8e9;
    color: #5b5140;
    font-size: 0.82rem;
    line-height: 1.58;
}

@media (max-width: 767.98px) {
    .mt-admin-guide-relations {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .mt-admin-guide-relations__title,
    .mt-admin-guide-relations__warning {
        grid-column: 1;
    }
}


/* ==========================================================================
   MARKTUR — OFERTA I HISTORIA: LŻEJSZE KAFELKI 1.0
   ========================================================================== */

.mt-offers-grid,
.mt-history-grid,
.mt-history-year-page-grid {
    gap: 48px 43px;
}

.mt-offer-page .mt-card,
.mt-history .mt-card,
.mt-history-year-page .mt-card {
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(15, 35, 55, 0.085);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.mt-offer-page .mt-card-image,
.mt-history .mt-card-image,
.mt-history-year-page .mt-card-image {
    filter:
        brightness(1.08)
        saturate(0.98)
        contrast(0.99);
    transition:
        transform 0.32s ease,
        filter 0.32s ease;
}

.mt-offer-page .mt-card-image-wrap::after,
.mt-history .mt-card-image-wrap::after,
.mt-history-year-page .mt-card-image-wrap::after {
    height: 47%;
    background:
        linear-gradient(
            to top,
            rgba(4, 18, 30, 0.94) 0%,
            rgba(4, 18, 30, 0.78) 30%,
            rgba(4, 18, 30, 0.42) 67%,
            rgba(4, 18, 30, 0) 100%
        );
}

.mt-offer-page .mt-card:hover,
.mt-offer-page .mt-card:focus-within,
.mt-history .mt-card:hover,
.mt-history .mt-card:focus-within,
.mt-history-year-page .mt-card:hover,
.mt-history-year-page .mt-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 35, 55, 0.14);
}

.mt-offer-page .mt-card:hover .mt-card-image,
.mt-offer-page .mt-card:focus-within .mt-card-image,
.mt-history .mt-card:hover .mt-card-image,
.mt-history .mt-card:focus-within .mt-card-image,
.mt-history-year-page .mt-card:hover .mt-card-image,
.mt-history-year-page .mt-card:focus-within .mt-card-image {
    filter:
        brightness(0.98)
        saturate(1.01)
        contrast(1.02);
    transform: scale(1.025);
}

.mt-history .mt-card-badge,
.mt-history-year-page .mt-card-badge {
    display: none !important;
}

@media (max-width: 1199px) {
    .mt-offers-grid,
    .mt-history-grid,
    .mt-history-year-page-grid {
        gap: 28px;
    }
}

@media (max-width: 767.98px) {
    .mt-offers-grid,
    .mt-history-grid,
    .mt-history-year-page-grid {
        gap: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-offer-page .mt-card,
    .mt-history .mt-card,
    .mt-history-year-page .mt-card,
    .mt-offer-page .mt-card-image,
    .mt-history .mt-card-image,
    .mt-history-year-page .mt-card-image {
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — OFERTA: WERSJA WIZUALNA 2.0
   - nagłówek „Aktualnie w ofercie” nad kafelkami,
   - zachowanie obecnych rozmiarów i odstępów kafelków wycieczek,
   - mniejsze uniesienie kafelków po najechaniu,
   - kompaktowe kafelki korzyści,
   - dopracowane karty opinii.
   ========================================================================== */

/* Nagłówek nad kafelkami wycieczek. */
.mt-offer-page .mt-offers {
    position: relative;
    padding-top: 118px;
}

.mt-offer-page .mt-offers::before {
    content: "AKTUALNIE W OFERCIE";
    position: absolute;
    top: 42px;
    left: 24px;
    color: #0b2f53;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.mt-offer-page .mt-offers::after {
    content: "Sprawdź nasze najnowsze propozycje i wybierz swoją kolejną podróż.";
    position: absolute;
    top: 74px;
    left: 24px;
    color: #52657a;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 0.91rem;
    line-height: 1.5;
    font-weight: 500;
}

.mt-offer-page .mt-offers-grid::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 24px;
    width: 92px;
    height: 2px;
    border-radius: 999px;
    background: #ff8500;
}

/* Kafelki wycieczek: tylko łagodniejsze uniesienie. */
.mt-offer-page .mt-card:hover,
.mt-offer-page .mt-card:focus-within,
.mt-history .mt-card:hover,
.mt-history .mt-card:focus-within,
.mt-history-year-page .mt-card:hover,
.mt-history-year-page .mt-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 13px 30px rgba(15, 35, 55, 0.125);
}


/* ==========================================================================
   SEKCJA „DLACZEGO WARTO PODRÓŻOWAĆ Z MARKTUREM”
   ========================================================================== */

.mt-offer-benefits {
    padding-top: 78px;
    padding-bottom: 70px;
}

.mt-offer-benefits-grid {
    gap: 20px 24px;
}

.mt-offer-benefit-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 18px;
    row-gap: 7px;
    align-items: start;
    padding: 22px 24px;
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(15, 35, 55, 0.07);
}

.mt-offer-benefit-card:hover {
    transform: translateY(-2px);
    border-color: rgba(163, 138, 23, 0.32);
    box-shadow: 0 12px 28px rgba(15, 35, 55, 0.105);
}

.mt-offer-benefit-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: 1.08rem;
}

.mt-offer-benefit-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 2px 0 0;
    font-size: 0.98rem;
    line-height: 1.35;
}

.mt-offer-benefit-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.62;
}


/* ==========================================================================
   SEKCJA OPINII
   ========================================================================== */

.mt-offer-opinions {
    padding-top: 68px;
    padding-bottom: 92px;
}

.mt-offer-opinions-grid {
    gap: 24px;
}

.mt-offer-opinion-card {
    min-height: 290px;
    padding: 34px 28px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15, 35, 55, 0.07);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mt-offer-opinion-card:hover {
    transform: translateY(-2px);
    border-color: rgba(163, 138, 23, 0.28);
    box-shadow: 0 12px 29px rgba(15, 35, 55, 0.105);
}

.mt-offer-opinion-quote {
    top: 12px;
    right: 21px;
    font-size: 4.8rem;
    opacity: 0.20;
}

.mt-offer-opinion-card blockquote {
    font-size: 0.91rem;
    line-height: 1.72;
}

.mt-offer-opinion-card footer {
    min-height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
}

.mt-offer-opinion-card footer strong {
    font-size: 0.9rem;
}

.mt-offer-opinion-card footer span {
    font-size: 0.75rem;
}


/* ==========================================================================
   RESPONSYWNOŚĆ
   ========================================================================== */

@media (max-width: 991.98px) {
    .mt-offer-page .mt-offers {
        padding-top: 112px;
    }

    .mt-offer-page .mt-offers::before {
        top: 38px;
    }

    .mt-offer-page .mt-offers::after {
        top: 70px;
    }

    .mt-offer-page .mt-offers-grid::before {
        top: 68px;
    }

    .mt-offer-benefit-card {
        min-height: 145px;
    }
}

@media (max-width: 767.98px) {
    .mt-offer-page .mt-offers {
        padding-top: 118px;
    }

    .mt-offer-page .mt-offers::before,
    .mt-offer-page .mt-offers::after,
    .mt-offer-page .mt-offers-grid::before {
        left: 12px;
    }

    .mt-offer-page .mt-offers::before {
        top: 32px;
        font-size: 0.98rem;
    }

    .mt-offer-page .mt-offers::after {
        top: 65px;
        right: 12px;
        font-size: 0.82rem;
    }

    .mt-offer-page .mt-offers-grid::before {
        top: 61px;
        width: 76px;
    }

    .mt-offer-benefits {
        padding-top: 58px;
        padding-bottom: 54px;
    }

    .mt-offer-benefits-grid {
        gap: 16px;
    }

    .mt-offer-benefit-card {
        min-height: 0;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 15px;
        padding: 21px 19px;
    }

    .mt-offer-benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 0.98rem;
    }

    .mt-offer-opinions {
        padding-top: 54px;
        padding-bottom: 68px;
    }

    .mt-offer-opinions-grid {
        gap: 16px;
    }

    .mt-offer-opinion-card {
        min-height: 0;
        padding: 30px 22px 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-offer-benefit-card,
    .mt-offer-opinion-card {
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — OFERTA: NAGŁÓWEK SEKCJI Z BLOG.PHP
   Zastępuje tymczasowy tekst generowany przez pseudoelementy CSS.
   ========================================================================== */

.mt-offer-page .mt-offers::before,
.mt-offer-page .mt-offers::after,
.mt-offer-page .mt-offers-grid::before {
    content: none !important;
    display: none !important;
}

.mt-offer-page .mt-offers {
    padding-top: 40px;
}

.mt-offer-list-heading {
    margin: 0 0 24px;
}

.mt-offer-list-heading__title {
    margin: 0;
    color: #0b2f53;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.mt-offer-list-heading__line {
    width: 92px;
    height: 2px;
    display: block;
    margin: 7px 0 8px;
    border-radius: 999px;
    background: #ff8500;
}

.mt-offer-list-heading__description {
    margin: 0;
    color: #52657a;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 0.91rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .mt-offer-page .mt-offers {
        padding-top: 28px;
    }

    .mt-offer-list-heading {
        margin-bottom: 20px;
    }

    .mt-offer-list-heading__title {
        font-size: 0.98rem;
    }

    .mt-offer-list-heading__line {
        width: 76px;
    }

    .mt-offer-list-heading__description {
        font-size: 0.82rem;
    }
}


/* ==========================================================================
   MARKTUR — KAFELKI OFERTY I HISTORII: KOREKTA KOŃCOWA
   Naturalne zdjęcie bez filtrów, lżejszy gradient i dyskretny ruch premium.
   ========================================================================== */

.mt-offer-page .mt-card-image,
.mt-history .mt-card-image,
.mt-history-year-page .mt-card-image {
    filter: none !important;
}

.mt-offer-page .mt-card-image-wrap::after,
.mt-history .mt-card-image-wrap::after,
.mt-history-year-page .mt-card-image-wrap::after {
    height: 43%;
    background:
        linear-gradient(
            to top,
            rgba(4, 18, 30, 0.92) 0%,
            rgba(4, 18, 30, 0.76) 24%,
            rgba(4, 18, 30, 0.42) 48%,
            rgba(4, 18, 30, 0.14) 72%,
            rgba(4, 18, 30, 0.00) 100%
        ) !important;
}

.mt-offer-page .mt-card:hover,
.mt-offer-page .mt-card:focus-within,
.mt-history .mt-card:hover,
.mt-history .mt-card:focus-within,
.mt-history-year-page .mt-card:hover,
.mt-history-year-page .mt-card:focus-within {
    transform: translateY(-0.5px) !important;
    box-shadow: 0 10px 24px rgba(15, 35, 55, 0.095) !important;
}

.mt-offer-page .mt-card:hover .mt-card-image,
.mt-offer-page .mt-card:focus-within .mt-card-image,
.mt-history .mt-card:hover .mt-card-image,
.mt-history .mt-card:focus-within .mt-card-image,
.mt-history-year-page .mt-card:hover .mt-card-image,
.mt-history-year-page .mt-card:focus-within .mt-card-image {
    filter: none !important;
    transform: scale(1.008) !important;
}


/* ==========================================================================
   MARKTUR — UJEDNOLICENIE HERO 1.0
   Wspólne zasady dla: Oferta, Kalendarz, Historia, O nas, Kontakt.
   - pomarańczowe wprowadzenie,
   - biały nagłówek,
   - szaro-pomarańczowe podkreślenie,
   - jednolity tekst główny pod nagłówkiem.
   ========================================================================== */

.mt-offer-hero-eyebrow,
.mt-cal2-hero-eyebrow,
.mt-history-hero-eyebrow,
.mt-about-eyebrow,
.marktur-contact-hero__eyebrow {
    margin: 0 0 14px !important;
    color: #ff8500 !important;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.mt-offer-hero-title,
.mt-cal2-hero h1,
.mt-history-hero-title,
.mt-history-hero-title > span,
.mt-history-hero-title-accent,
.mt-about-hero h1,
.marktur-contact-hero h1 {
    color: #ffffff !important;
}

.mt-offer-hero-accent,
.mt-history-hero-accent-line {
    width: 145px !important;
    height: 4px !important;
    display: flex !important;
    align-items: center;
    margin: 1.45rem 0 1.4rem !important;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24) !important;
}

.mt-offer-hero-accent span,
.mt-history-hero-accent-line span {
    width: 64px !important;
    height: 100% !important;
    display: block;
    border-radius: inherit;
    background: #ff8500 !important;
}

.mt-cal2-hero h1::after,
.mt-about-hero h1::after,
.marktur-contact-hero h1::after {
    content: "";
    width: 145px;
    height: 4px;
    display: block;
    margin: 1.45rem 0 1.4rem;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #ff8500 0 64px,
            rgba(255, 255, 255, 0.24) 64px 145px
        );
}

.mt-offer-hero-lead,
.mt-cal2-hero-lead,
.mt-history-hero-description,
.mt-about-hero-lead,
.marktur-contact-hero__lead {
    max-width: 760px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    font-size: clamp(1.02rem, 1.35vw, 1.16rem) !important;
    line-height: 1.68 !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.mt-about-hero-copy > p:last-child {
    max-width: 900px;
    margin: 18px 0 0 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
}

.marktur-contact-hero__online {
    margin-top: 24px;
}

.mt-cal2-hero-lead {
    margin-top: 0 !important;
}

.mt-history-hero-eyebrow {
    color: #ff8500 !important;
}

@media (max-width: 767.98px) {
    .mt-offer-hero-eyebrow,
    .mt-cal2-hero-eyebrow,
    .mt-history-hero-eyebrow,
    .mt-about-eyebrow,
    .marktur-contact-hero__eyebrow {
        margin-bottom: 11px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.095em !important;
    }

    .mt-offer-hero-accent,
    .mt-history-hero-accent-line,
    .mt-cal2-hero h1::after,
    .mt-about-hero h1::after,
    .marktur-contact-hero h1::after {
        width: 126px !important;
        margin-top: 1.15rem !important;
        margin-bottom: 1.1rem !important;
    }

    .mt-offer-hero-accent span,
    .mt-history-hero-accent-line span {
        width: 56px !important;
    }

    .mt-cal2-hero h1::after,
    .mt-about-hero h1::after,
    .marktur-contact-hero h1::after {
        background:
            linear-gradient(
                90deg,
                #ff8500 0 56px,
                rgba(255, 255, 255, 0.24) 56px 126px
            );
    }

    .mt-offer-hero-lead,
    .mt-cal2-hero-lead,
    .mt-history-hero-description,
    .mt-about-hero-lead,
    .marktur-contact-hero__lead {
        font-size: 0.98rem !important;
        line-height: 1.62 !important;
    }

    .mt-about-hero-copy > p:last-child {
        margin-top: 14px !important;
        font-size: 0.84rem !important;
        line-height: 1.62 !important;
    }

    .marktur-contact-hero__online {
        margin-top: 20px;
    }
}


/* ==========================================================================
   MARKTUR — HERO CIRCLE 1.0
   Ujednolicony komponent koła dla wszystkich głównych Hero.
   ========================================================================== */

.mt-hero-orbit {
    width: 190px;
}

.mt-hero-orbit__circle,
.mt-about-hero-number {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background:
        radial-gradient(
            circle at 34% 24%,
            rgba(255, 255, 255, 0.16),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.10),
            rgba(8, 36, 59, 0.28)
        );
    box-shadow:
        inset 0 0 0 14px rgba(255, 255, 255, 0.025),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 46px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.mt-hero-orbit__circle {
    gap: 8px;
    padding: 24px;
}

.mt-hero-orbit__ghost {
    width: 70%;
    height: 70%;
    top: -22%;
    right: -18%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 0 0 22px rgba(255, 255, 255, 0.018),
        0 0 0 1px rgba(255, 133, 0, 0.035);
    opacity: 0.62;
}

.mt-hero-orbit__icon {
    width: 49% !important;
    height: 49% !important;
    color: rgba(255, 255, 255, 0.66);
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.18));
}

.mt-hero-orbit__label {
    color: #ffffff;
    font-size: 0.7rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.34);
}

.mt-about-hero-number {
    width: 190px;
    height: 190px;
    flex: 0 0 190px;
    border-radius: 50%;
    animation: mt-hero-circle-float 9s ease-in-out infinite;
}

.mt-about-hero-number strong {
    color: #ff8500;
    font-size: 4.45rem;
    line-height: 0.9;
}

.mt-about-hero-number span {
    max-width: 112px;
    margin-top: 10px;
    color: #ffffff;
    font-size: 0.7rem;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.34);
}

@keyframes mt-hero-circle-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes mt-hero-orbit-float {
    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 6px));
    }
}

@keyframes mt-hero-orbit-float-mobile {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes mt-hero-orbit-ghost-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

@media (min-width: 768px) {
    .mt-hero-orbit {
        animation: mt-hero-orbit-float 9s ease-in-out infinite;
    }
}

@media (max-width: 1199px) {
    .mt-hero-orbit {
        width: 174px;
    }

    .mt-about-hero-number {
        width: 174px;
        height: 174px;
        flex-basis: 174px;
    }

    .mt-about-hero-number strong {
        font-size: 4.05rem;
    }
}

@media (max-width: 991.98px) {
    .mt-hero-orbit {
        width: 154px;
        opacity: 0.78;
    }

    .mt-hero-orbit__circle {
        gap: 6px;
        padding: 19px;
    }

    .mt-hero-orbit__label {
        font-size: 0.62rem;
    }

    .mt-hero-orbit__ghost {
        opacity: 0.44;
    }

    .mt-about-hero-number {
        width: 154px;
        height: 154px;
        flex-basis: 154px;
    }

    .mt-about-hero-number strong {
        font-size: 3.55rem;
    }

    .mt-about-hero-number span {
        max-width: 100px;
        font-size: 0.62rem;
    }
}

@media (max-width: 767.98px) {
    .mt-hero-orbit {
        width: 118px;
        opacity: 0.48;
    }

    .mt-hero-orbit__circle {
        gap: 4px;
        padding: 14px;
        border-color: rgba(255, 255, 255, 0.34);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        animation: mt-hero-orbit-float-mobile 9s ease-in-out infinite;
    }

    .mt-hero-orbit__label {
        font-size: 0.5rem;
        letter-spacing: 0.04em;
    }

    .mt-about-hero-number {
        width: auto;
        height: auto;
        min-height: 72px;
        flex: none;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 14px 17px;
        border-radius: 11px;
        animation: mt-hero-circle-float 9s ease-in-out infinite;
    }

    .mt-about-hero-number strong {
        font-size: 2.9rem;
    }

    .mt-about-hero-number span {
        max-width: none;
        margin-top: 0;
        font-size: 0.65rem;
        text-align: left;
    }
}

@media (max-width: 479.98px) {
    .mt-hero-orbit {
        width: 106px;
        opacity: 0.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-hero-orbit,
    .mt-hero-orbit__circle,
    .mt-hero-orbit__ghost,
    .mt-about-hero-number {
        animation: none !important;
    }
}


/* ==========================================================================
   MARKTUR — HERO CIRCLE 1.1
   Korekta wersji desktop:
   - wszystkie koła w tej samej pozycji,
   - koło „O nas” niezależne od siatki Hero,
   - większa przejrzystość szkła,
   - usunięcie dodatkowego, prawie niewidocznego koła w „O nas”.
   ========================================================================== */

@media (min-width: 992px) {

    /* Wspólna pozycja wszystkich kół Hero. */
    .mt-hero-orbit,
    .mt-about-hero-number {
        top: 50%;
        right: max(5.2vw, 44px);
    }

    .mt-hero-orbit {
        position: absolute;
        transform: translateY(-50%);
    }

    /*
     * Koło „O nas” nie jest już ustawiane przez drugą kolumnę siatki.
     * Wisi dokładnie w tym samym miejscu co pozostałe koła Hero.
     */
    .mt-about-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-right: 260px;
    }

    .mt-about-hero-number {
        position: absolute;
        z-index: 2;
        margin: 0;
        transform: translateY(-50%);
        animation: mt-about-circle-float-desktop 9s ease-in-out infinite;
    }

    /*
     * Ukrywamy starszą dekorację, która tworzyła dodatkowy,
     * prawie niewidoczny element kołowy w Hero „O nas”.
     */
    .mt-about-hero-decor {
        display: none !important;
    }

    /* Lżejsze, bardziej przejrzyste szkło we wszystkich kołach. */
    .mt-hero-orbit__circle,
    .mt-about-hero-number {
        border-color: rgba(255, 255, 255, 0.30);
        background:
            radial-gradient(
                circle at 34% 24%,
                rgba(255, 255, 255, 0.11),
                transparent 35%
            ),
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.065),
                rgba(8, 36, 59, 0.19)
            );
        box-shadow:
            inset 0 0 0 14px rgba(255, 255, 255, 0.016),
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 16px 40px rgba(0, 0, 0, 0.17);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /*
     * Delikatniejsze koło pomocnicze przy czterech standardowych Hero.
     * Pozostaje jako subtelny detal, ale nie konkuruje z kołem głównym.
     */
    .mt-hero-orbit__ghost {
        opacity: 0.36;
        border-color: rgba(255, 255, 255, 0.07);
        box-shadow:
            inset 0 0 0 22px rgba(255, 255, 255, 0.011),
            0 0 0 1px rgba(255, 133, 0, 0.022);
    }
}

@keyframes mt-about-circle-float-desktop {
    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 6px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-about-hero-number {
        animation: none !important;
    }
}


/* ==========================================================================
   MARKTUR — HERO CIRCLE 1.2
   Pozycja referencyjna: koło „O nas”.
   Pozostałe koła Hero zostają przesunięte w lewo do tej samej osi.
   ========================================================================== */

@media (min-width: 992px) {
    .mt-hero-orbit {
        right: max(9.5vw, 150px) !important;
    }

    .mt-about-hero-number {
        right: max(5.2vw, 44px) !important;
    }
}


/* ==========================================================================
   MARKTUR — MOBILNE HERO 1.0
   Wspólny system dla: Oferta, Kalendarz, Historia, O nas, Kontakt.
   - jednolity rozmiar nagłówków,
   - brak przycinania liter,
   - wszystkie dekoracje jako poziome szklane panele,
   - wspólna pozycja i proporcje paneli.
   ========================================================================== */

@media (max-width: 767.98px) {

    /* --------------------------------------------------------------
       WSPÓLNA TYPOGRAFIA HERO
       -------------------------------------------------------------- */

    .mt-offer-hero-title,
    .mt-cal2-hero h1,
    .mt-history-hero-title,
    .mt-about-hero h1,
    .marktur-contact-hero h1 {
        max-width: 100% !important;
        margin: 0 !important;
        padding-bottom: 0.08em;
        overflow: visible !important;
        color: #ffffff !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: clamp(2.45rem, 11.2vw, 3.15rem) !important;
        line-height: 0.99 !important;
        font-weight: 700 !important;
        letter-spacing: -0.042em !important;
        text-wrap: balance;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .mt-history-hero-title > span,
    .mt-history-hero-title-accent {
        color: #ffffff !important;
    }

    .mt-offer-hero-eyebrow,
    .mt-cal2-hero-eyebrow,
    .mt-history-hero-eyebrow,
    .mt-about-eyebrow,
    .marktur-contact-hero__eyebrow {
        margin: 0 0 12px !important;
        color: #ff8500 !important;
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        font-weight: 800 !important;
        letter-spacing: 0.095em !important;
        text-transform: uppercase !important;
    }

    .mt-offer-hero-lead,
    .mt-cal2-hero-lead,
    .mt-history-hero-description,
    .mt-about-hero-lead,
    .marktur-contact-hero__lead {
        max-width: 100% !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.94) !important;
        font-size: 0.98rem !important;
        line-height: 1.62 !important;
        font-weight: 500 !important;
    }

    /* --------------------------------------------------------------
       WSPÓLNE ODSTĘPY I MIEJSCE NA PANEL
       -------------------------------------------------------------- */

    .mt-offer-hero,
    .mt-cal2-hero,
    .mt-history-hero,
    .mt-about-hero,
    .marktur-contact-hero {
        min-height: 0 !important;
        height: auto !important;
    }

    .mt-offer-hero-inner,
    .mt-cal2-hero-inner,
    .mt-history-hero-container,
    .mt-history-hero-content,
    .mt-about-hero-inner,
    .marktur-contact-hero__content {
        min-height: 0 !important;
        height: auto !important;
    }

    .mt-offer-hero-inner,
    .mt-cal2-hero-inner,
    .mt-history-hero-content,
    .marktur-contact-hero__content {
        padding-top: 74px !important;
        padding-bottom: 188px !important;
    }

    .mt-about-hero-inner {
        display: block !important;
        padding-top: 74px !important;
        padding-right: 0 !important;
        padding-bottom: 188px !important;
    }

    .mt-history-hero-content {
        justify-content: flex-start !important;
    }

    /* O nas — drugi akapit pozostaje lżejszym tekstem uzupełniającym. */
    .mt-about-hero-copy > p:last-child {
        margin: 16px 0 0 !important;
        color: rgba(255, 255, 255, 0.76) !important;
        font-size: 0.86rem !important;
        line-height: 1.64 !important;
    }

    /* Kontakt — karta online pozostaje w treści, przed panelem. */
    .marktur-contact-hero__online {
        max-width: 100%;
        margin-top: 22px;
    }

    /* --------------------------------------------------------------
       WSPÓLNY SZKLANY PANEL — 4 STANDARDOWE HERO
       -------------------------------------------------------------- */

    .mt-hero-orbit {
        position: absolute !important;
        top: auto !important;
        right: 24px !important;
        bottom: 48px !important;
        left: 24px !important;
        width: auto !important;
        height: 94px !important;
        aspect-ratio: auto !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        pointer-events: none;
    }

    .mt-hero-orbit__circle {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 18px !important;
        padding: 14px 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.36) !important;
        border-radius: 16px !important;
        background:
            radial-gradient(
                circle at 18% 18%,
                rgba(255, 255, 255, 0.12),
                transparent 28%
            ),
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.085),
                rgba(8, 36, 59, 0.22)
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.14),
            0 14px 32px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(7px) !important;
        -webkit-backdrop-filter: blur(7px) !important;
        animation: none !important;
    }

    .mt-hero-orbit__ghost {
        display: none !important;
    }

    .mt-hero-orbit__icon {
        width: 54px !important;
        height: 54px !important;
        flex: 0 0 54px !important;
        padding: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.76) !important;
    }

    .mt-hero-orbit__label {
        min-width: 0;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-size: 0.72rem !important;
        line-height: 1.28 !important;
        font-weight: 800 !important;
        text-align: left !important;
        letter-spacing: 0.045em !important;
    }

    /* --------------------------------------------------------------
       „O NAS” — TEN SAM PANEL, Z LICZBĄ 30+
       -------------------------------------------------------------- */

    .mt-about-hero-number {
        position: absolute !important;
        z-index: 3;
        top: auto !important;
        right: 0 !important;
        bottom: 48px !important;
        left: 0 !important;
        width: auto !important;
        height: 94px !important;
        min-height: 94px !important;
        margin: 0 !important;
        padding: 14px 20px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.36) !important;
        border-radius: 16px !important;
        background:
            radial-gradient(
                circle at 18% 18%,
                rgba(255, 255, 255, 0.12),
                transparent 28%
            ),
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.085),
                rgba(8, 36, 59, 0.22)
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.14),
            0 14px 32px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(7px) !important;
        -webkit-backdrop-filter: blur(7px) !important;
        transform: none !important;
        animation: none !important;
    }

    .mt-about-hero-number strong {
        min-width: 118px;
        margin: 0 !important;
        color: #ff8500 !important;
        font-size: 3.25rem !important;
        line-height: 0.9 !important;
        text-align: center;
    }

    .mt-about-hero-number span {
        max-width: none !important;
        margin: 0 !important;
        color: #ffffff !important;
        font-size: 0.72rem !important;
        line-height: 1.28 !important;
        font-weight: 800 !important;
        text-align: left !important;
        letter-spacing: 0.045em !important;
    }

    .mt-about-hero-decor {
        display: none !important;
    }
}


/* ==========================================================================
   MAŁE TELEFONY
   ========================================================================== */

@media (max-width: 420px) {
    .mt-offer-hero-title,
    .mt-cal2-hero h1,
    .mt-history-hero-title,
    .mt-about-hero h1,
    .marktur-contact-hero h1 {
        font-size: clamp(2.32rem, 10.8vw, 2.9rem) !important;
        line-height: 1 !important;
    }

    .mt-hero-orbit {
        right: 18px !important;
        left: 18px !important;
    }

    .mt-hero-orbit__circle,
    .mt-about-hero-number {
        gap: 14px !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .mt-hero-orbit__icon {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
    }

    .mt-about-hero-number strong {
        min-width: 105px;
        font-size: 3rem !important;
    }
}


/* ==========================================================================
   OGRANICZENIE ANIMACJI
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .mt-hero-orbit,
    .mt-hero-orbit__circle,
    .mt-about-hero-number {
        animation: none !important;
        transition: none !important;
    }
}


/* ==========================================================================
   MARKTUR — TABLET HERO 1.0
   - tablet poziomo: wspólna pozycja kół według komponentu „O nas”,
   - tablet pionowo: poziome panele glass jak na telefonie,
   - przywrócenie paralaksy Hero Oferty na tablecie.
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLET POZIOMO
   -------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {

    .mt-offer-hero,
    .mt-cal2-hero,
    .mt-history-hero,
    .mt-about-hero,
    .marktur-contact-hero {
        position: relative;
    }

    /* Wszystkie koła wiszą na jednej osi. */
    .mt-hero-orbit,
    .mt-about-hero-number {
        position: absolute !important;
        z-index: 3;
        top: 50% !important;
        right: clamp(70px, 8.2vw, 118px) !important;
        left: auto !important;
        bottom: auto !important;
        width: 174px !important;
        height: 174px !important;
        margin: 0 !important;
        opacity: 0.82 !important;
        transform: translateY(-50%) !important;
    }

    .mt-about-hero-inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        padding-right: 250px !important;
    }

    .mt-about-hero-number {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 7px !important;
        padding: 24px !important;
        border-radius: 50% !important;
        animation: none !important;
    }

    .mt-about-hero-number strong {
        min-width: 0 !important;
        margin: 0 !important;
        font-size: 4.05rem !important;
        line-height: 0.9 !important;
        text-align: center !important;
    }

    .mt-about-hero-number span {
        max-width: 106px !important;
        margin: 8px 0 0 !important;
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .mt-about-hero-decor {
        display: none !important;
    }
}


/* --------------------------------------------------------------------------
   TABLET PIONOWO
   -------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {

    /* Przywrócenie efektu paralaksy w Hero Oferty. */
    .mt-offer-hero {
        background-attachment: fixed !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    /* Jednolita typografia tytułów na tablecie pionowym. */
    .mt-offer-hero-title,
    .mt-cal2-hero h1,
    .mt-history-hero-title,
    .mt-about-hero h1,
    .marktur-contact-hero h1 {
        max-width: 100% !important;
        margin: 0 !important;
        padding-bottom: 0.08em;
        overflow: visible !important;
        font-size: clamp(3.15rem, 7.2vw, 4.2rem) !important;
        line-height: 0.99 !important;
        letter-spacing: -0.04em !important;
        text-wrap: balance;
        word-break: normal;
        hyphens: none;
    }

    .mt-offer-hero-inner,
    .mt-cal2-hero-inner,
    .mt-history-hero-content,
    .marktur-contact-hero__content {
        min-height: 0 !important;
        height: auto !important;
        padding-top: 76px !important;
        padding-bottom: 190px !important;
    }

    .mt-about-hero-inner {
        display: block !important;
        min-height: 0 !important;
        height: auto !important;
        padding-top: 76px !important;
        padding-right: 0 !important;
        padding-bottom: 190px !important;
    }

    /* Cztery standardowe Hero jako poziome panele glass. */
    .mt-hero-orbit {
        position: absolute !important;
        z-index: 4;
        top: auto !important;
        right: 24px !important;
        bottom: 48px !important;
        left: 24px !important;
        width: auto !important;
        height: 102px !important;
        aspect-ratio: auto !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .mt-hero-orbit__circle {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 22px !important;
        padding: 16px 24px !important;
        border: 1px solid rgba(255, 255, 255, 0.36) !important;
        border-radius: 17px !important;
        background:
            radial-gradient(
                circle at 18% 18%,
                rgba(255, 255, 255, 0.12),
                transparent 28%
            ),
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.085),
                rgba(8, 36, 59, 0.22)
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.14),
            0 14px 32px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(7px) !important;
        -webkit-backdrop-filter: blur(7px) !important;
        animation: none !important;
    }

    .mt-hero-orbit__ghost {
        display: none !important;
    }

    .mt-hero-orbit__icon {
        width: 60px !important;
        height: 60px !important;
        flex: 0 0 60px !important;
        padding: 11px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
    }

    .mt-hero-orbit__label {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        font-size: 0.76rem !important;
        line-height: 1.28 !important;
        text-align: left !important;
        letter-spacing: 0.045em !important;
    }

    /* O nas korzysta z tego samego panelu. */
    .mt-about-hero-number {
        position: absolute !important;
        z-index: 4;
        top: auto !important;
        right: 0 !important;
        bottom: 48px !important;
        left: 0 !important;
        width: auto !important;
        height: 102px !important;
        min-height: 102px !important;
        margin: 0 !important;
        padding: 16px 24px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 22px !important;
        border: 1px solid rgba(255, 255, 255, 0.36) !important;
        border-radius: 17px !important;
        background:
            radial-gradient(
                circle at 18% 18%,
                rgba(255, 255, 255, 0.12),
                transparent 28%
            ),
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.085),
                rgba(8, 36, 59, 0.22)
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.14),
            0 14px 32px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(7px) !important;
        -webkit-backdrop-filter: blur(7px) !important;
        transform: none !important;
        animation: none !important;
    }

    .mt-about-hero-number strong {
        min-width: 132px !important;
        margin: 0 !important;
        font-size: 3.65rem !important;
        line-height: 0.9 !important;
        text-align: center !important;
    }

    .mt-about-hero-number span {
        max-width: none !important;
        margin: 0 !important;
        font-size: 0.76rem !important;
        line-height: 1.28 !important;
        text-align: left !important;
        letter-spacing: 0.045em !important;
    }

    .mt-about-hero-decor {
        display: none !important;
    }

    /* Kontakt: panel online pozostaje przed dolnym panelem identyfikacyjnym. */
    .marktur-contact-hero__online {
        margin-top: 24px !important;
    }
}


/* --------------------------------------------------------------------------
   OCHRONA PRZED ANIMACJAMI NA TABLECIE
   -------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1199.98px) {
    .mt-hero-orbit,
    .mt-hero-orbit__circle,
    .mt-about-hero-number {
        transition: none;
    }
}


/* ==========================================================================
   MARKTUR — TABLET HERO 1.1
   Wyrównanie osi treści Hero „O nas” i „Kontakt”
   do pozostałych podstron na tablecie pionowym.
   ========================================================================== */

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {

    .mt-about-hero-inner,
    .marktur-contact-hero__content {
        width: min(1380px, calc(100% - 48px)) !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .mt-about-hero-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .marktur-contact-hero__content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* ==========================================================================
   MARKTUR — HISTORIA: SIATKA 4 / 2 / 1
   - desktop i tablet poziomo: 4 kafelki w rzędzie,
   - tablet pionowo: 2 kafelki w rzędzie,
   - telefon: 1 kafelek w rzędzie.
   ========================================================================== */

/* Desktop oraz tablet poziomo. */
@media (min-width: 992px) {
    .mt-history-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* Tablet poziomo o szerokości poniżej 992 px. */
@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape) {
    .mt-history-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* Tablet pionowo: regularny układ 2 × 2. */
@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
    .mt-history-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .mt-history-grid > :last-child:nth-child(odd) {
        grid-column: auto !important;
        width: auto !important;
        justify-self: stretch !important;
    }
}

/* Telefon pozostaje w jednej kolumnie. */
@media (max-width: 767.98px) {
    .mt-history-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ==========================================================================
   MARKTUR — HISTORIA: STOPKA KAFELKA W DWÓCH WIERSZACH
   Data znajduje się w pierwszym wierszu, a odnośnik „Zobacz wyjazd”
   w drugim. Zasada obowiązuje na PC, tabletach i telefonach.
   ========================================================================== */

.mt-history-card-bottom {
    min-height: 104px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0.72rem !important;
    padding: 0.95rem 1.25rem 1rem !important;
}

.mt-history-card .mt-card-date {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 0.68rem !important;
    border-bottom: 1px solid rgba(11, 61, 97, 0.12) !important;
    white-space: normal !important;
}

.mt-history-card-more {
    width: 100% !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.55rem !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

@media (max-width: 767.98px) {
    .mt-history-card-bottom {
        min-height: 100px !important;
        gap: 0.65rem !important;
        padding: 0.9rem 1rem 0.95rem !important;
    }

    .mt-history-card .mt-card-date {
        padding-bottom: 0.62rem !important;
    }
}

/* ==========================================================================
   MARKTUR — DOKUMENTACJA SERWISU 2.0
   ========================================================================== */

.mt-docs {
    --docs-navy: #0b2d4d;
    --docs-navy-2: #123f68;
    --docs-orange: #ff8500;
    --docs-gold: #a38a17;
    --docs-text: #26394c;
    --docs-muted: #667687;
    --docs-border: #dfe6ec;
    --docs-soft: #f6f8fa;
    width: 100%;
    color: var(--docs-text);
    font-family: "Montserrat", system-ui, sans-serif;
}

.mt-docs *,
.mt-docs *::before,
.mt-docs *::after {
    box-sizing: border-box;
}

.mt-docs-hero {
    position: relative;
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,133,0,.15), transparent 27%),
        radial-gradient(circle at 68% 115%, rgba(255,255,255,.08), transparent 36%),
        linear-gradient(135deg, #123f68 0%, #0b2d4d 63%, #071f35 100%);
    color: #fff;
}

.mt-docs-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,22,39,.52), rgba(3,22,39,.08)),
        linear-gradient(180deg, transparent 55%, rgba(255,255,255,.10) 82%, #fff 100%);
}

.mt-docs-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 48px));
    min-height: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 0 82px;
}

.mt-docs-eyebrow {
    margin: 0 0 12px;
    color: var(--docs-orange);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.mt-docs-hero h1 {
    max-width: 920px;
    margin: 0;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.045em;
}

.mt-docs-accent {
    width: 145px;
    height: 4px;
    margin: 1.35rem 0 1.25rem;
    border-radius: 999px;
    background: rgba(255,255,255,.24);
    overflow: hidden;
}

.mt-docs-accent span {
    display: block;
    width: 64px;
    height: 100%;
    background: var(--docs-orange);
}

.mt-docs-lead {
    max-width: 820px;
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 1.08rem;
    line-height: 1.65;
}

.mt-docs-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 24px;
    color: rgba(255,255,255,.72);
    font-size: .75rem;
}

.mt-docs-layout {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 46px;
    padding: 44px 0 78px;
}

.mt-docs-sidebar {
    min-width: 0;
}

.mt-docs-sidebar__inner {
    position: sticky;
    top: 108px;
    max-height: calc(100vh - 126px);
    overflow-y: auto;
    padding: 20px 16px 17px;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 9px 26px rgba(15,35,55,.07);
}

.mt-docs-sidebar__title {
    margin: 0 0 12px;
    padding: 0 7px 11px;
    border-bottom: 1px solid #e7ebee;
    color: var(--docs-gold);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.mt-docs-nav {
    display: grid;
    gap: 2px;
}

.mt-docs-nav a {
    display: block;
    padding: 8px 9px;
    border-radius: 6px;
    color: #59697a;
    text-decoration: none;
    font-size: .74rem;
    line-height: 1.4;
    font-weight: 620;
}

.mt-docs-nav a:hover {
    color: var(--docs-navy);
    background: #f6f8fa;
}

.mt-docs-content {
    min-width: 0;
}

.mt-docs-section {
    position: relative;
    margin-bottom: 28px;
    padding: 32px 38px 36px;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15,35,55,.06);
    scroll-margin-top: 118px;
}

.mt-docs-section__number {
    margin: 0 0 8px;
    color: var(--docs-gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.mt-docs-section h2 {
    margin: 0 0 20px;
    color: var(--docs-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.mt-docs-section h3 {
    margin: 28px 0 12px;
    color: var(--docs-navy);
    font-size: 1rem;
}

.mt-docs-section p,
.mt-docs-section li {
    color: var(--docs-text);
    font-size: .9rem;
    line-height: 1.75;
}

.mt-docs-section ul,
.mt-docs-section ol {
    margin: 0;
    padding-left: 1.35rem;
}

.mt-docs-section li {
    margin-bottom: .5rem;
}

.mt-docs-section li::marker {
    color: var(--docs-gold);
}

.mt-docs-section code {
    padding: .15em .38em;
    border-radius: 4px;
    background: #eef3f6;
    color: #0b3d61;
    font-size: .82em;
}

.mt-docs-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--docs-gold);
    border-radius: 0 9px 9px 0;
    background: #fbfaf3;
}

.mt-docs-note--important {
    border-left-color: var(--docs-orange);
    background: #fff8ef;
}

.mt-docs-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--docs-navy);
}

.mt-docs-note p,
.mt-docs-note ul {
    margin: 0;
}

.mt-docs-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 22px 0 28px;
}

.mt-docs-flow div {
    padding: 10px 14px;
    border: 1px solid #dce4ea;
    border-radius: 8px;
    background: #f8fafb;
    color: var(--docs-navy);
    font-size: .78rem;
    font-weight: 750;
}

.mt-docs-flow span {
    color: var(--docs-orange);
    font-weight: 800;
}

.mt-docs-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.mt-docs-card {
    padding: 20px;
    border: 1px solid var(--docs-border);
    border-radius: 11px;
    background: #fbfcfd;
}

.mt-docs-card h3 {
    margin: 0 0 13px;
}

.mt-docs-card dl {
    margin: 0;
    display: grid;
    gap: 8px;
}

.mt-docs-card dt {
    color: var(--docs-muted);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mt-docs-card dd {
    margin: -4px 0 5px;
    color: var(--docs-text);
    font-size: .82rem;
    line-height: 1.5;
}

.mt-docs-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

.mt-docs-spec {
    padding: 20px;
    border: 1px solid var(--docs-border);
    border-radius: 11px;
    background: #f9fbfc;
}

.mt-docs-spec h3 {
    margin-top: 0;
}

.mt-docs-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
}

.mt-docs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.mt-docs-table th,
.mt-docs-table td {
    padding: 13px 15px;
    border-bottom: 1px solid #e7ebee;
    text-align: left;
    vertical-align: top;
    font-size: .78rem;
    line-height: 1.55;
}

.mt-docs-table th {
    background: #f4f7f9;
    color: var(--docs-navy);
    font-weight: 800;
}

.mt-docs-table tr:last-child td {
    border-bottom: 0;
}

.mt-docs-table--compact td:first-child {
    width: 80px;
    color: var(--docs-gold);
    font-weight: 800;
}

.mt-docs-cards--devices {
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.mt-docs-card p {
    margin: 0;
    font-size: .8rem;
    line-height: 1.6;
}

.mt-docs-footer {
    padding: 24px 8px 0;
    text-align: center;
    color: var(--docs-muted);
    font-size: .76rem;
}

.mt-docs-footer a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 6px;
    background: var(--docs-navy);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .mt-docs-layout {
        width: min(100% - 28px, 1380px);
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mt-docs-sidebar__inner {
        position: static;
        max-height: none;
    }

    .mt-docs-nav {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .mt-docs-cards--devices {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 767.98px) {
    .mt-docs-hero__inner,
    .mt-docs-layout {
        width: min(100% - 24px, 1380px);
    }

    .mt-docs-hero {
        min-height: 330px;
    }

    .mt-docs-hero__inner {
        min-height: 330px;
        padding: 44px 0 70px;
    }

    .mt-docs-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
    }

    .mt-docs-lead {
        font-size: .96rem;
    }

    .mt-docs-layout {
        padding-top: 28px;
        padding-bottom: 54px;
    }

    .mt-docs-nav {
        grid-template-columns: 1fr;
    }

    .mt-docs-section {
        padding: 25px 20px 28px;
    }

    .mt-docs-cards,
    .mt-docs-grid-2,
    .mt-docs-cards--devices {
        grid-template-columns: 1fr;
    }

    .mt-docs-flow {
        align-items: stretch;
        flex-direction: column;
    }

    .mt-docs-flow span {
        align-self: center;
        transform: rotate(90deg);
    }

    .mt-docs-table th,
    .mt-docs-table td {
        padding: 11px 12px;
        font-size: .74rem;
    }
}


/* ==========================================================================
   MARKTUR — DOKUMENTACJA SERWISU 2.1
   Pływający przycisk „Do góry”.
   ========================================================================== */

.mt-docs-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 1025;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(163, 138, 23, 0.72);
    border-radius: 999px;
    background: rgba(11, 45, 77, 0.94);
    color: #ffffff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    box-shadow: 0 10px 28px rgba(7, 31, 53, 0.24);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.mt-docs-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mt-docs-back-to-top:hover,
.mt-docs-back-to-top:focus-visible {
    border-color: var(--docs-orange);
    background: var(--docs-orange);
}

.mt-docs-back-to-top:focus-visible {
    outline: 3px solid rgba(255, 133, 0, 0.34);
    outline-offset: 3px;
}

.mt-docs-back-to-top > span:first-child {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .mt-docs-back-to-top {
        right: 14px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: 50%;
    }

    .mt-docs-back-to-top__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-docs-back-to-top {
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}


/* ==========================================================================
   MARKTUR — DOKUMENTACJA SERWISU 2.2
   Hero ujednolicone z Instrukcją Serwisu.
   ========================================================================== */

.mt-docs-hero--light {
    min-height: 285px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 24%,
            rgba(163, 138, 23, 0.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f7f8f9 0%,
            #ffffff 52%,
            #f3f5f6 100%
        ) !important;
    border-bottom: 1px solid #e4e8eb;
    color: #37414b;
}

.mt-docs-hero--light .mt-docs-hero__inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 285px;
    padding: 58px 0;
}

.mt-docs-hero--light .mt-docs-eyebrow {
    color: #a38a17;
    font-size: 0.72rem;
}

.mt-docs-hero--light h1 {
    max-width: 760px;
    color: #37414b !important;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: clamp(2rem, 4.3vw, 3.55rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.mt-docs-hero--light .mt-docs-lead {
    max-width: 680px;
    margin-top: 20px;
    color: #65717a;
    font-size: 1rem;
    line-height: 1.72;
}

.mt-docs-hero--light .mt-docs-meta {
    color: #75808a;
}

.mt-docs-hero--light .mt-docs-meta strong {
    color: #4c5964;
}

.mt-docs-hero__decor {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: max(28px, calc((100vw - 1120px) / 2));
    width: 190px;
    height: 190px;
    transform: translateY(-50%);
}

.mt-docs-hero__ghost {
    position: absolute;
    inset: -34px;
    border: 1px solid rgba(163, 138, 23, 0.14);
    border-radius: 50%;
}

.mt-docs-hero__circle {
    position: absolute;
    inset: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(163, 138, 23, 0.56);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 55px rgba(47, 57, 65, 0.09);
    color: #a38a17;
    text-align: center;
    animation: mtDocsHeroFloat 5.2s ease-in-out infinite;
}

.mt-docs-hero__symbol {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 850;
}

.mt-docs-hero__circle > span:last-child {
    color: #37414b;
    font-size: 0.62rem;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: 0.085em;
}

@keyframes mtDocsHeroFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@media (max-width: 767.98px) {
    .mt-docs-hero--light {
        min-height: 315px;
    }

    .mt-docs-hero--light .mt-docs-hero__inner {
        width: 100%;
        min-height: 315px;
        padding: 44px 22px 122px;
    }

    .mt-docs-hero__decor {
        top: auto;
        right: 22px;
        bottom: 14px;
        width: 105px;
        height: 105px;
        transform: none;
    }

    .mt-docs-hero__ghost {
        inset: -17px;
    }

    .mt-docs-hero__circle {
        inset: 4px;
    }

    .mt-docs-hero__symbol {
        font-size: 1rem;
    }

    .mt-docs-hero__circle > span:last-child {
        font-size: 0.46rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-docs-hero__circle {
        animation: none;
    }
}


/* ==========================================================================
   MARKTUR — DOKUMENTACJA SERWISU 2.3
   Nawigacja i przycisk „Do góry” ujednolicone z Instrukcją Serwisu.
   ========================================================================== */

/*
 * Nawigacja dokumentacji korzysta z tego samego sposobu oznaczania
 * aktywnej sekcji co Instrukcja Serwisu.
 */
.mt-docs-nav a {
    border-left: 2px solid transparent;
    border-radius: 0 7px 7px 0;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.mt-docs-nav a:hover,
.mt-docs-nav a.is-active {
    border-left-color: var(--docs-gold);
    background: rgba(163, 138, 23, 0.08);
    color: #37414b;
}

.mt-docs-nav a.is-active {
    font-weight: 780;
}

/*
 * Sticky sidebar – identyczna logika jak w Instrukcji Serwisu.
 * Sticky przypisujemy do całej kolumny, a wewnętrzny panel przewija
 * wyłącznie własny spis treści.
 */
@media (min-width: 992px) {
    .mt-docs-sidebar {
        position: sticky;
        top: 108px;
        align-self: start;
        max-height: calc(100vh - 126px);
    }

    .mt-docs-sidebar__inner {
        position: static;
        max-height: calc(100vh - 126px);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
    }
}

/*
 * Przycisk „Do góry” – kolorystyka, cień i hover jak w Instrukcji.
 */
.mt-docs-back-to-top {
    background: rgba(55, 65, 75, 0.95);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(37, 48, 57, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

.mt-docs-back-to-top.is-visible {
    transform: translateY(0);
}

.mt-docs-back-to-top:hover,
.mt-docs-back-to-top:focus-visible {
    border-color: var(--docs-gold);
    background: var(--docs-gold);
    color: #ffffff;
}

.mt-docs-back-to-top:focus-visible {
    outline: 3px solid rgba(163, 138, 23, 0.28);
    outline-offset: 3px;
}


/* ==========================================================================
   MARKTUR — DOKUMENTACJA SERWISU 2.4
   Centrum Projektu i historia zmian.
   ========================================================================== */

.mt-docs-changelog {
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: #fbfcfd;
}

.mt-docs-changelog__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 21px 22px;
    border-bottom: 1px solid var(--docs-border);
    background:
        linear-gradient(
            135deg,
            rgba(163, 138, 23, 0.09),
            rgba(255, 255, 255, 0.74)
        );
}

.mt-docs-changelog__header h3 {
    margin: 5px 0 0;
}

.mt-docs-changelog__header time {
    flex: 0 0 auto;
    padding-top: 3px;
    color: var(--docs-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.mt-docs-changelog__version {
    color: var(--docs-gold);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mt-docs-changelog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.mt-docs-changelog__grid > div {
    padding: 21px 22px;
    border-right: 1px solid var(--docs-border);
    border-bottom: 1px solid var(--docs-border);
}

.mt-docs-changelog__grid > div:nth-child(2n) {
    border-right: 0;
}

.mt-docs-changelog__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.mt-docs-changelog__grid h4 {
    margin: 0 0 11px;
    color: var(--docs-navy);
    font-size: 0.82rem;
}

.mt-docs-changelog__grid ul {
    margin: 0;
}

.mt-docs-changelog__grid li {
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .mt-docs-changelog__header {
        flex-direction: column;
        gap: 8px;
        padding: 18px;
    }

    .mt-docs-changelog__grid {
        grid-template-columns: 1fr;
    }

    .mt-docs-changelog__grid > div,
    .mt-docs-changelog__grid > div:nth-child(2n),
    .mt-docs-changelog__grid > div:nth-last-child(-n + 2) {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid var(--docs-border);
    }

    .mt-docs-changelog__grid > div:last-child {
        border-bottom: 0;
    }
}


/* ==========================================================================
   MARKTUR — GALERIA ZDJĘĆ PLANU WYCIECZKI
   ========================================================================== */

.mt-trip-gallery-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: inherit;
    background: transparent;
    cursor: zoom-in;
}

.mt-trip-gallery-trigger:focus-visible {
    outline: 3px solid rgba(255, 133, 0, 0.72);
    outline-offset: -3px;
}

.mt-trip-gallery-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(7, 31, 53, 0.76);
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        background-color 0.22s ease;
}

.mt-trip-gallery-trigger:hover .mt-trip-gallery-hint,
.mt-trip-gallery-trigger:focus-visible .mt-trip-gallery-hint {
    opacity: 1;
    transform: translateY(0);
}

.mt-trip-gallery-trigger:hover .mt-trip-gallery-hint {
    background: rgba(255, 133, 0, 0.92);
}

body.mt-trip-lightbox-open {
    overflow: hidden;
}

.mt-trip-lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.mt-trip-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mt-trip-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 31, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mt-trip-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - 64px));
    height: min(860px, calc(100vh - 64px));
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
}

.mt-trip-lightbox-figure {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mt-trip-lightbox-image {
    max-width: 100%;
    max-height: calc(100% - 54px);
    display: block;
    object-fit: contain;
    border-radius: 8px;
    background: #0b2d4d;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
    user-select: none;
    -webkit-user-drag: none;
}

.mt-trip-lightbox-caption {
    max-width: min(900px, 90%);
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 650;
    text-align: center;
}

.mt-trip-lightbox-close,
.mt-trip-lightbox-nav {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(7, 31, 53, 0.72);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.mt-trip-lightbox-close:hover,
.mt-trip-lightbox-close:focus-visible,
.mt-trip-lightbox-nav:hover,
.mt-trip-lightbox-nav:focus-visible {
    border-color: #ff8500;
    background: #ff8500;
}

.mt-trip-lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
}

.mt-trip-lightbox-nav {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border-radius: 50%;
}

.mt-trip-lightbox-prev {
    grid-column: 1;
    grid-row: 1;
}

.mt-trip-lightbox-next {
    grid-column: 3;
    grid-row: 1;
}

.mt-trip-lightbox-counter {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    min-width: 58px;
    margin-top: 10px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(7, 31, 53, 0.68);
    color: rgba(255, 255, 255, 0.9);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.mt-trip-lightbox [hidden] {
    display: none !important;
}

@media (max-width: 767.98px) {
    .mt-trip-gallery-hint {
        width: 36px;
        height: 36px;
        opacity: 1;
        transform: none;
    }

    .mt-trip-lightbox {
        padding: 12px;
    }

    .mt-trip-lightbox-dialog {
        width: calc(100vw - 24px);
        height: calc(100vh - 24px);
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }

    .mt-trip-lightbox-close {
        top: 4px;
        right: 4px;
        width: 42px;
        height: 42px;
    }

    .mt-trip-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .mt-trip-lightbox-image {
        max-height: calc(100% - 70px);
    }

    .mt-trip-lightbox-caption {
        font-size: 0.76rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-trip-gallery-hint,
    .mt-trip-lightbox,
    .mt-trip-lightbox-close,
    .mt-trip-lightbox-nav {
        transition: none;
    }
}

/* ========================================================================== 
   MARKTUR — INSTRUKCJA SERWISU 2.0
   Blokowe schematy przepływu plików i danych.
   ========================================================================== */

.mt-admin-guide-flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    margin: 18px 0 25px;
    padding: 18px;
    border: 1px solid #dfe5e9;
    border-radius: 10px;
    background: linear-gradient(145deg, #fafbfc 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(37, 48, 57, 0.045);
}

.mt-admin-guide-flow__node {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 15px;
    border: 1px solid #e1e6e9;
    border-left: 4px solid #a38a17;
    border-radius: 7px;
    background: #ffffff;
    color: #37414b;
    font-size: 0.86rem;
    line-height: 1.45;
}

.mt-admin-guide-flow__node strong {
    font-size: 0.9rem;
    font-weight: 850;
}

.mt-admin-guide-flow__node span {
    color: #68747d;
    font-size: 0.78rem;
}

.mt-admin-guide-flow__arrow {
    color: #7d8991;
    font-size: 1.05rem;
    line-height: 1;
    text-align: center;
}

@media (max-width: 767.98px) {
    .mt-admin-guide-flow {
        padding: 13px;
    }

    .mt-admin-guide-flow__node {
        padding: 11px 12px;
    }
}
