:root {
    --uvaly-red: #9b071c;
    --uvaly-red-dark: #720013;
    --uvaly-gold: #ef9d2f;
    --uvaly-cream: #fff8ed;
    --uvaly-paper: #fffdf8;
    --uvaly-ink: #100d0d;
    --uvaly-muted: #6c5f59;
    --uvaly-line: rgba(155, 7, 28, .16);
    --route-road: #10bc00;
    --route-ferry: #1e66d0;
    --goteborg-radius: 28px;
}

main.other-main.goteborg-campaign {
    margin-top: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    background: var(--uvaly-cream);
    color: var(--uvaly-ink);
    overflow: hidden;
}

.goteborg-campaign *,
.goteborg-campaign *::before,
.goteborg-campaign *::after { box-sizing: border-box; }

.goteborg-campaign img { max-width: 100%; display: block; }
.goteborg-campaign a { color: inherit; }

.goteborg-above-fold {
    --menu-clearance: clamp(92px, 8vw, 128px);
    min-height: 100vh;
    padding: calc(var(--menu-clearance) + 10px) clamp(14px, 3.2vw, 42px) 18px;
    background:
        radial-gradient(circle at 14% 12%, rgba(239,157,47,.22), transparent 28%),
        radial-gradient(circle at 84% 24%, rgba(155,7,28,.12), transparent 36%),
        linear-gradient(135deg, #fffaf0 0%, #fffdf8 54%, #fff1df 100%);
    border-bottom: 3px solid var(--uvaly-red);
}

.goteborg-dashboard {
    width: min(1680px, 100%);
    margin: 0 auto;
    height: min(660px, calc(100vh - var(--menu-clearance) - 28px));
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(420px, 1.48fr) minmax(225px, .55fr) minmax(350px, .86fr);
    gap: clamp(8px, 1.1vw, 16px);
}

.goteborg-media-panel,
.goteborg-map-panel,
.goteborg-status-panel,
.goteborg-video-tile,
.goteborg-photo-tile,
.goteborg-history-item,
.goteborg-expect-card,
.goteborg-qr-card,
.goteborg-payment-copy {
    border: 2px solid rgba(0,0,0,.82);
    background: rgba(255,255,255,.68);
    box-shadow: 0 18px 52px rgba(34, 24, 20, .12);
}

.goteborg-media-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr .82fr;
    gap: 12px;
    padding: 12px;
    border-radius: 4px;
}

.goteborg-video-tile,
.goteborg-photo-tile { position: relative; overflow: hidden; border-radius: 2px; }
.goteborg-video-tile { grid-column: 1 / -1; min-height: 0; background: #070707; }
.goteborg-video-frame { position: absolute; inset: 0; }
.goteborg-video-frame iframe { width: 100%; height: 100%; display: block; }

.goteborg-photo-tile { margin: 0; min-height: 0; }
.goteborg-photo-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) contrast(1.05); }
.goteborg-photo-tile figcaption,
.goteborg-tile-overlay {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(10, 7, 6, .76);
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(12px, .9vw, 15px);
}
.goteborg-tile-overlay { left: 16px; right: auto; max-width: 78%; display: grid; gap: 2px; }
.goteborg-tile-overlay span { color: var(--uvaly-gold); text-transform: uppercase; letter-spacing: .14em; font-size: .75em; }
.goteborg-tile-overlay strong { font-size: clamp(18px, 2.1vw, 36px); line-height: .98; }

.goteborg-map-panel {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 12px 10px 10px;
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,237,.9));
}
.goteborg-map-head { flex: 0 0 auto; }
.goteborg-mini-label,
.goteborg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 2px;
    color: var(--uvaly-red);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
    font-size: clamp(10px, .76vw, 13px);
}
.goteborg-map-head h1 {
    margin: 2px 0 5px;
    font-size: clamp(28px, 3vw, 48px);
    line-height: .95;
    text-transform: uppercase;
    color: var(--uvaly-ink);
}
.goteborg-route-legend { display: flex; flex-wrap: wrap; gap: 8px 13px; align-items: center; font-size: 13px; font-weight: 900; }
.goteborg-route-legend span { display: inline-flex; align-items: center; gap: 7px; }
.goteborg-route-legend i { width: 28px; height: 8px; border-radius: 999px; display: inline-block; }
.goteborg-route-legend .road { background: var(--route-road); }
.goteborg-route-legend .ferry { background: var(--route-ferry); }
.goteborg-map-stage {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin-top: 6px;
    background: transparent;
}
.goteborg-map-stage svg { width: 100%; height: 100%; display: block; }
.goteborg-map-control-strip { flex: 0 0 auto; display: grid; grid-template-columns: 1fr; gap: 7px; padding-top: 9px; }
.goteborg-small-btn,
.goteborg-main-cta,
.goteborg-outline-link {
    border: 0;
    border-radius: 999px;
    background: var(--uvaly-red);
    color: #fff;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.goteborg-small-btn { min-height: 38px; font-size: 13px; }
.goteborg-small-btn.muted { background: #090909; }
.goteborg-small-btn:hover,
.goteborg-main-cta:hover,
.goteborg-outline-link:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }

.route-connector { stroke: rgba(0,0,0,.34); stroke-width: 2; fill: none; stroke-linecap: round; }
.route-label { fill: rgba(255,250,244,.9); stroke: rgba(155,7,28,.18); stroke-width: 1.25; filter: url(#softShadow); }
.route-label-sub { fill: var(--uvaly-red); font-size: 12px; font-weight: 1000; letter-spacing: .08em; text-transform: uppercase; }
.route-label-text { fill: #120b09; font-size: 15px; font-weight: 1000; }

.goteborg-status-panel {
    min-width: 0;
    padding: clamp(16px, 1.5vw, 26px);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,237,.88)),
        radial-gradient(circle at 88% 8%, rgba(239,157,47,.25), transparent 34%);
}
.goteborg-status-panel h2 {
    margin: 0;
    color: var(--uvaly-red);
    text-transform: uppercase;
    line-height: .98;
    font-size: clamp(28px, 3.2vw, 56px);
    letter-spacing: -.04em;
}
.goteborg-status-lead { margin: 0; color: #302622; font-size: clamp(14px, 1.05vw, 18px); line-height: 1.35; font-weight: 650; }
.goteborg-money-box { border-radius: 26px; padding: 15px; background: #fff; border: 1px solid rgba(155,7,28,.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }
.goteborg-amount-row { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.goteborg-amount-row span,
.goteborg-stat-grid span,
.goteborg-qr-info span { display: block; color: var(--uvaly-muted); text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 950; }
.goteborg-amount-row strong { display: block; margin-top: 1px; font-size: clamp(26px, 2.3vw, 42px); color: #090909; line-height: 1; }
.goteborg-percent-pill { flex: 0 0 auto; padding: 9px 12px; border-radius: 999px; background: var(--uvaly-red); color: #fff; font-weight: 1000; font-size: 13px; }
.goteborg-progress-track { height: 14px; background: #f1dfce; border-radius: 999px; overflow: hidden; margin: 13px 0; }
.goteborg-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--uvaly-red), var(--uvaly-gold)); border-radius: inherit; transition: width .45s ease; }
.goteborg-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.goteborg-stat-grid div { background: #fff8ed; border-radius: 16px; padding: 9px 10px; }
.goteborg-stat-grid strong { display:block; font-size: 17px; margin-top: 2px; }
.goteborg-current-stop { display: grid; grid-template-columns: 58px 1fr; gap: 12px; align-items: center; padding: 10px; background: #090909; color: #fff; border-radius: 24px; }
.goteborg-current-stop img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 3px solid var(--uvaly-gold); }
.goteborg-current-stop .goteborg-mini-label { color: var(--uvaly-gold); font-size: 9px; }
.goteborg-current-stop strong { display: block; font-size: 22px; line-height: 1; margin: 2px 0; }
.goteborg-current-stop p { margin: 0; font-size: 12px; line-height: 1.25; color: rgba(255,255,255,.84); }
.goteborg-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.goteborg-why-grid article { border-radius: 18px; padding: 11px 10px; background: rgba(155,7,28,.07); border: 1px solid rgba(155,7,28,.12); }
.goteborg-why-grid strong { display: block; color: var(--uvaly-red); font-size: 17px; line-height: 1; }
.goteborg-why-grid span { display: block; margin-top: 4px; font-size: 12px; line-height: 1.25; font-weight: 650; }
.goteborg-main-cta { display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; min-height: 48px; background: var(--uvaly-red); font-size: 15px; }
.goteborg-main-cta.small { min-height: 48px; padding: 0 18px; white-space: nowrap; }

.goteborg-section {
    position: relative;
    padding: clamp(34px, 5.5vw, 82px) clamp(16px, 4vw, 58px);
    background: #fffdf8;
    border-bottom: 2px solid rgba(0,0,0,.8);
}
.goteborg-section::before { content: ''; position: absolute; inset: 0 auto auto 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--uvaly-red), rgba(155,7,28,0)); opacity: .32; }
.goteborg-section-head { max-width: 1150px; margin: 0 auto clamp(22px, 3vw, 38px); }
.goteborg-section-head.compact { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.goteborg-section h2,
.goteborg-section-head h2 {
    margin: 0;
    color: var(--uvaly-red);
    line-height: .98;
    letter-spacing: -.04em;
    font-size: clamp(40px, 5.4vw, 86px);
}
.goteborg-section-head p { margin: 14px 0 0; max-width: 980px; color: #342923; font-size: clamp(17px, 1.3vw, 22px); line-height: 1.45; font-weight: 650; }

.goteborg-history-list { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 42px); }
.goteborg-history-item { position: relative; min-height: 270px; border-radius: 999px; overflow: hidden; isolation: isolate; background: #ddd; }
.goteborg-history-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.68)); z-index: 1; }
.goteborg-history-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.goteborg-year-badge { position: absolute; left: 8%; top: 50%; transform: translateY(-50%); z-index: 2; background: #fffdf8; border: 2px solid #111; min-width: 142px; min-height: 62px; display: grid; place-items: center; color: #111; font-weight: 1000; font-size: clamp(25px, 2.4vw, 42px); }
.goteborg-history-item p { position: absolute; left: 8%; right: 8%; bottom: 26px; z-index: 2; margin: 0; color: #fff; font-weight: 850; line-height: 1.25; text-shadow: 0 2px 12px rgba(0,0,0,.5); }

.goteborg-expect-section { background: linear-gradient(180deg, #fffdf8, #fff4e8); }
.goteborg-expect-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.goteborg-expect-card { position: relative; overflow: hidden; border-radius: 42px; min-height: 440px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.goteborg-expect-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(1.08) contrast(1.06); }
.goteborg-expect-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.78)); }
.goteborg-expect-card > *:not(img) { position: relative; z-index: 2; }
.goteborg-card-number { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--uvaly-gold); color: #111; font-size: 24px; font-weight: 1000; margin-bottom: 12px; }
.goteborg-expect-card h3 { margin: 0; color: #fff; font-size: clamp(24px, 2.2vw, 36px); line-height: 1; }
.goteborg-expect-card p { margin: 12px 0 0; color: rgba(255,255,255,.9); font-size: 17px; line-height: 1.42; font-weight: 650; }
.goteborg-date-ribbon { margin: clamp(26px, 3vw, 42px) auto 0; width: fit-content; text-align: center; padding: 12px 28px; border-radius: 999px; background: var(--uvaly-red); color: #fff; font-weight: 1000; letter-spacing: .08em; font-size: clamp(18px, 2vw, 30px); }

.goteborg-payment-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 470px); gap: clamp(22px, 4vw, 58px); align-items: stretch; background: #fffdf8; }
.goteborg-payment-copy { border-radius: 34px; padding: clamp(22px, 3.2vw, 48px); background: linear-gradient(135deg, #fff, #fff2e4); }
.goteborg-payment-copy h2 { margin: 8px 0 16px; }
.goteborg-payment-copy p { max-width: 900px; margin: 0; color: #2c2420; font-size: clamp(18px, 1.6vw, 26px); line-height: 1.36; font-weight: 650; }
.goteborg-payment-reasons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 28px 0; }
.goteborg-payment-reasons article { border-radius: 24px; background: #fff; padding: 18px; border: 1px solid var(--uvaly-line); }
.goteborg-payment-reasons strong { display: block; font-size: clamp(22px, 2vw, 34px); color: var(--uvaly-red); line-height: 1; }
.goteborg-payment-reasons span { display: block; margin-top: 8px; color: #483e38; font-weight: 800; }
.goteborg-outline-link { display: inline-flex; align-items: center; justify-content: center; background: #111; min-height: 50px; padding: 13px 22px; }

.goteborg-qr-card { border-radius: 34px; padding: 22px; background: #111; color: #fff; align-self: start; }
.goteborg-qr-head { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.goteborg-qr-card .goteborg-mini-label { color: var(--uvaly-gold); }
.goteborg-qr-card h3 { margin: 2px 0 0; color: #fff; font-size: 34px; line-height: 1; }
.goteborg-bank-pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 10px 12px; border-radius: 999px; font-size: 13px; font-weight: 1000; white-space: nowrap; }
.goteborg-qr-card label { display: block; color: #fff; margin-bottom: 7px; font-weight: 900; }
.goteborg-amount-input-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.goteborg-amount-input-row input { width: 100%; height: 48px; border-radius: 999px; border: 2px solid rgba(255,255,255,.22); background: #fff; padding: 0 18px; color: #111; font-size: 20px; font-weight: 900; outline: none; }
.goteborg-amount-input-row input:focus { border-color: var(--uvaly-gold); }
.goteborg-quick-amounts { display: flex; flex-wrap: wrap; gap: 8px; margin: 13px 0 18px; }
.goteborg-quick-amounts button { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; border-radius: 999px; padding: 8px 11px; font-weight: 900; cursor: pointer; }
.goteborg-quick-amounts button:hover { background: var(--uvaly-gold); color: #111; }
.goteborg-qr-wrap { display: grid; grid-template-columns: 180px 1fr; gap: 16px; align-items: center; }
.goteborg-qr-wrap img { width: 180px; aspect-ratio: 1; object-fit: contain; background: #fff; border-radius: 22px; padding: 10px; }
.goteborg-qr-info { display: grid; gap: 6px; }
.goteborg-qr-info strong { display: block; color: #fff; font-size: 15px; line-height: 1.2; word-break: break-word; }
.goteborg-qr-info span:last-child { color: rgba(255,255,255,.78); text-transform: none; letter-spacing: 0; font-size: 13px; font-weight: 700; margin-top: 5px; }
#goteborgQrPayload { width: 100%; min-height: 58px; margin-top: 16px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: rgba(255,255,255,.78); border-radius: 16px; padding: 10px; resize: vertical; font-size: 11px; }

@media (min-width: 1350px) {
    .goteborg-dashboard { grid-template-columns: minmax(500px, 1.5fr) minmax(255px, .55fr) minmax(390px, .9fr); }
}

@media (max-width: 1180px) {
    .goteborg-above-fold { min-height: auto; padding-top: calc(var(--menu-clearance) + 18px); }
    .goteborg-dashboard { height: auto; max-height: none; min-height: 0; grid-template-columns: 1fr; }
    .goteborg-media-panel { min-height: 620px; }
    .goteborg-map-panel { min-height: 680px; }
    .goteborg-map-control-strip { grid-template-columns: repeat(3, 1fr); }
    .goteborg-status-panel { min-height: 0; }
    .goteborg-history-list,
    .goteborg-expect-grid,
    .goteborg-payment-section { grid-template-columns: 1fr; }
    .goteborg-payment-reasons { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .goteborg-above-fold { --menu-clearance: 82px; padding: calc(var(--menu-clearance) + 14px) 10px 14px; }
    .goteborg-media-panel { grid-template-columns: 1fr; grid-template-rows: 300px 220px 220px; min-height: 0; }
    .goteborg-video-tile { grid-column: auto; }
    .goteborg-map-panel { min-height: 640px; }
    .goteborg-status-panel h2 { font-size: 34px; }
    .goteborg-why-grid,
    .goteborg-stat-grid { grid-template-columns: 1fr; }
    .goteborg-section { padding-left: 12px; padding-right: 12px; }
    .goteborg-history-item { min-height: 320px; border-radius: 40px; }
    .goteborg-year-badge { top: 34px; transform: none; }
    .goteborg-expect-card { min-height: 430px; border-radius: 34px; }
    .goteborg-qr-wrap { grid-template-columns: 1fr; }
    .goteborg-qr-wrap img { width: min(260px, 100%); margin: 0 auto; }
    .goteborg-amount-input-row { grid-template-columns: 1fr; }
}

/* === v9: stabilizace rozložení proti globálním stylům webu === */
html, body { overflow-x: hidden; }

main.other-main.goteborg-campaign {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

.goteborg-campaign iframe {
    margin: 0 !important;
    max-width: 100%;
}

.goteborg-above-fold {
    --menu-clearance: clamp(92px, 7.5vw, 118px);
    width: 100%;
    height: 100vh;
    min-height: 680px;
    padding: calc(var(--menu-clearance) + 12px) clamp(12px, 2.2vw, 30px) 18px;
    display: flex;
    align-items: stretch;
}

.goteborg-dashboard {
    width: min(1240px, 100%);
    max-width: 1240px;
    height: min(610px, calc(100vh - var(--menu-clearance) - 34px));
    min-height: 520px;
    grid-template-columns: minmax(0, 1.34fr) minmax(220px, .58fr) minmax(300px, .78fr);
    gap: clamp(10px, 1.25vw, 16px);
    align-self: stretch;
}

.goteborg-media-panel,
.goteborg-map-panel,
.goteborg-status-panel { min-width: 0; max-width: 100%; }

.goteborg-media-panel {
    grid-template-rows: minmax(0, 1.32fr) minmax(0, .78fr);
    gap: 10px;
    padding: 10px;
}

.goteborg-video-frame iframe {
    width: 100% !important;
    height: 100% !important;
}

.goteborg-tile-overlay strong { font-size: clamp(18px, 1.65vw, 28px); }
.goteborg-photo-tile figcaption { font-size: clamp(11px, .8vw, 14px); }

.goteborg-map-panel { padding: 14px 12px 10px; }
.goteborg-map-head h1 { font-size: clamp(30px, 2.7vw, 44px); }
.goteborg-route-legend { gap: 6px 11px; font-size: 13px; }
.goteborg-map-stage { border-radius: 20px; }
.goteborg-map-control-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.goteborg-small-btn { min-height: 34px; font-size: 11px; padding: 0 8px; }

.goteborg-status-panel {
    padding: clamp(14px, 1.35vw, 20px);
    gap: 10px;
    overflow: hidden;
}
.goteborg-status-panel h2 {
    font-size: clamp(24px, 2.15vw, 36px);
    letter-spacing: -.035em;
    line-height: 1.02;
}
.goteborg-status-lead { font-size: clamp(13px, .95vw, 15px); line-height: 1.32; }
.goteborg-money-box { padding: 12px; border-radius: 20px; }
.goteborg-amount-row strong { font-size: clamp(24px, 1.9vw, 34px); }
.goteborg-percent-pill { padding: 8px 10px; font-size: 12px; }
.goteborg-progress-track { height: 12px; margin: 10px 0; }
.goteborg-stat-grid { gap: 7px; }
.goteborg-stat-grid div { padding: 8px 9px; border-radius: 14px; }
.goteborg-stat-grid strong { font-size: 15px; }
.goteborg-current-stop { grid-template-columns: 52px 1fr; gap: 10px; padding: 9px; border-radius: 20px; }
.goteborg-current-stop img { width: 52px; height: 52px; }
.goteborg-current-stop strong { font-size: 19px; }
.goteborg-current-stop p { font-size: 11px; }
.goteborg-why-grid { gap: 6px; }
.goteborg-why-grid article { padding: 9px 8px; border-radius: 14px; }
.goteborg-why-grid strong { font-size: 15px; }
.goteborg-why-grid span { font-size: 10.5px; line-height: 1.22; }
.goteborg-main-cta { min-height: 42px; padding: 10px 16px; font-size: 13px; }

/* Sekce pod první obrazovkou: uhlazenější a čitelnější proti původnímu rozbití */
.goteborg-section {
    padding: clamp(34px, 4.2vw, 64px) clamp(14px, 3vw, 42px);
}
.goteborg-section-head { max-width: 1120px; }
.goteborg-section h2,
.goteborg-section-head h2 {
    font-size: clamp(36px, 4vw, 66px);
    letter-spacing: -.035em;
}
.goteborg-section-head p { font-size: clamp(16px, 1.15vw, 19px); }

.goteborg-history-section { padding-top: clamp(34px, 4vw, 56px); }
.goteborg-history-list {
    max-width: 1040px;
    gap: clamp(18px, 3.2vw, 52px);
    align-items: start;
}
.goteborg-history-item {
    width: min(100%, 270px);
    aspect-ratio: 1 / 1;
    min-height: 0;
    justify-self: center;
    border-radius: 50%;
    border-width: 3px;
}
.goteborg-history-item::after { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.58)); }
.goteborg-year-badge {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 130px;
    min-height: 54px;
    font-size: clamp(28px, 2.2vw, 38px);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.goteborg-history-item p {
    left: 12%;
    right: 12%;
    bottom: 20px;
    font-size: 14px;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.goteborg-expect-section { padding-top: clamp(34px, 4vw, 58px); }
.goteborg-section-head.compact {
    display: block;
    text-align: center;
    margin-bottom: clamp(18px, 2.4vw, 30px);
}
.goteborg-section-head.compact .goteborg-mini-label { display: none; }
.goteborg-expect-grid {
    max-width: 1080px;
    gap: clamp(14px, 2vw, 24px);
}
.goteborg-expect-card {
    min-height: 330px;
    border-radius: 34px;
    padding: 18px;
    border-width: 3px;
}
.goteborg-expect-card::after { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.74)); }
.goteborg-card-number {
    width: 44px;
    height: 44px;
    font-size: 22px;
    margin-bottom: 10px;
}
.goteborg-expect-card h3 { font-size: clamp(21px, 1.75vw, 30px); line-height: 1.02; }
.goteborg-expect-card p { font-size: clamp(14px, 1vw, 16px); line-height: 1.32; margin-top: 9px; }
.goteborg-date-ribbon { margin-top: clamp(22px, 2.8vw, 34px); font-size: clamp(16px, 1.7vw, 24px); }

.goteborg-payment-section {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
    gap: clamp(18px, 3vw, 40px);
}
.goteborg-payment-copy { padding: clamp(22px, 3vw, 40px); }
.goteborg-payment-reasons { gap: 10px; }
.goteborg-qr-card { padding: 20px; }
.goteborg-qr-card h3 { font-size: 30px; }
.goteborg-qr-wrap { grid-template-columns: 165px 1fr; }
.goteborg-qr-wrap img { width: 165px; }

@media (max-width: 1180px) {
    .goteborg-above-fold {
        height: auto;
        min-height: 0;
        padding-top: calc(var(--menu-clearance) + 18px);
    }
    .goteborg-dashboard {
        width: min(760px, 100%);
        height: auto;
        max-height: none;
        min-height: 0;
        grid-template-columns: 1fr;
    }
    .goteborg-media-panel { min-height: 580px; }
    .goteborg-map-panel { min-height: 620px; }
}

@media (max-width: 720px) {
    .goteborg-above-fold { --menu-clearance: 82px; padding-left: 10px; padding-right: 10px; }
    .goteborg-media-panel { min-height: 0; grid-template-rows: 260px 200px 200px; }
    .goteborg-map-panel { min-height: 570px; }
    .goteborg-history-list,
    .goteborg-expect-grid { grid-template-columns: 1fr; }
    .goteborg-history-item { width: min(340px, 100%); }
    .goteborg-expect-card { min-height: 360px; }
    .goteborg-payment-section { grid-template-columns: 1fr; }
}

/* === v10: úpravy podle schváleného wireframu, kompaktní první obrazovka a čistší design === */
:root { --goteborg-nav-clearance: clamp(100px, 7.2vw, 126px); }

main.other-main.goteborg-campaign {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    background: #fffaf2;
}

.goteborg-above-fold {
    --menu-clearance: var(--goteborg-nav-clearance);
    height: 100svh;
    min-height: 0;
    padding: calc(var(--menu-clearance) + 10px) clamp(12px, 2vw, 28px) 12px;
    display: flex;
    align-items: stretch;
    background:
        radial-gradient(circle at 8% 12%, rgba(239,157,47,.24), transparent 27%),
        radial-gradient(circle at 90% 20%, rgba(155,7,28,.12), transparent 34%),
        linear-gradient(135deg, #fff7ea 0%, #fffdf8 58%, #fff0dd 100%);
    border-bottom: 4px solid var(--uvaly-red);
    overflow: hidden;
}

.goteborg-dashboard {
    width: min(1360px, 100%);
    max-width: 1360px;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(240px, .62fr) minmax(270px, .66fr);
    gap: clamp(10px, 1.15vw, 16px);
    align-self: stretch;
}

.goteborg-media-panel,
.goteborg-map-panel,
.goteborg-status-panel,
.goteborg-video-tile,
.goteborg-photo-tile,
.goteborg-history-item,
.goteborg-expect-card,
.goteborg-qr-card,
.goteborg-payment-copy {
    border: 0 !important;
    box-shadow: 0 18px 48px rgba(38, 20, 13, .13);
}

.goteborg-media-panel {
    grid-template-rows: minmax(0, 1.42fr) minmax(0, .72fr);
    gap: 9px;
    padding: 9px;
    border-radius: 28px;
    background: rgba(255,255,255,.64);
    backdrop-filter: blur(6px);
}

.goteborg-video-tile,
.goteborg-photo-tile {
    border-radius: 22px;
    overflow: hidden;
    background: #050505;
}
.goteborg-video-tile::after,
.goteborg-photo-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.goteborg-video-frame iframe { width: 100% !important; height: 100% !important; margin: 0 !important; }
.goteborg-tile-overlay,
.goteborg-photo-tile figcaption { display: none !important; }

.goteborg-map-panel {
    padding: 12px 12px 10px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,237,.82));
    position: relative;
    overflow: hidden;
}
.goteborg-map-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--uvaly-red), var(--uvaly-gold));
    opacity: .95;
}
.goteborg-map-head { position: relative; z-index: 2; }
.goteborg-map-head h1 { font-size: clamp(30px, 2.65vw, 44px); margin: 2px 0 4px; letter-spacing: -.04em; }
.goteborg-route-legend { font-size: 12px; gap: 5px 10px; }
.goteborg-route-legend i { width: 24px; height: 7px; }
.goteborg-map-stage { border-radius: 18px; margin-top: 4px; }
.goteborg-map-control-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding-top: 7px; }
.goteborg-small-btn { min-height: 31px; font-size: 10px; padding: 0 7px; }
.route-label-sub { font-size: 9px; letter-spacing: .045em; }
.route-label-text { font-size: 14px; }

.goteborg-status-panel {
    padding: clamp(13px, 1.2vw, 18px);
    gap: 9px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 96% 4%, rgba(239,157,47,.32), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,246,233,.9));
}
.goteborg-status-panel h2 {
    font-size: clamp(22px, 1.85vw, 31px);
    line-height: 1.02;
    margin: 0;
}
.goteborg-status-lead { font-size: clamp(12px, .85vw, 14px); line-height: 1.25; }
.goteborg-money-box { padding: 11px; border-radius: 20px; }
.goteborg-amount-row strong { font-size: clamp(25px, 2vw, 36px); }
.goteborg-percent-pill { padding: 7px 9px; font-size: 11px; }
.goteborg-progress-track { height: 10px; margin: 9px 0; }
.goteborg-stat-grid { gap: 6px; }
.goteborg-stat-grid div { padding: 7px 8px; border-radius: 14px; }
.goteborg-stat-grid strong { font-size: 14px; }
.goteborg-current-stop { grid-template-columns: 48px 1fr; gap: 9px; padding: 8px; border-radius: 19px; }
.goteborg-current-stop img { width: 48px; height: 48px; border-width: 2px; }
.goteborg-current-stop strong { font-size: 18px; }
.goteborg-current-stop p { font-size: 10.5px; line-height: 1.2; }
.goteborg-why-grid { display: none !important; }
.goteborg-main-cta { min-height: 39px; padding: 9px 14px; font-size: 12px; }

.goteborg-section {
    border-bottom: 0;
    padding: clamp(34px, 4vw, 58px) clamp(14px, 3vw, 44px);
}
.goteborg-section::before { height: 3px; opacity: .25; }
.goteborg-section-head { margin-bottom: clamp(20px, 2.5vw, 34px); }
.goteborg-section h2,
.goteborg-section-head h2 { font-size: clamp(38px, 4.1vw, 68px); }

.goteborg-history-section { background: #fffdf8; }
.goteborg-history-list {
    max-width: 1060px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 68px);
    overflow: visible;
}
.goteborg-history-item {
    width: min(100%, 286px);
    aspect-ratio: 1;
    min-height: 0;
    border-radius: 50%;
    overflow: visible;
    background: transparent;
    isolation: visible;
    box-shadow: none !important;
}
.goteborg-history-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 46px rgba(0,0,0,.18);
}
.goteborg-history-item::after {
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.25));
    box-shadow: inset 0 0 0 4px rgba(0,0,0,.75), inset 0 0 0 8px rgba(255,255,255,.22);
}
.goteborg-year-badge {
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    min-width: 112px;
    min-height: 58px;
    padding: 15px 18px 11px;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--uvaly-red), var(--uvaly-red-dark));
    color: #fff;
    font-size: clamp(28px, 2.3vw, 38px);
    line-height: 1;
    box-shadow: 0 14px 28px rgba(155,7,28,.28);
}
.goteborg-year-badge::before {
    content: 'ROK';
    position: absolute;
    left: 18px;
    top: 7px;
    color: var(--uvaly-gold);
    font-size: 9px;
    letter-spacing: .18em;
    font-weight: 1000;
}
.goteborg-history-item p { display: none !important; }

.goteborg-expect-section { background: linear-gradient(180deg, #fffdf8, #fff3e4); }
.goteborg-section-head.compact { text-align: center; }
.goteborg-expect-grid {
    max-width: 1160px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 28px);
}
.goteborg-expect-card {
    min-height: 0;
    padding: 0;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 20px 48px rgba(38,20,13,.14);
}
.goteborg-expect-card::after { display: none; }
.goteborg-expect-card img {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(190px, 17vw, 260px);
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.06) contrast(1.03);
}
.goteborg-expect-card > *:not(img) { position: relative; z-index: 2; }
.goteborg-card-number {
    position: absolute !important;
    top: 18px;
    left: 18px;
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 50%;
    background: var(--uvaly-gold);
    box-shadow: 0 14px 24px rgba(0,0,0,.22);
}
.goteborg-expect-card h3 {
    margin: 0;
    padding: 24px 24px 0;
    color: var(--uvaly-red);
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.06;
}
.goteborg-expect-card p {
    margin: 0;
    padding: 11px 24px 26px;
    color: #2b2420;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.42;
    font-weight: 720;
}
.goteborg-date-ribbon {
    margin-top: clamp(22px, 3vw, 38px);
    padding: 14px 34px;
    border-radius: 18px 999px 999px 18px;
    background: linear-gradient(135deg, var(--uvaly-red), var(--uvaly-red-dark));
    box-shadow: 0 18px 36px rgba(155,7,28,.22);
}

.goteborg-payment-section {
    display: block;
    background: #fffdf8;
}
.goteborg-qr-card.goteborg-qr-app {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(22px, 3vw, 44px);
    align-items: stretch;
    padding: clamp(22px, 3vw, 36px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 12%, rgba(239,157,47,.18), transparent 28%),
        linear-gradient(135deg, #fff, #fff1e1);
    color: var(--uvaly-ink);
    box-shadow: 0 22px 60px rgba(38,20,13,.15);
}
.goteborg-qr-copy h2 {
    margin: 8px 0 12px;
    color: var(--uvaly-red);
    font-size: clamp(36px, 4vw, 66px);
    line-height: .98;
    letter-spacing: -.04em;
}
.goteborg-qr-copy p {
    max-width: 760px;
    margin: 0;
    color: #2c2420;
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.38;
    font-weight: 720;
}
.goteborg-payment-reasons {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0 20px;
}
.goteborg-payment-reasons button {
    appearance: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    border-radius: 20px;
    background: #fff;
    padding: 15px 14px;
    box-shadow: inset 0 0 0 1px rgba(155,7,28,.12), 0 10px 24px rgba(38,20,13,.07);
    transition: transform .16s ease, box-shadow .16s ease;
}
.goteborg-payment-reasons button:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 2px rgba(155,7,28,.25), 0 16px 30px rgba(38,20,13,.12); }
.goteborg-payment-reasons strong { display: block; color: var(--uvaly-red); font-size: clamp(19px, 1.6vw, 28px); line-height: 1; }
.goteborg-payment-reasons span { display: block; margin-top: 7px; color: #50433b; font-weight: 850; font-size: 12px; line-height: 1.2; }
.goteborg-outline-link { background: #111; color: #fff; width: fit-content; }
.goteborg-qr-tool {
    border-radius: 28px;
    padding: 22px;
    background: #111;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.goteborg-qr-head { margin-bottom: 16px; }
.goteborg-qr-card .goteborg-mini-label { color: var(--uvaly-gold); }
.goteborg-qr-card h3 { color: #fff; font-size: 30px; }
.goteborg-bank-pill { white-space: nowrap; }
.goteborg-qr-card label { color: #fff; }
.goteborg-amount-input-row { grid-template-columns: minmax(0, 1fr) auto; }
.goteborg-amount-input-row input { min-width: 0; }
.goteborg-qr-wrap { grid-template-columns: 170px 1fr; gap: 16px; }
.goteborg-qr-wrap img { width: 170px; }
.goteborg-qr-info strong { color: #fff; }
.goteborg-qr-info span { color: rgba(255,255,255,.62); }
#goteborgQrPayload { min-height: 58px; margin-top: 14px; }

@media (max-height: 760px) and (min-width: 1181px) {
    :root { --goteborg-nav-clearance: 112px; }
    .goteborg-above-fold { padding-top: calc(var(--menu-clearance) + 8px); padding-bottom: 10px; }
    .goteborg-media-panel { grid-template-rows: minmax(0, 1.34fr) minmax(0, .62fr); padding: 8px; gap: 8px; }
    .goteborg-map-panel { padding: 10px 10px 8px; }
    .goteborg-map-head h1 { font-size: clamp(28px, 2.45vw, 39px); }
    .goteborg-mini-label, .goteborg-eyebrow { font-size: 10px; }
    .goteborg-route-legend { font-size: 11px; }
    .goteborg-status-panel { padding: 12px; gap: 7px; }
    .goteborg-status-panel h2 { font-size: clamp(20px, 1.65vw, 28px); }
    .goteborg-status-lead { display: none; }
    .goteborg-money-box { padding: 10px; }
    .goteborg-stat-grid div { padding: 6px 7px; }
    .goteborg-current-stop { padding: 7px; }
    .goteborg-main-cta { min-height: 36px; }
}

@media (max-width: 1180px) {
    .goteborg-above-fold { height: auto; min-height: 0; padding-top: calc(var(--menu-clearance) + 18px); overflow: visible; }
    .goteborg-dashboard { width: min(820px, 100%); grid-template-columns: 1fr; }
    .goteborg-media-panel { min-height: 560px; }
    .goteborg-map-panel { min-height: 620px; }
    .goteborg-status-panel { min-height: 0; }
    .goteborg-payment-reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .goteborg-qr-card.goteborg-qr-app { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    :root { --goteborg-nav-clearance: 84px; }
    .goteborg-above-fold { padding-left: 10px; padding-right: 10px; }
    .goteborg-media-panel { grid-template-columns: 1fr; grid-template-rows: 260px 180px 180px; min-height: 0; }
    .goteborg-video-tile { grid-column: auto; }
    .goteborg-map-panel { min-height: 570px; }
    .goteborg-history-list, .goteborg-expect-grid { grid-template-columns: 1fr; }
    .goteborg-history-item { width: min(330px, 86vw); }
    .goteborg-year-badge { left: 14px; top: auto; bottom: 14px; transform: none; }
    .goteborg-payment-reasons { grid-template-columns: 1fr; }
    .goteborg-qr-wrap { grid-template-columns: 1fr; }
    .goteborg-qr-wrap img { width: min(260px, 100%); margin: 0 auto; }
    .goteborg-amount-input-row { grid-template-columns: 1fr; }
}

/* === v11: scoped site h3 style + simplified QR payment app === */
main.other-main.goteborg-campaign h3 {
  text-align: center;
  top: -50px;
  font-size: 1.5em;
  position: relative;
  padding: 20px;
  background-color: black;
  color: #fff;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 80px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 80px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 80px;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 2;
  opacity: 0.92;
  width: 100%;
  box-sizing: border-box;
}

main.other-main.goteborg-campaign .goteborg-expect-card h3 {
  margin: 0 0 -26px;
  top: -34px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.08;
  padding: 14px 18px 15px;
  text-align: left;
}

main.other-main.goteborg-campaign .goteborg-expect-card p {
  padding-top: 0;
}

main.other-main.goteborg-campaign .goteborg-qr-head h3 {
  margin: 0;
  top: -24px;
  font-size: clamp(20px, 2vw, 30px);
  padding: 16px 22px;
  text-align: left;
}

main.other-main.goteborg-campaign .goteborg-payment-section {
  padding: clamp(28px, 4.2vw, 64px) clamp(16px, 4vw, 58px);
  background:
    radial-gradient(circle at 12% 0%, rgba(239,157,47,.16), transparent 30%),
    linear-gradient(180deg, #fffdf8, #fff6ed);
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
  max-width: 1180px;
  margin: 0 auto;
  display: block;
  padding: clamp(22px, 3vw, 38px);
  border: 0;
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  color: var(--uvaly-ink);
  box-shadow: 0 22px 60px rgba(38,20,13,.12);
}

main.other-main.goteborg-campaign .goteborg-qr-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label label"
    "title title"
    "text text"
    "amounts link";
  column-gap: 22px;
  row-gap: 12px;
  align-items: end;
}
main.other-main.goteborg-campaign .goteborg-qr-copy > .goteborg-mini-label { grid-area: label; }
main.other-main.goteborg-campaign .goteborg-qr-copy > h2 { grid-area: title; }
main.other-main.goteborg-campaign .goteborg-qr-copy > p { grid-area: text; }
main.other-main.goteborg-campaign .goteborg-payment-reasons { grid-area: amounts; }
main.other-main.goteborg-campaign .goteborg-outline-link { grid-area: link; }

main.other-main.goteborg-campaign .goteborg-qr-copy h2 {
  max-width: 960px;
  margin: 0;
  color: var(--uvaly-red);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
}

main.other-main.goteborg-campaign .goteborg-qr-copy p {
  max-width: 900px;
  margin: 0;
  color: #2c2420;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.38;
  font-weight: 720;
}

main.other-main.goteborg-campaign .goteborg-payment-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 0;
}

main.other-main.goteborg-campaign .goteborg-payment-reasons button {
  flex: 0 0 auto;
  min-width: 128px;
  border: 1px solid rgba(155,7,28,.16);
  border-radius: 18px;
  background: #fff;
  padding: 12px 14px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(38,20,13,.06);
}

main.other-main.goteborg-campaign .goteborg-payment-reasons button strong {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1;
}

main.other-main.goteborg-campaign .goteborg-payment-reasons button span {
  font-size: 12px;
  line-height: 1.15;
}

main.other-main.goteborg-campaign .goteborg-outline-link {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  align-self: center;
  white-space: nowrap;
}

main.other-main.goteborg-campaign .goteborg-qr-tool {
  margin-top: clamp(22px, 3vw, 34px);
  padding: 0 clamp(18px, 2.4vw, 30px) clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(155,7,28,.15);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #fff8ef);
  color: var(--uvaly-ink);
  display: grid;
  grid-template-columns: minmax(250px, .76fr) minmax(220px, 280px) minmax(260px, .62fr);
  grid-template-areas:
    "head head head"
    "controls qr info";
  gap: 18px 22px;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}

main.other-main.goteborg-campaign .goteborg-qr-head {
  grid-area: head;
  margin: 0 0 -18px;
  display: block;
}
main.other-main.goteborg-campaign .goteborg-qr-head .goteborg-mini-label { display: none; }
main.other-main.goteborg-campaign .goteborg-bank-pill {
  display: inline-flex;
  margin: 10px 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(155,7,28,.08);
  color: var(--uvaly-red);
  font-weight: 1000;
  font-size: 13px;
}

main.other-main.goteborg-campaign .goteborg-qr-tool label {
  color: #221b18;
  font-size: 17px;
  font-weight: 1000;
  margin: 0 0 8px;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row {
  grid-area: controls;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-self: center;
}
main.other-main.goteborg-campaign .goteborg-amount-input-row input {
  width: 100%;
  height: 56px;
  border: 2px solid rgba(155,7,28,.22);
  border-radius: 16px;
  background: #fff;
  color: #111;
  padding: 0 16px;
  font-size: 26px;
  font-weight: 1000;
  outline: none;
}
main.other-main.goteborg-campaign .goteborg-amount-input-row input:focus {
  border-color: var(--uvaly-red);
  box-shadow: 0 0 0 4px rgba(155,7,28,.1);
}
main.other-main.goteborg-campaign .goteborg-amount-input-row .goteborg-main-cta.small {
  min-height: 52px;
  width: 100%;
  font-size: 14px;
  padding: 0 16px;
}

main.other-main.goteborg-campaign .goteborg-qr-wrap {
  display: contents;
}
main.other-main.goteborg-campaign .goteborg-qr-wrap img {
  grid-area: qr;
  width: min(240px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 16px 36px rgba(38,20,13,.12);
}
main.other-main.goteborg-campaign .goteborg-qr-info {
  grid-area: info;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 16px;
  border-radius: 22px;
  background: #111;
  color: #fff;
}
main.other-main.goteborg-campaign .goteborg-qr-info span {
  color: rgba(255,255,255,.62);
}
main.other-main.goteborg-campaign .goteborg-qr-info strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  word-break: break-word;
}
main.other-main.goteborg-campaign .goteborg-qr-info span:last-child {
  color: var(--uvaly-gold);
  font-size: 14px;
  line-height: 1.3;
}
main.other-main.goteborg-campaign #goteborgQrPayload { display: none !important; }

@media (max-width: 980px) {
  main.other-main.goteborg-campaign .goteborg-qr-copy {
    grid-template-columns: 1fr;
    grid-template-areas: "label" "title" "text" "amounts" "link";
  }
  main.other-main.goteborg-campaign .goteborg-outline-link { width: fit-content; }
  main.other-main.goteborg-campaign .goteborg-qr-tool {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "controls" "qr" "info";
  }
}

@media (max-width: 720px) {
  main.other-main.goteborg-campaign h3 {
    top: -28px;
    font-size: 1.15em;
    padding: 14px;
    border-bottom-right-radius: 50px;
  }
  main.other-main.goteborg-campaign .goteborg-payment-reasons button { min-width: calc(50% - 6px); }
  main.other-main.goteborg-campaign .goteborg-qr-copy h2 { font-size: clamp(34px, 12vw, 48px); }
}

/* === v12: pouze jednoduchá QR aplikace přes celou šířku + odstranění částek/textů nahoře === */
main.other-main.goteborg-campaign .goteborg-payment-section {
  padding: clamp(30px, 4.2vw, 64px) clamp(14px, 4vw, 58px);
  background:
    radial-gradient(circle at 12% 0%, rgba(239,157,47,.12), transparent 32%),
    linear-gradient(180deg, #fffdf8, #fff6ed);
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
  width: min(1400px, 100%);
  max-width: none;
  margin: 0 auto;
  display: block;
  padding: clamp(20px, 2.6vw, 34px);
  border: 0 !important;
  border-radius: 34px;
  background: #fff;
  color: var(--uvaly-ink);
  box-shadow: 0 24px 64px rgba(38,20,13,.14);
  position: relative;
  overflow: hidden;
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, var(--uvaly-red), var(--uvaly-gold));
}

main.other-main.goteborg-campaign .goteborg-qr-titlebar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 clamp(18px, 2.2vw, 28px);
  padding-left: clamp(8px, 1.2vw, 16px);
}

main.other-main.goteborg-campaign .goteborg-qr-titlebar .goteborg-mini-label {
  flex: 0 0 auto;
  color: var(--uvaly-gold);
  background: #111;
  border-radius: 999px;
  padding: 9px 14px;
  letter-spacing: .14em;
  font-size: 11px;
}

main.other-main.goteborg-campaign .goteborg-qr-titlebar h2 {
  flex: 1 1 auto;
  margin: 0;
  color: var(--uvaly-red);
  text-align: right;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
}

main.other-main.goteborg-campaign .goteborg-qr-simple-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(250px, 330px) minmax(280px, .85fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding-left: clamp(8px, 1.2vw, 16px);
}

main.other-main.goteborg-campaign .goteborg-qr-controls {
  display: grid;
  gap: 12px;
  align-content: center;
}

main.other-main.goteborg-campaign .goteborg-qr-controls label {
  margin: 0;
  color: var(--uvaly-red);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .06em;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row input {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 2px solid rgba(155,7,28,.18);
  border-radius: 18px;
  background: #fffaf3;
  color: #111;
  padding: 0 18px;
  font-size: 26px;
  font-weight: 1000;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

main.other-main.goteborg-campaign .goteborg-amount-input-row input:focus {
  border-color: var(--uvaly-red);
  box-shadow: 0 0 0 4px rgba(155,7,28,.09);
}

main.other-main.goteborg-campaign .goteborg-amount-input-row .goteborg-main-cta.small {
  min-height: 58px;
  padding: 0 22px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(155,7,28,.18);
}

main.other-main.goteborg-campaign .goteborg-qr-code-box {
  justify-self: center;
  display: grid;
  place-items: center;
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 30px;
  background: linear-gradient(135deg, #111, #2a090f);
  padding: 18px;
  box-shadow: 0 20px 44px rgba(38,20,13,.18);
}

main.other-main.goteborg-campaign .goteborg-qr-code-box img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

main.other-main.goteborg-campaign .goteborg-qr-info {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 28px;
  background: #fff8ef;
  color: var(--uvaly-ink);
  border: 1px solid rgba(155,7,28,.12);
}

main.other-main.goteborg-campaign .goteborg-qr-info span {
  color: var(--uvaly-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 1000;
}

main.other-main.goteborg-campaign .goteborg-qr-info strong {
  color: #111;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.18;
  word-break: break-word;
}

main.other-main.goteborg-campaign .goteborg-qr-info #goteborgQrStatus {
  margin-top: 8px;
  color: var(--uvaly-red);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
}

main.other-main.goteborg-campaign #goteborgQrPayload { display: none !important; }

@media (max-width: 980px) {
  main.other-main.goteborg-campaign .goteborg-qr-titlebar {
    display: grid;
    justify-items: start;
  }
  main.other-main.goteborg-campaign .goteborg-qr-titlebar h2 {
    text-align: left;
  }
  main.other-main.goteborg-campaign .goteborg-qr-simple-grid {
    grid-template-columns: 1fr;
  }
  main.other-main.goteborg-campaign .goteborg-amount-input-row {
    grid-template-columns: 1fr;
  }
  main.other-main.goteborg-campaign .goteborg-qr-code-box {
    width: min(320px, 100%);
  }
}

/* === v13: poslední úpravy schváleného layoutu === */
main.other-main.goteborg-campaign .route-label-sub {
  font-size: 14px !important;
}

main.other-main.goteborg-campaign .route-label-text {
  font-size: 22px !important;
}

main.other-main.goteborg-campaign .goteborg-map-control-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 721px) {
  main.other-main.goteborg-campaign .goteborg-year-badge {
    top: 12% !important;
  }
}

/* QR platba: jeden jednoduchý, čitelný blok */
main.other-main.goteborg-campaign .goteborg-payment-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(239,157,47,.16), transparent 30%),
    linear-gradient(180deg, #fffdf8, #fff6eb);
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
  width: min(1320px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px) clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  text-align: center;
  border: 0 !important;
  border-radius: 34px;
  background: #fff;
  color: var(--uvaly-ink);
  box-shadow: 0 24px 64px rgba(38,20,13,.12);
  overflow: hidden;
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app::before {
  display: none !important;
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app h2 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.045em;
}

main.other-main.goteborg-campaign .goteborg-qr-account-line {
  margin: -4px 0 4px;
  color: #5e514b;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 800;
}

main.other-main.goteborg-campaign .goteborg-qr-account-line strong {
  color: var(--uvaly-red);
  font-weight: 1000;
}

main.other-main.goteborg-campaign .goteborg-qr-code-box {
  width: min(285px, 86vw);
  aspect-ratio: 1;
  padding: 12px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(38,20,13,.12), inset 0 0 0 1px rgba(155,7,28,.12);
}

main.other-main.goteborg-campaign .goteborg-qr-code-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  padding: 0;
  background: #fff;
  box-shadow: none;
}

main.other-main.goteborg-campaign .goteborg-qr-controls {
  width: min(520px, 100%);
  display: grid;
  gap: 10px;
}

main.other-main.goteborg-campaign .goteborg-qr-controls label {
  margin: 0;
  color: #3b302c;
  font-weight: 1000;
  font-size: 16px;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row input {
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 2px solid rgba(155,7,28,.22);
  border-radius: 14px;
  background: #fffaf3;
  color: #111;
  padding: 0 16px;
  font-size: 22px;
  font-weight: 1000;
  outline: none;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row input:focus {
  border-color: var(--uvaly-red);
  box-shadow: 0 0 0 4px rgba(155,7,28,.09);
}

main.other-main.goteborg-campaign .goteborg-amount-input-row .goteborg-main-cta.small {
  min-height: 54px;
  padding: 0 18px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: none;
}

main.other-main.goteborg-campaign .goteborg-qr-info {
  width: min(720px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  padding: 12px 16px;
  border: 0;
  border-radius: 18px;
  background: #fff8ef;
  color: #111;
}

main.other-main.goteborg-campaign .goteborg-qr-info span {
  color: var(--uvaly-muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

main.other-main.goteborg-campaign .goteborg-qr-info strong {
  color: #111;
  font-size: 15px;
  line-height: 1.15;
  word-break: break-word;
}

main.other-main.goteborg-campaign .goteborg-qr-info #goteborgQrStatus {
  flex-basis: 100%;
  margin: 2px 0 0;
  color: var(--uvaly-red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

main.other-main.goteborg-campaign .goteborg-transparent-note {
  max-width: 780px;
  margin: 0;
  color: #5a4b44;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

main.other-main.goteborg-campaign #goteborgQrPayload { display: none !important; }

@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-map-panel { order: 1; }
  main.other-main.goteborg-campaign .goteborg-status-panel { order: 2; }
  main.other-main.goteborg-campaign .goteborg-media-panel { order: 3; }

  main.other-main.goteborg-campaign .goteborg-map-control-strip {
    grid-template-columns: 1fr 1fr;
  }

  main.other-main.goteborg-campaign .goteborg-amount-input-row {
    grid-template-columns: 1fr;
  }

  main.other-main.goteborg-campaign .goteborg-qr-info {
    display: grid;
    justify-items: center;
  }
}

/* === v14: jednoduchá QR platba + stoletá výprava === */
main.other-main.goteborg-campaign .goteborg-centenary-callout {
  max-width: 1180px;
  margin: clamp(26px, 3vw, 42px) auto 0;
  padding: clamp(18px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 2.6vw, 34px);
  align-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 15%, rgba(239,157,47,.35), transparent 28%),
    linear-gradient(135deg, #111 0%, #2a080d 50%, var(--uvaly-red) 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(38,20,13,.18);
  overflow: hidden;
  position: relative;
}

main.other-main.goteborg-campaign .goteborg-centenary-callout::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

main.other-main.goteborg-campaign .goteborg-centenary-number {
  width: clamp(88px, 9vw, 124px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fffdf8;
  color: var(--uvaly-red);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.06em;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

main.other-main.goteborg-campaign .goteborg-centenary-copy { position: relative; z-index: 1; }
main.other-main.goteborg-campaign .goteborg-centenary-copy .goteborg-mini-label { color: var(--uvaly-gold); }
main.other-main.goteborg-campaign .goteborg-centenary-copy h3 {
  position: static !important;
  top: auto !important;
  width: auto !important;
  margin: 8px 0 10px !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #fff !important;
  opacity: 1 !important;
  text-align: left !important;
  font-size: clamp(24px, 2.6vw, 42px) !important;
  line-height: .98 !important;
  letter-spacing: -.035em;
  text-transform: none !important;
}

main.other-main.goteborg-campaign .goteborg-centenary-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.42;
  font-weight: 700;
}

main.other-main.goteborg-campaign .goteborg-centenary-callout .goteborg-main-cta.small {
  position: relative;
  z-index: 1;
  background: #fffdf8;
  color: var(--uvaly-red);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  white-space: nowrap;
}

main.other-main.goteborg-campaign .goteborg-payment-section {
  display: block !important;
  padding: clamp(34px, 5vw, 70px) clamp(16px, 3vw, 44px) !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(155,7,28,.09), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(239,157,47,.16), transparent 34%),
    linear-gradient(180deg, #fffdf8, #fff8f0) !important;
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
  width: min(1280px, 100%) !important;
  margin: 0 auto !important;
  padding: clamp(22px, 3.2vw, 44px) !important;
  display: grid !important;
  grid-template-columns: minmax(260px, .95fr) minmax(230px, 330px) minmax(280px, .85fr) !important;
  grid-template-areas:
    "intro qr info"
    "controls qr info" !important;
  gap: clamp(18px, 3vw, 42px) !important;
  align-items: center !important;
  justify-items: stretch !important;
  text-align: left !important;
  border: 0 !important;
  border-left: 8px solid var(--uvaly-red) !important;
  border-radius: 32px !important;
  background: rgba(255,255,255,.94) !important;
  color: var(--uvaly-ink) !important;
  box-shadow: 0 28px 72px rgba(38,20,13,.13) !important;
  overflow: visible !important;
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app::before { display: none !important; }

main.other-main.goteborg-campaign .goteborg-qr-intro { grid-area: intro; }
main.other-main.goteborg-campaign .goteborg-qr-intro .goteborg-mini-label { color: var(--uvaly-gold); }
main.other-main.goteborg-campaign .goteborg-qr-intro h2 {
  margin: 8px 0 14px !important;
  max-width: 560px;
  color: var(--uvaly-red) !important;
  font-size: clamp(34px, 4.1vw, 66px) !important;
  line-height: .92 !important;
  letter-spacing: -.055em !important;
  text-transform: none !important;
  text-align: left !important;
}

main.other-main.goteborg-campaign .goteborg-qr-intro p {
  max-width: 560px;
  margin: 0;
  color: #2d2521;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.36;
  font-weight: 750;
}

main.other-main.goteborg-campaign .goteborg-qr-controls {
  grid-area: controls;
  width: min(430px, 100%) !important;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 9px;
  align-self: end;
}

main.other-main.goteborg-campaign .goteborg-qr-controls label {
  margin: 0 !important;
  color: var(--uvaly-red) !important;
  font-size: 13px !important;
  font-weight: 1000 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

main.other-main.goteborg-campaign .goteborg-qr-controls input {
  width: 100%;
  height: 58px;
  min-width: 0;
  padding: 0 18px;
  border: 2px solid rgba(155,7,28,.18);
  border-radius: 18px;
  background: #fffaf4;
  color: #111;
  font-size: 28px;
  line-height: 1;
  font-weight: 1000;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

main.other-main.goteborg-campaign .goteborg-qr-controls input:focus {
  border-color: var(--uvaly-red);
  box-shadow: 0 0 0 5px rgba(155,7,28,.08);
}

main.other-main.goteborg-campaign #goteborgQrStatus {
  display: block;
  color: var(--uvaly-red);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

main.other-main.goteborg-campaign .goteborg-qr-code-box {
  grid-area: qr;
  justify-self: center;
  width: min(310px, 100%) !important;
  aspect-ratio: 1;
  padding: 18px !important;
  display: grid;
  place-items: center;
  border-radius: 30px !important;
  background: #fff !important;
  box-shadow: 0 24px 56px rgba(38,20,13,.16), inset 0 0 0 1px rgba(155,7,28,.12) !important;
}

main.other-main.goteborg-campaign .goteborg-qr-code-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
  border-radius: 14px !important;
  padding: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

main.other-main.goteborg-campaign .goteborg-qr-info {
  grid-area: info;
  width: auto !important;
  min-height: 100%;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 16px !important;
  align-content: center;
  justify-items: start !important;
  padding: clamp(20px, 2.4vw, 34px) !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
  text-align: left !important;
}

main.other-main.goteborg-campaign .goteborg-qr-info div { min-width: 0; }
main.other-main.goteborg-campaign .goteborg-qr-info span {
  display: block;
  color: rgba(255,255,255,.55) !important;
  font-size: 11px !important;
  line-height: 1.1;
  font-weight: 1000 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
}

main.other-main.goteborg-campaign .goteborg-qr-info strong {
  display: block;
  margin-top: 5px;
  color: #fff !important;
  font-size: clamp(17px, 1.35vw, 22px) !important;
  line-height: 1.15 !important;
  word-break: break-word;
}

main.other-main.goteborg-campaign .goteborg-transparent-note {
  max-width: none !important;
  margin: 4px 0 0 !important;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.78) !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
  font-weight: 750 !important;
}

main.other-main.goteborg-campaign .goteborg-amount-input-row,
main.other-main.goteborg-campaign .goteborg-qr-controls .goteborg-main-cta,
main.other-main.goteborg-campaign .goteborg-main-cta.small[type="submit"] {
  display: none !important;
}

@media (max-width: 980px) {
  main.other-main.goteborg-campaign .goteborg-centenary-callout {
    grid-template-columns: auto 1fr;
  }
  main.other-main.goteborg-campaign .goteborg-centenary-callout .goteborg-main-cta.small {
    grid-column: 1 / -1;
    justify-self: start;
  }
  main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
    grid-template-columns: 1fr !important;
    grid-template-areas: "intro" "controls" "qr" "info" !important;
    text-align: center !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-intro h2,
  main.other-main.goteborg-campaign .goteborg-qr-intro p,
  main.other-main.goteborg-campaign .goteborg-qr-controls label {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-controls { justify-self: center; }
  main.other-main.goteborg-campaign .goteborg-qr-info { min-height: 0; }
}

@media (max-width: 640px) {
  main.other-main.goteborg-campaign .goteborg-centenary-callout {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  main.other-main.goteborg-campaign .goteborg-centenary-copy h3,
  main.other-main.goteborg-campaign .goteborg-centenary-copy p { text-align: center !important; }
  main.other-main.goteborg-campaign .goteborg-centenary-callout .goteborg-main-cta.small { justify-self: center; }
  main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
    border-left: 0 !important;
    border-top: 7px solid var(--uvaly-red) !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-intro h2 {
    font-size: clamp(30px, 10vw, 44px) !important;
  }
}

/* === v15: logo 100 let + vyčištěná QR platba === */
main.other-main.goteborg-campaign .goteborg-centenary-logo {
  position: relative;
  z-index: 1;
  width: clamp(92px, 10vw, 142px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 48%, rgba(255,253,248,.98), rgba(255,245,226,.92));
  box-shadow: 0 22px 48px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.75);
  padding: 10px;
}

main.other-main.goteborg-campaign .goteborg-centenary-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.18));
}

main.other-main.goteborg-campaign .goteborg-centenary-number {
  display: none !important;
}

main.other-main.goteborg-campaign .goteborg-payment-section {
  padding: clamp(36px, 5vw, 76px) clamp(16px, 3vw, 44px) !important;
}

main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
  width: min(1320px, 100%) !important;
  padding: clamp(24px, 3.2vw, 46px) !important;
  grid-template-columns: minmax(250px, .8fr) minmax(280px, .8fr) minmax(320px, .9fr) !important;
  grid-template-areas:
    "intro intro info"
    "controls qr info" !important;
  gap: clamp(20px, 3vw, 46px) !important;
  align-items: center !important;
  border-left: 0 !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(239,157,47,.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fffdf8 58%, #fff4e9 100%) !important;
  overflow: hidden !important;
}

main.other-main.goteborg-campaign .goteborg-qr-intro {
  grid-area: intro !important;
  align-self: end;
  padding-right: 10px;
}

main.other-main.goteborg-campaign .goteborg-qr-intro .goteborg-mini-label {
  color: var(--uvaly-gold) !important;
  letter-spacing: .16em !important;
}

main.other-main.goteborg-campaign .goteborg-qr-intro h2 {
  max-width: 820px !important;
  margin: 8px 0 0 !important;
  color: var(--uvaly-red) !important;
  font-size: clamp(40px, 5.2vw, 76px) !important;
  line-height: .92 !important;
  letter-spacing: -.055em !important;
  text-align: left !important;
  text-transform: none !important;
}

main.other-main.goteborg-campaign .goteborg-qr-intro p {
  display: none !important;
}

main.other-main.goteborg-campaign .goteborg-qr-controls {
  grid-area: controls !important;
  width: min(380px, 100%) !important;
  align-self: center !important;
  justify-self: start !important;
  display: grid !important;
  gap: 10px !important;
}

main.other-main.goteborg-campaign .goteborg-qr-controls label {
  margin: 0 !important;
  color: #2b2420 !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 1000 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

main.other-main.goteborg-campaign .goteborg-qr-controls input {
  width: 100% !important;
  height: 60px !important;
  border: 2px solid rgba(155,7,28,.22) !important;
  border-radius: 18px !important;
  background: #fff !important;
  color: #111 !important;
  padding: 0 18px !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  outline: none !important;
  box-shadow: 0 10px 24px rgba(38,20,13,.06) !important;
}

main.other-main.goteborg-campaign .goteborg-qr-controls input:focus {
  border-color: var(--uvaly-red) !important;
  box-shadow: 0 0 0 5px rgba(155,7,28,.09), 0 12px 28px rgba(38,20,13,.08) !important;
}

main.other-main.goteborg-campaign #goteborgQrStatus {
  color: var(--uvaly-red) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

main.other-main.goteborg-campaign .goteborg-qr-code-box {
  grid-area: qr !important;
  justify-self: center !important;
  width: min(330px, 100%) !important;
  aspect-ratio: 1 !important;
  padding: 20px !important;
  border-radius: 32px !important;
  background: #fff !important;
  box-shadow: 0 28px 60px rgba(38,20,13,.15), inset 0 0 0 1px rgba(155,7,28,.12) !important;
}

main.other-main.goteborg-campaign .goteborg-qr-code-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: 0 !important;
  box-shadow: none !important;
}

main.other-main.goteborg-campaign .goteborg-qr-info {
  grid-area: info !important;
  min-height: 100% !important;
  align-self: stretch !important;
  display: grid !important;
  align-content: center !important;
  gap: 18px !important;
  padding: clamp(24px, 3vw, 42px) !important;
  border-radius: 32px !important;
  background: linear-gradient(150deg, #111 0%, #171313 56%, #2a080d 100%) !important;
  color: #fff !important;
  box-shadow: 0 26px 60px rgba(0,0,0,.18) !important;
  text-align: left !important;
}

main.other-main.goteborg-campaign .goteborg-qr-info span {
  display: block !important;
  color: rgba(255,255,255,.56) !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  font-weight: 1000 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
}

main.other-main.goteborg-campaign .goteborg-qr-info strong {
  display: block !important;
  margin-top: 6px !important;
  color: #fff !important;
  font-size: clamp(19px, 1.55vw, 25px) !important;
  line-height: 1.15 !important;
  word-break: break-word !important;
}

main.other-main.goteborg-campaign .goteborg-transparent-note {
  margin: 8px 0 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 760 !important;
}

@media (max-width: 980px) {
  main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
    grid-template-columns: 1fr !important;
    grid-template-areas: "intro" "controls" "qr" "info" !important;
    text-align: center !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-intro h2,
  main.other-main.goteborg-campaign .goteborg-qr-controls label {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-controls {
    justify-self: center !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-info {
    min-height: 0 !important;
  }
}

@media (max-width: 640px) {
  main.other-main.goteborg-campaign .goteborg-centenary-logo {
    width: min(150px, 54vw);
  }
  main.other-main.goteborg-campaign .goteborg-qr-intro h2 {
    font-size: clamp(34px, 12vw, 48px) !important;
    line-height: .96 !important;
  }
  main.other-main.goteborg-campaign .goteborg-qr-card.goteborg-qr-app {
    border-top: 7px solid var(--uvaly-red) !important;
  }
}


/* === v16: lokální oprava globálního pravidla form > * u QR platby === */
main.other-main.goteborg-campaign #goteborgQrForm > * {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

main.other-main.goteborg-campaign #goteborgQrForm > .goteborg-qr-code-box {
  width: min(330px, 100%) !important;
  max-width: 100% !important;
  justify-self: center !important;
}

main.other-main.goteborg-campaign #goteborgQrForm > .goteborg-qr-controls {
  width: min(380px, 100%) !important;
}

@media (max-width: 980px) {
  main.other-main.goteborg-campaign #goteborgQrForm > .goteborg-qr-controls {
    width: min(430px, 100%) !important;
  }
}


/* === v18: návrat k v16 + čistší rozvrstvení bez zásahu do mapy === */
main.other-main.goteborg-campaign .goteborg-above-fold {
  background: linear-gradient(135deg, #fff8ee 0%, #fffdf8 58%, #fff6ea 100%) !important;
  border-bottom: 3px solid var(--uvaly-red) !important;
  padding-left: clamp(16px, 2.4vw, 38px) !important;
  padding-right: clamp(16px, 2.4vw, 38px) !important;
}

main.other-main.goteborg-campaign .goteborg-dashboard {
  gap: clamp(14px, 1.45vw, 24px) !important;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .6fr) minmax(285px, .68fr) !important;
}

main.other-main.goteborg-campaign .goteborg-media-panel,
main.other-main.goteborg-campaign .goteborg-status-panel {
  box-shadow: 0 16px 38px rgba(38, 20, 13, .10) !important;
  border-radius: 26px !important;
  background: rgba(255,255,255,.82) !important;
}

main.other-main.goteborg-campaign .goteborg-media-panel {
  padding: clamp(8px, .85vw, 12px) !important;
  gap: clamp(8px, .8vw, 12px) !important;
  grid-template-rows: minmax(0, 1.38fr) minmax(0, .66fr) !important;
}

main.other-main.goteborg-campaign .goteborg-video-tile,
main.other-main.goteborg-campaign .goteborg-photo-tile {
  border-radius: 20px !important;
}

main.other-main.goteborg-campaign .goteborg-video-tile::after,
main.other-main.goteborg-campaign .goteborg-photo-tile::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16) !important;
}

main.other-main.goteborg-campaign .goteborg-status-panel {
  padding: clamp(15px, 1.25vw, 20px) !important;
  gap: clamp(9px, .8vw, 12px) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,248,237,.86)) !important;
}

main.other-main.goteborg-campaign .goteborg-status-panel h2 {
  font-size: clamp(23px, 1.85vw, 32px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
}

main.other-main.goteborg-campaign .goteborg-status-lead {
  font-size: clamp(12px, .82vw, 14px) !important;
  line-height: 1.25 !important;
  color: #3a302a !important;
}

main.other-main.goteborg-campaign .goteborg-money-box {
  padding: clamp(10px, .85vw, 13px) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: none !important;
}

main.other-main.goteborg-campaign .goteborg-progress-track {
  height: 10px !important;
  margin: 9px 0 !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid {
  gap: 7px !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid div {
  background: #fff8ed !important;
  border-radius: 13px !important;
  padding: 7px 8px !important;
}

main.other-main.goteborg-campaign .goteborg-current-stop {
  border-radius: 18px !important;
  padding: 8px !important;
  grid-template-columns: 48px 1fr !important;
}

main.other-main.goteborg-campaign .goteborg-current-stop img {
  width: 48px !important;
  height: 48px !important;
}

main.other-main.goteborg-campaign .goteborg-main-cta {
  min-height: 38px !important;
}

@media (max-height: 760px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    gap: clamp(10px, 1.05vw, 16px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-media-panel {
    grid-template-rows: minmax(0, 1.33fr) minmax(0, .58fr) !important;
  }
  main.other-main.goteborg-campaign .goteborg-status-panel h2 {
    font-size: clamp(20px, 1.55vw, 27px) !important;
  }
}

@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* === v19: kompaktní nadpis nad úvodním dashboardem bez zásahu do mapy === */
main.other-main.goteborg-campaign .goteborg-above-fold {
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(8px, .9vw, 12px) !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title {
  width: min(1680px, 100%) !important;
  margin: 0 auto !important;
  min-height: clamp(46px, 5.3vw, 68px) !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: end !important;
  gap: clamp(10px, 1.2vw, 20px) !important;
  padding: 0 clamp(4px, .4vw, 8px) !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: #090909 !important;
  color: #fff !important;
  font-size: clamp(10px, .75vw, 13px) !important;
  font-weight: 1000 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  margin: 0 !important;
  color: var(--uvaly-red) !important;
  font-size: clamp(34px, 4.2vw, 72px) !important;
  line-height: .88 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase !important;
  font-weight: 1000 !important;
}

main.other-main.goteborg-campaign .goteborg-dashboard {
  height: min(620px, calc(100vh - var(--menu-clearance) - 104px)) !important;
  min-height: 475px !important;
}

@media (max-height: 820px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    min-height: 42px !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(28px, 3.15vw, 50px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title span {
    min-height: 26px !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
  }
  main.other-main.goteborg-campaign .goteborg-dashboard {
    min-height: 445px !important;
    height: min(590px, calc(100vh - var(--menu-clearance) - 86px)) !important;
  }
}

@media (max-height: 720px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    min-height: 34px !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title span {
    display: none !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(24px, 2.5vw, 38px) !important;
    line-height: .9 !important;
  }
  main.other-main.goteborg-campaign .goteborg-dashboard {
    min-height: 420px !important;
    height: min(555px, calc(100vh - var(--menu-clearance) - 70px)) !important;
  }
}

@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: min(820px, 100%) !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(38px, 9vw, 76px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: auto !important;
    min-height: 0 !important;
  }
}

@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    gap: 6px !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(34px, 11vw, 54px) !important;
  }
}


/* === v20: výraznější a centrovaný úvodní nadpis === */
main.other-main.goteborg-campaign .goteborg-hero-title {
  width: min(1680px, 100%) !important;
  margin: 0 auto !important;
  min-height: clamp(58px, 6.2vw, 86px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 0 clamp(8px, 1vw, 18px) !important;
  text-align: center !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  order: 2 !important;
  align-self: center !important;
  justify-self: center !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--uvaly-red) !important;
  opacity: .78 !important;
  font-size: clamp(10px, .72vw, 13px) !important;
  letter-spacing: .22em !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  order: 1 !important;
  margin: 0 !important;
  max-width: 1180px !important;
  text-align: center !important;
  font-size: clamp(42px, 5.15vw, 86px) !important;
  line-height: .9 !important;
  letter-spacing: -.06em !important;
}

main.other-main.goteborg-campaign .goteborg-dashboard {
  height: min(610px, calc(100vh - var(--menu-clearance) - 118px)) !important;
  min-height: 465px !important;
}

@media (max-height: 820px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    min-height: 58px !important;
    gap: 1px !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(38px, 4vw, 64px) !important;
    line-height: .88 !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title span {
    display: inline-flex !important;
    font-size: 10px !important;
    letter-spacing: .2em !important;
  }
  main.other-main.goteborg-campaign .goteborg-dashboard {
    min-height: 430px !important;
    height: min(575px, calc(100vh - var(--menu-clearance) - 96px)) !important;
  }
}

@media (max-height: 720px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    min-height: 42px !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title span {
    display: none !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(30px, 3.1vw, 46px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-dashboard {
    min-height: 415px !important;
    height: min(548px, calc(100vh - var(--menu-clearance) - 66px)) !important;
  }
}

@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: min(820px, 100%) !important;
    text-align: center !important;
  }
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(38px, 9vw, 78px) !important;
  }
}

@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(34px, 10.5vw, 56px) !important;
  }
}


/* === v21: nadpis s jemným odsazením + test rozložení mapa / média / sbírka === */
main.other-main.goteborg-campaign .goteborg-hero-title {
  width: fit-content !important;
  max-width: min(1180px, calc(100% - 24px)) !important;
  padding: clamp(8px, .75vw, 13px) clamp(20px, 2.3vw, 46px) clamp(7px, .65vw, 11px) !important;
  margin: 0 auto clamp(5px, .55vw, 9px) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .62) !important;
  box-shadow: 0 10px 26px rgba(38, 20, 13, .06) !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  font-size: clamp(44px, 5.25vw, 88px) !important;
}

@media (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    grid-template-columns: minmax(275px, .62fr) minmax(560px, 1.48fr) minmax(305px, .68fr) !important;
    gap: clamp(16px, 1.55vw, 26px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-panel {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  main.other-main.goteborg-campaign .goteborg-media-panel {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  main.other-main.goteborg-campaign .goteborg-status-panel {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }
}

@media (max-height: 820px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    padding: 7px 28px 6px !important;
    margin-bottom: 5px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(38px, 4vw, 64px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: min(572px, calc(100vh - var(--menu-clearance) - 98px)) !important;
  }
}

@media (max-height: 720px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    padding: 5px 22px !important;
    margin-bottom: 3px !important;
    border-radius: 24px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(30px, 3.1vw, 46px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: min(545px, calc(100vh - var(--menu-clearance) - 68px)) !important;
  }
}

@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: fit-content !important;
    max-width: min(820px, calc(100% - 20px)) !important;
    border-radius: 28px !important;
  }
}

/* === v23: nadpis bez podkladového boxu, větší prostor okolo === */
main.other-main.goteborg-campaign .goteborg-hero-title {
  width: min(1680px, calc(100% - 28px)) !important;
  max-width: 1680px !important;
  margin: 0 auto clamp(10px, 1vw, 18px) !important;
  padding: clamp(14px, 1.35vw, 24px) clamp(18px, 2vw, 42px) clamp(10px, 1vw, 18px) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  font-size: clamp(48px, 5.6vw, 94px) !important;
  line-height: .88 !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  margin-top: 2px !important;
}

@media (max-height: 820px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    padding-top: 10px !important;
    padding-bottom: 8px !important;
    margin-bottom: 8px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(42px, 4.55vw, 70px) !important;
  }
}

@media (max-height: 720px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    padding-top: 6px !important;
    padding-bottom: 5px !important;
    margin-bottom: 5px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(32px, 3.25vw, 50px) !important;
  }
}

/* === v24: barva hlavního nadpisu podle schváleného zlatého odstínu === */
main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  color: #c5a572 !important;
}

/* === v25: bílé odkazy pouze ve stránce Göteborg === */
main.other-main.goteborg-campaign a,
.goteborg-campaign a {
  color: #fff;
}

/* === v26: připomínky k Partille Cupu, výraznější mapa, fakta a čistší výzva === */
main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  color: #c5a572 !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  color: var(--uvaly-red) !important;
}

@media (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    grid-template-columns: minmax(340px, .88fr) minmax(500px, 1.22fr) minmax(330px, .78fr) !important;
    gap: clamp(16px, 1.55vw, 26px) !important;
  }
}

main.other-main.goteborg-campaign .goteborg-map-head h1 {
  font-size: clamp(28px, 2.55vw, 44px) !important;
  letter-spacing: -.035em !important;
}

main.other-main.goteborg-campaign .goteborg-status-panel h2 {
  color: var(--uvaly-red) !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

main.other-main.goteborg-campaign .goteborg-partille-facts div {
  border-radius: 16px;
  padding: 9px 10px;
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 1px rgba(155,7,28,.10);
}

main.other-main.goteborg-campaign .goteborg-partille-facts strong,
main.other-main.goteborg-campaign .goteborg-partille-facts span {
  display: block;
}

main.other-main.goteborg-campaign .goteborg-partille-facts strong {
  color: var(--uvaly-red);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1;
  font-weight: 1000;
}

main.other-main.goteborg-campaign .goteborg-partille-facts span {
  margin-top: 4px;
  color: #463b35;
  font-size: 10.5px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

main.other-main.goteborg-campaign .goteborg-main-cta.goteborg-donate-cta {
  min-height: 48px !important;
  font-size: 16px !important;
  letter-spacing: .12em !important;
  box-shadow: 0 16px 30px rgba(155,7,28,.22) !important;
}

main.other-main.goteborg-campaign .route-label-sub {
  font-size: 14px !important;
}

main.other-main.goteborg-campaign .route-label-text {
  font-size: 18px !important;
}

main.other-main.goteborg-campaign .goteborg-centenary-callout {
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 300px) auto !important;
  gap: clamp(16px, 2.2vw, 28px) !important;
}

main.other-main.goteborg-campaign .goteborg-centenary-visible {
  max-width: 760px;
  margin: 0 0 10px !important;
  color: rgba(255,255,255,.9) !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.38 !important;
  font-weight: 850 !important;
}

main.other-main.goteborg-campaign .goteborg-centenary-details {
  max-width: 760px;
  color: rgba(255,255,255,.84);
  font-weight: 720;
}

main.other-main.goteborg-campaign .goteborg-centenary-details summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

main.other-main.goteborg-campaign .goteborg-centenary-details summary::-webkit-details-marker { display: none; }
main.other-main.goteborg-campaign .goteborg-centenary-details summary::after { content: '  +'; color: var(--uvaly-gold); }
main.other-main.goteborg-campaign .goteborg-centenary-details[open] summary::after { content: '  −'; }

main.other-main.goteborg-campaign .goteborg-centenary-details p {
  margin: 10px 0 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
}

main.other-main.goteborg-campaign .goteborg-bus-visual {
  position: relative;
  z-index: 1;
  min-height: 154px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

main.other-main.goteborg-campaign .goteborg-bus-visual::before {
  content: '2× autobus';
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--uvaly-gold);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 1000;
}

main.other-main.goteborg-campaign .goteborg-bus-visual .bus {
  width: min(210px, 100%);
  height: 68px;
  position: relative;
  border-radius: 14px 18px 14px 14px;
  box-shadow: 0 14px 24px rgba(0,0,0,.22);
}

main.other-main.goteborg-campaign .goteborg-bus-visual .bus::before,
main.other-main.goteborg-campaign .goteborg-bus-visual .bus::after {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.75);
}

main.other-main.goteborg-campaign .goteborg-bus-visual .bus::before { left: 22px; }
main.other-main.goteborg-campaign .goteborg-bus-visual .bus::after { right: 24px; }

main.other-main.goteborg-campaign .goteborg-bus-visual .bus span {
  position: absolute;
  top: 14px;
  width: 34px;
  height: 15px;
  border-radius: 5px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 0 rgba(255,255,255,.78);
}

main.other-main.goteborg-campaign .goteborg-bus-visual .bus span:nth-child(1) { left: 20px; }
main.other-main.goteborg-campaign .goteborg-bus-visual .bus span:nth-child(2) { left: 64px; }
main.other-main.goteborg-campaign .goteborg-bus-visual .bus span:nth-child(3) { left: 108px; width: 46px; }

main.other-main.goteborg-campaign .goteborg-bus-visual .bus-red {
  transform: translate(-12px, 20px) rotate(-2deg);
  background: linear-gradient(135deg, var(--uvaly-gold), var(--uvaly-gold));
}

main.other-main.goteborg-campaign .goteborg-bus-visual .bus-gold {
  transform: translate(18px, -26px) rotate(3deg);
  background: linear-gradient(135deg, #f2ba53, #c5a572);
}

main.other-main.goteborg-campaign .goteborg-expect-card h3 {
  text-align: left !important;
}

main.other-main.goteborg-campaign .goteborg-transparent-note {
  font-size: 15px !important;
}

@media (max-height: 820px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-partille-facts { gap: 6px; }
  main.other-main.goteborg-campaign .goteborg-partille-facts div { padding: 7px 8px; border-radius: 13px; }
  main.other-main.goteborg-campaign .goteborg-partille-facts strong { font-size: 14px; }
  main.other-main.goteborg-campaign .goteborg-partille-facts span { font-size: 9px; }
  main.other-main.goteborg-campaign .goteborg-main-cta.goteborg-donate-cta { min-height: 42px !important; }
}

@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-centenary-callout {
    grid-template-columns: auto 1fr !important;
  }
  main.other-main.goteborg-campaign .goteborg-bus-visual,
  main.other-main.goteborg-campaign .goteborg-centenary-callout .goteborg-main-cta.small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-partille-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  main.other-main.goteborg-campaign .goteborg-bus-visual .bus {
    width: min(230px, 82vw);
  }
}

/* === v27: hero podle ručního plánku – mapa vlevo, sbírka uprostřed, video vpravo === */
main.other-main.goteborg-campaign .goteborg-hero-title {
  margin-bottom: clamp(8px, .75vw, 14px) !important;
  padding-top: clamp(8px, 1vw, 18px) !important;
  padding-bottom: clamp(4px, .7vw, 10px) !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  color: #c5a572 !important;
  font-size: clamp(44px, 5.25vw, 88px) !important;
  line-height: .86 !important;
  letter-spacing: -.055em !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  color: var(--uvaly-red) !important;
  letter-spacing: .24em !important;
}

@media (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    grid-template-columns: minmax(335px, .82fr) minmax(500px, 1.07fr) minmax(535px, 1.15fr) !important;
    gap: clamp(18px, 1.7vw, 30px) !important;
    height: min(620px, calc(100vh - var(--menu-clearance) - 118px)) !important;
    min-height: 500px !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-panel {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  main.other-main.goteborg-campaign .goteborg-status-panel {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  main.other-main.goteborg-campaign .goteborg-media-panel {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }
}

main.other-main.goteborg-campaign .goteborg-map-panel,
main.other-main.goteborg-campaign .goteborg-media-panel,
main.other-main.goteborg-campaign .goteborg-status-panel {
  border: 0 !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 42px rgba(36, 22, 15, .09) !important;
}

main.other-main.goteborg-campaign .goteborg-map-panel {
  padding: clamp(14px, 1.05vw, 20px) clamp(12px, 1vw, 18px) clamp(10px, .9vw, 15px) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,250,244,.96)) !important;
}

main.other-main.goteborg-campaign .goteborg-map-head h1 {
  font-size: clamp(25px, 2.15vw, 38px) !important;
  letter-spacing: -.04em !important;
  line-height: 1 !important;
}

main.other-main.goteborg-campaign .goteborg-media-panel {
  padding: 10px !important;
  gap: 10px !important;
  background: rgba(255,255,255,.74) !important;
}

main.other-main.goteborg-campaign .goteborg-video-tile,
main.other-main.goteborg-campaign .goteborg-photo-tile {
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow: none !important;
}

main.other-main.goteborg-campaign .goteborg-status-panel.goteborg-campaign-info-panel {
  padding: clamp(16px, 1.45vw, 26px) !important;
  gap: clamp(10px, 1vw, 16px) !important;
  background:
    radial-gradient(circle at 88% 8%, rgba(239,157,47,.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,247,235,.93)) !important;
}

main.other-main.goteborg-campaign .goteborg-campaign-heading {
  position: relative;
  display: grid;
  gap: 6px;
  padding-bottom: clamp(8px, .85vw, 14px);
}

main.other-main.goteborg-campaign .goteborg-campaign-heading::after {
  content: '';
  width: min(260px, 72%);
  height: 7px;
  border-radius: 999px;
  background:
    radial-gradient(circle closest-side, rgba(155,7,28,.28) 98%, transparent) 0 0 / 18px 7px repeat-x;
  opacity: .55;
}

main.other-main.goteborg-campaign .goteborg-campaign-heading h2 {
  margin: 0 !important;
  padding: 0 !important;
  top: auto !important;
  position: static !important;
  background: transparent !important;
  color: var(--uvaly-red) !important;
  border-radius: 0 !important;
  text-align: left !important;
  width: auto !important;
  opacity: 1 !important;
  font-size: clamp(32px, 3vw, 54px) !important;
  line-height: .9 !important;
  letter-spacing: -.04em !important;
  text-transform: uppercase !important;
}

main.other-main.goteborg-campaign .goteborg-campaign-heading .goteborg-mini-label {
  color: #4c4038 !important;
  letter-spacing: .18em !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(8px, .8vw, 12px) !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts div {
  background: rgba(255,255,255,.84) !important;
  box-shadow: inset 0 0 0 1px rgba(155,7,28,.12) !important;
  border-radius: 18px !important;
  padding: clamp(9px, .9vw, 13px) clamp(10px, 1vw, 15px) !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts strong {
  font-size: clamp(18px, 1.55vw, 27px) !important;
  color: var(--uvaly-red) !important;
}

main.other-main.goteborg-campaign .goteborg-money-box {
  padding: clamp(12px, 1.1vw, 18px) !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.76) !important;
  box-shadow: inset 0 0 0 1px rgba(155,7,28,.12) !important;
}

main.other-main.goteborg-campaign .goteborg-money-title {
  margin: 0 0 8px;
  color: var(--uvaly-red);
  font-size: clamp(12px, .9vw, 15px);
  line-height: 1.05;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 1000;
}

main.other-main.goteborg-campaign .goteborg-amount-row strong {
  font-size: clamp(26px, 2.5vw, 43px) !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid {
  gap: 8px !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid div {
  border-radius: 16px !important;
  padding: clamp(8px, .75vw, 12px) !important;
}

main.other-main.goteborg-campaign .goteborg-current-stop {
  border-radius: 22px !important;
  padding: 12px !important;
}

main.other-main.goteborg-campaign .goteborg-main-cta.goteborg-donate-cta {
  min-height: 54px !important;
  border-radius: 999px !important;
  font-size: 18px !important;
  letter-spacing: .16em !important;
}

@media (max-height: 820px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: min(585px, calc(100vh - var(--menu-clearance) - 98px)) !important;
    min-height: 470px !important;
  }
  main.other-main.goteborg-campaign .goteborg-campaign-heading h2 {
    font-size: clamp(28px, 2.55vw, 44px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-partille-facts div {
    padding: 8px 10px !important;
  }
  main.other-main.goteborg-campaign .goteborg-partille-facts strong {
    font-size: clamp(16px, 1.25vw, 22px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-money-box {
    padding: 11px !important;
  }
  main.other-main.goteborg-campaign .goteborg-main-cta.goteborg-donate-cta {
    min-height: 46px !important;
    font-size: 15px !important;
  }
}

@media (max-height: 720px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: min(535px, calc(100vh - var(--menu-clearance) - 68px)) !important;
    min-height: 430px !important;
  }
  main.other-main.goteborg-campaign .goteborg-campaign-heading {
    gap: 3px;
    padding-bottom: 6px;
  }
  main.other-main.goteborg-campaign .goteborg-campaign-heading h2 {
    font-size: clamp(24px, 2.1vw, 34px) !important;
  }
  main.other-main.goteborg-campaign .goteborg-partille-facts {
    gap: 6px !important;
  }
  main.other-main.goteborg-campaign .goteborg-current-stop {
    padding: 9px !important;
  }
}

@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-campaign-heading h2 {
    text-align: center !important;
  }
  main.other-main.goteborg-campaign .goteborg-campaign-heading {
    justify-items: center;
  }
}

/* === v28: hero podle ručního plánku, ale bez horizontálního a vertikálního přetékání === */
main.other-main.goteborg-campaign .goteborg-above-fold {
  --menu-clearance: clamp(86px, 7vw, 112px) !important;
  box-sizing: border-box !important;
  height: 100vh !important;
  min-height: 0 !important;
  padding: calc(var(--menu-clearance) + 6px) clamp(14px, 2.2vw, 34px) 12px !important;
  gap: clamp(6px, .65vw, 10px) !important;
  overflow: hidden !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title {
  width: min(1500px, calc(100vw - 48px)) !important;
  max-width: 1500px !important;
  min-height: 0 !important;
  margin: 0 auto clamp(4px, .45vw, 8px) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  color: #c5a572 !important;
  font-size: clamp(38px, 4.25vw, 72px) !important;
  line-height: .86 !important;
  letter-spacing: -.055em !important;
  margin: 0 !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  color: var(--uvaly-red) !important;
  font-size: clamp(9px, .68vw, 12px) !important;
  line-height: 1 !important;
  letter-spacing: .22em !important;
  margin: 0 0 3px !important;
}

@media (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    width: min(1500px, calc(100vw - 48px)) !important;
    max-width: 1500px !important;
    height: clamp(430px, calc(100vh - var(--menu-clearance) - 98px), 555px) !important;
    min-height: 0 !important;
    grid-template-columns: minmax(275px, .72fr) minmax(430px, 1.05fr) minmax(390px, .9fr) !important;
    gap: clamp(12px, 1.25vw, 20px) !important;
    overflow: hidden !important;
    align-self: center !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-panel {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  main.other-main.goteborg-campaign .goteborg-status-panel {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  main.other-main.goteborg-campaign .goteborg-media-panel {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }
}

main.other-main.goteborg-campaign .goteborg-map-panel,
main.other-main.goteborg-campaign .goteborg-status-panel,
main.other-main.goteborg-campaign .goteborg-media-panel {
  border-radius: 24px !important;
  box-shadow: 0 14px 32px rgba(38, 20, 13, .08) !important;
}

main.other-main.goteborg-campaign .goteborg-map-panel {
  padding: clamp(10px, .9vw, 15px) clamp(10px, .85vw, 14px) 9px !important;
}

main.other-main.goteborg-campaign .goteborg-map-head h1 {
  font-size: clamp(24px, 2.05vw, 35px) !important;
  line-height: 1 !important;
  margin: 2px 0 3px !important;
}

main.other-main.goteborg-campaign .goteborg-route-legend {
  gap: 5px 10px !important;
  font-size: 12px !important;
}

main.other-main.goteborg-campaign .goteborg-map-stage {
  margin-top: 3px !important;
}

main.other-main.goteborg-campaign .goteborg-map-control-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 7px !important;
  padding-top: 7px !important;
}

main.other-main.goteborg-campaign .goteborg-media-panel {
  padding: clamp(7px, .75vw, 10px) !important;
  gap: clamp(7px, .75vw, 10px) !important;
  grid-template-rows: minmax(0, 1.2fr) minmax(0, .58fr) !important;
}

main.other-main.goteborg-campaign .goteborg-video-tile,
main.other-main.goteborg-campaign .goteborg-photo-tile {
  border-radius: 18px !important;
}

main.other-main.goteborg-campaign .goteborg-status-panel.goteborg-campaign-info-panel {
  padding: clamp(12px, 1vw, 18px) !important;
  gap: clamp(7px, .65vw, 10px) !important;
}

main.other-main.goteborg-campaign .goteborg-campaign-heading {
  gap: 3px !important;
  padding-bottom: 7px !important;
}

main.other-main.goteborg-campaign .goteborg-campaign-heading::after {
  height: 5px !important;
  background-size: 15px 5px !important;
}

main.other-main.goteborg-campaign .goteborg-campaign-heading h2 {
  font-size: clamp(24px, 2.25vw, 38px) !important;
  line-height: .9 !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts {
  gap: 7px !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts div {
  padding: clamp(7px, .72vw, 10px) clamp(9px, .8vw, 12px) !important;
  border-radius: 14px !important;
}

main.other-main.goteborg-campaign .goteborg-partille-facts strong {
  font-size: clamp(16px, 1.25vw, 22px) !important;
  line-height: 1 !important;
}

main.other-main.goteborg-campaign .goteborg-money-box {
  padding: clamp(9px, .75vw, 12px) !important;
  border-radius: 18px !important;
}

main.other-main.goteborg-campaign .goteborg-money-title {
  font-size: clamp(11px, .82vw, 14px) !important;
  margin-bottom: 6px !important;
}

main.other-main.goteborg-campaign .goteborg-amount-row strong {
  font-size: clamp(25px, 2.1vw, 36px) !important;
}

main.other-main.goteborg-campaign .goteborg-progress-track {
  height: 9px !important;
  margin: 8px 0 !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid {
  gap: 6px !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid div {
  padding: 7px 8px !important;
  border-radius: 13px !important;
}

main.other-main.goteborg-campaign .goteborg-stat-grid strong {
  font-size: clamp(14px, 1.05vw, 18px) !important;
}

main.other-main.goteborg-campaign .goteborg-current-stop {
  grid-template-columns: 48px 1fr !important;
  gap: 9px !important;
  padding: 8px !important;
  border-radius: 18px !important;
}

main.other-main.goteborg-campaign .goteborg-current-stop img {
  width: 48px !important;
  height: 48px !important;
}

main.other-main.goteborg-campaign .goteborg-main-cta.goteborg-donate-cta {
  min-height: 42px !important;
  font-size: 15px !important;
  letter-spacing: .13em !important;
}

@media (max-height: 760px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-above-fold {
    padding-top: calc(var(--menu-clearance) + 4px) !important;
    padding-bottom: 8px !important;
    gap: 4px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(30px, 3.35vw, 50px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title span {
    display: none !important;
  }

  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: clamp(405px, calc(100vh - var(--menu-clearance) - 52px), 505px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-partille-facts div:nth-child(3),
  main.other-main.goteborg-campaign .goteborg-partille-facts div:nth-child(4) {
    /* display: none !important; */
  }

  main.other-main.goteborg-campaign .goteborg-campaign-heading h2 {
    font-size: clamp(21px, 1.9vw, 30px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-current-stop p {
    font-size: 10px !important;
  }
}

@media (max-width: 1480px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    width: min(1320px, calc(100vw - 34px)) !important;
    grid-template-columns: minmax(250px, .68fr) minmax(405px, 1.02fr) minmax(360px, .9fr) !important;
    gap: 12px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: min(1320px, calc(100vw - 34px)) !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(34px, 4vw, 58px) !important;
  }
}

/* === v29: posunutí hlavního nadpisu pod pevné menu + zachování čitelnosti mapy === */
main.other-main.goteborg-campaign .goteborg-above-fold {
  --menu-clearance: clamp(116px, 7.6vw, 132px) !important;
  padding-top: calc(var(--menu-clearance) + 8px) !important;
  gap: clamp(5px, .6vw, 9px) !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title {
  width: min(1500px, calc(100vw - 48px)) !important;
  margin: 0 auto clamp(5px, .55vw, 9px) !important;
  padding: clamp(3px, .35vw, 6px) 0 clamp(4px, .4vw, 7px) !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: visible !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title h1 {
  color: #c5a572 !important;
  font-size: clamp(36px, 3.9vw, 64px) !important;
  line-height: .96 !important;
  letter-spacing: -.052em !important;
  margin: 0 !important;
  padding: 0 !important;
}

main.other-main.goteborg-campaign .goteborg-hero-title span {
  margin: 0 0 2px !important;
  line-height: 1.05 !important;
}

@media (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: clamp(405px, calc(100vh - var(--menu-clearance) - 112px), 535px) !important;
    min-height: 0 !important;
  }
}

@media (max-height: 760px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-above-fold {
    padding-top: calc(var(--menu-clearance) + 5px) !important;
    padding-bottom: 7px !important;
    gap: 3px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title {
    padding-top: 2px !important;
    padding-bottom: 3px !important;
    margin-bottom: 3px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(30px, 3.1vw, 48px) !important;
    line-height: .96 !important;
  }

  main.other-main.goteborg-campaign .goteborg-dashboard {
    height: clamp(395px, calc(100vh - var(--menu-clearance) - 70px), 495px) !important;
  }
}

@media (max-width: 1480px) and (min-width: 1181px) {
  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: min(1320px, calc(100vw - 34px)) !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(33px, 3.7vw, 56px) !important;
  }
}

/* Mapu už nezmenšovat – aktuální hodnoty kvůli čitelnosti */
main.other-main.goteborg-campaign .route-label-sub {
  font-size: 12px !important;
}
main.other-main.goteborg-campaign .route-label-sub
main.other-main.goteborg-campaign .route-label-text {
  font-size: 18px !important;
}

/* === v31: mobilní blok 100 let – logo, text a rozkliknutí pod sebou === */
@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-centenary-callout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 24px 16px 22px !important;
    text-align: center !important;
    justify-items: center !important;
    overflow: hidden !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-logo {
    grid-column: 1 / -1 !important;
    order: 1 !important;
    justify-self: center !important;
    width: min(170px, 58vw) !important;
    margin: 0 auto 2px !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-copy {
    grid-column: 1 / -1 !important;
    order: 2 !important;
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-copy .goteborg-mini-label,
  main.other-main.goteborg-campaign .goteborg-centenary-copy h3,
  main.other-main.goteborg-campaign .goteborg-centenary-visible {
    text-align: center !important;
    justify-content: center !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-copy h3 {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-visible {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 12px !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-details {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    text-align: center !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-details summary {
    width: min(100%, 390px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-details[open] {
    padding: 12px !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,.08) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12) !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-details p {
    width: 100% !important;
    max-width: none !important;
    margin: 12px 0 0 !important;
    padding: 0 2px !important;
    text-align: left !important;
    line-height: 1.45 !important;
  }

  main.other-main.goteborg-campaign .goteborg-bus-visual {
    grid-column: 1 / -1 !important;
    order: 3 !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }

  main.other-main.goteborg-campaign .goteborg-centenary-callout .goteborg-main-cta.small {
    grid-column: 1 / -1 !important;
    order: 4 !important;
    justify-self: center !important;
  }
}

/* === v32: obnoveno správné mobilní zobrazení celé hero sekce ===
   v31 upravovala blok 100 let, ale do souboru se nepropsal finální mobilní fix z v30.
   Na mobilu/tabletu proto znovu rušíme pevné ořezání hero sekce a panely skládáme pod sebe. */
@media (max-width: 1180px) {
  main.other-main.goteborg-campaign .goteborg-above-fold {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    padding-top: calc(var(--menu-clearance) + 12px) !important;
    padding-bottom: 18px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: min(820px, calc(100vw - 24px)) !important;
    margin: 0 auto 12px !important;
  }

  main.other-main.goteborg-campaign .goteborg-dashboard {
    width: min(820px, calc(100vw - 24px)) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-panel {
    order: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  main.other-main.goteborg-campaign .goteborg-status-panel {
    order: 2 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  main.other-main.goteborg-campaign .goteborg-media-panel {
    order: 3 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-stage {
    flex: 0 0 auto !important;
    height: clamp(380px, 68vw, 560px) !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-above-fold {
    --menu-clearance: 84px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 14px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title {
    width: 100% !important;
    margin-bottom: 10px !important;
    padding: 0 4px !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title h1 {
    font-size: clamp(32px, 10vw, 46px) !important;
    line-height: .94 !important;
  }

  main.other-main.goteborg-campaign .goteborg-hero-title span {
    display: block !important;
    font-size: 10px !important;
    letter-spacing: .18em !important;
  }

  main.other-main.goteborg-campaign .goteborg-dashboard {
    width: 100% !important;
    gap: 10px !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-panel,
  main.other-main.goteborg-campaign .goteborg-status-panel,
  main.other-main.goteborg-campaign .goteborg-media-panel {
    border-radius: 20px !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-panel {
    padding: 10px 9px 9px !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-head h1 {
    font-size: clamp(26px, 8vw, 36px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-map-stage {
    height: clamp(330px, 92vw, 455px) !important;
  }

  main.other-main.goteborg-campaign .goteborg-status-panel.goteborg-campaign-info-panel {
    padding: 12px !important;
  }

  main.other-main.goteborg-campaign .goteborg-media-panel {
    grid-template-columns: 1fr !important;
    grid-template-rows: 210px 145px 145px !important;
    gap: 8px !important;
    padding: 8px !important;
  }
}

/* === v29: aktuální zastávka – text posunutý o něco výš v boxu === */
main.other-main.goteborg-campaign .goteborg-current-stop > div {
  transform: translateY(-4px) !important;
}

@media (max-width: 720px) {
  main.other-main.goteborg-campaign .goteborg-current-stop > div {
    transform: translateY(-2px) !important;
  }
}
