:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-muted: #f7f7f8;
    --surface-strong: #f4f5f7;
    --text: #202124;
    --muted: #5f6368;
    --line: #e6e8ec;
    --accent: #e6005c;
    --accent-strong: #c90050;
    --accent-soft: #fff0f6;
    --accent-warm: #ffb000;
    --accent-warm-soft: #fff7df;
    --success-soft: #eefaf4;
    --shadow: 0 10px 28px rgba(32, 33, 36, 0.08);
    --shadow-soft: 0 8px 18px rgba(32, 33, 36, 0.08);
    --radius: 8px;
    --radius-lg: 8px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.portal-footer {
    margin-top: 0;
    border-top: 0;
    background: #292929;
    color: rgba(255, 255, 255, 0.84);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    flex-shrink: 0;
}

.portal-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 22px 26px;
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.portal-footer-brand {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.portal-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.portal-footer-home {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.portal-footer-logo {
    display: block;
    width: 154px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.portal-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
}

.portal-footer-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    text-decoration: none;
}

.portal-footer-nav a:hover {
    color: #ffffff;
}

.page-layout {
    width: 100%;
    flex: 1 0 auto;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 22px 56px;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb-hero {
    margin: 0;
    font-size: 12px;
    justify-content: flex-end;
}

.breadcrumb-hero a,
.breadcrumb-hero span {
    color: var(--muted);
}

.hero-brand-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

.hero-brand-topline .breadcrumb-hero {
    flex: 1 1 auto;
    min-width: 0;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 46%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(244, 163, 93, 0.22), transparent 58%),
        radial-gradient(circle at 20% 40%, rgba(227, 91, 106, 0.18), transparent 48%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 26px;
    width: 280px;
    height: 180px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 240, 243, 0.92));
    border: 1px solid rgba(227, 91, 106, 0.12);
    box-shadow: var(--shadow-soft);
    opacity: 0.75;
    transform: rotate(-3deg);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 5.4vw, 64px);
    line-height: 1.02;
    color: var(--text);
    max-width: none;
    position: relative;
}

.hero-brand-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.hero-brand-title-row h1 {
    flex: 1 1 auto;
    min-width: 0;
}

.hero-brand-logo {
    display: block;
    width: 184px;
    height: auto;
    max-width: 36vw;
    flex: 0 0 auto;
}

.hero-brand-link {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
}

.hero-brand-link:focus-visible {
    outline: 3px solid rgba(223, 0, 86, 0.32);
    outline-offset: 5px;
    border-radius: 8px;
}

.hero-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.hero-subtitle {
    margin: 18px 0 0;
    max-width: 760px;
    color: #3c4043;
    font-size: 19px;
}

.hero-chips,
.hotel-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.chip-soft {
    background: rgba(255, 255, 255, 0.92);
    color: #3c4043;
    border: 1px solid rgba(32, 33, 36, 0.10);
}

.chip-highlight {
    background: var(--accent);
    color: #ffffff;
}

.chip-outline {
    border: 1px solid var(--line);
    color: var(--muted);
    background: var(--surface);
}

.hero-journey-card {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto;
    gap: 20px;
    align-items: end;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 239, 0.96));
    border: 1px solid rgba(227, 91, 106, 0.12);
    box-shadow: var(--shadow-soft);
}

.hero-journey-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hero-fact {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(234, 223, 215, 0.9);
}

.hero-fact-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.hero-fact-value {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    color: var(--text);
}

.hero-journey-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.summary-summary-intro {
    display: block;
    margin-top: 34px;
}

.summary-summary-intro-hub {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.section-card,
.content-panel,
.section-block,
.section-cta-band {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.summary-box,
.content-panel {
    padding: 34px;
}

.summary-header h2,
.section-heading h2,
.section-cta-band h2,
.hub-intent-header h3 {
    margin: 0;
    font-size: 28px;
    color: var(--text);
}

.section-title,
.summary-label-row,
.hotel-distance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-icon,
.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--accent-strong);
}

.section-icon svg {
    width: 18px;
    height: 18px;
}

.mini-icon svg {
    width: 14px;
    height: 14px;
}

.summary-header p,
.section-heading p,
.why-this-page p,
.section-cta-band p,
.hub-category-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.summary-item {
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(234, 223, 215, 0.9);
}

.summary-item-highlight {
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-warm-soft));
    border: 1px solid rgba(227, 91, 106, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.summary-item-wide {
    grid-column: span 2;
}

.summary-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.summary-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}

.summary-label-row {
    display: inline-flex;
}

.summary-value {
    display: block;
    font-size: 20px;
    line-height: 1.3;
}

.cta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.inventory-note {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    transition: 0.18s ease;
    box-shadow: var(--shadow-soft);
}

.button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--accent-strong);
}

.button-secondary {
    background: #ffffff;
    color: var(--accent-strong);
    border-color: var(--line);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.86);
    color: var(--accent-strong);
    border-color: rgba(227, 91, 106, 0.16);
}

.button-selected,
.button[aria-pressed="true"] {
    background: #0f5f4c;
    color: #ffffff;
    border-color: #0f5f4c;
}

.section-block {
    margin-top: 34px;
    padding: 32px;
}

.section-block-soft {
    background: var(--surface-muted);
}

.portal-static-hero,
.hero-hub {
    min-height: 270px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    padding: 42px 46px;
    background: #ffffff;
    border-color: #f0f1f3;
}

.hero-hub::before,
.hero-hub::after,
.portal-static-hero::before,
.portal-static-hero::after {
    display: none;
}

.hero-hub .hero-journey-card,
.hero-hub .hub-guide-card {
    background: #ffffff;
}

.hero-hub .hero-copy,
.portal-static-hero .hero-copy {
    width: 100%;
    max-width: none;
}

.hero-hub h1,
.portal-static-hero h1 {
    max-width: none;
    font-size: 38px;
    line-height: 1.04;
    color: var(--text);
}

.hero-hub .hero-subtitle,
.portal-static-hero .hero-subtitle {
    max-width: 1080px;
    color: #3f3a35;
}

.portal-hero-visual {
    position: relative;
    min-height: 250px;
}

.portal-hero-image {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid rgba(32, 33, 36, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(32, 33, 36, 0.12);
}

.portal-visual-map {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(32, 33, 36, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(230, 0, 92, 0.12), transparent 38%),
        linear-gradient(90deg, #fff 0%, #fff 28%, #f2f4f7 28%, #f2f4f7 60%, #fff 60%),
        linear-gradient(0deg, rgba(32, 33, 36, 0.08) 1px, transparent 1px);
    background-size: auto, auto, 100% 52px;
    box-shadow: 0 18px 36px rgba(32, 33, 36, 0.12);
}

.portal-map-line {
    position: absolute;
    left: 28px;
    right: 28px;
    height: 8px;
    border-radius: 999px;
    background: rgba(230, 0, 92, 0.22);
    transform-origin: center;
}

.portal-map-line-a {
    top: 78px;
    transform: rotate(-18deg);
}

.portal-map-line-b {
    top: 142px;
    background: rgba(255, 176, 0, 0.34);
    transform: rotate(22deg);
}

.portal-map-pin {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 4px solid #ffffff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
    transform: rotate(-45deg);
}

.portal-map-pin-main {
    left: 132px;
    top: 86px;
    width: 32px;
    height: 32px;
    background: var(--accent);
}

.portal-map-pin-hotel {
    right: 74px;
    top: 48px;
    background: #202124;
}

.portal-map-pin-service {
    left: 70px;
    bottom: 42px;
    background: #ffb000;
}

.portal-visual-cardlet {
    position: absolute;
    display: grid;
    gap: 2px;
    min-width: 116px;
    padding: 12px 14px;
    border: 1px solid rgba(32, 33, 36, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.portal-visual-cardlet span {
    color: #6f655d;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.portal-visual-cardlet strong {
    color: #0f172a;
    font-size: 20px;
    line-height: 1.15;
}

.portal-visual-cardlet-main {
    left: 0;
    top: 18px;
}

.portal-visual-cardlet-alt {
    right: 0;
    bottom: 18px;
}

.portal-wide-photo {
    margin: 24px 0 0;
    overflow: hidden;
    border: 1px solid rgba(32, 33, 36, 0.08);
    border-radius: 8px;
    background: #f4f5f7;
    box-shadow: 0 16px 34px rgba(32, 33, 36, 0.10);
}

.portal-wide-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-photo-hero {
    min-height: 430px;
    overflow: hidden;
    border: 0;
    background-image:
        linear-gradient(90deg, rgba(13, 18, 30, 0.82) 0%, rgba(13, 18, 30, 0.62) 42%, rgba(13, 18, 30, 0.20) 100%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.portal-photo-hero .hero-copy {
    max-width: 760px;
}

.portal-photo-hero h1,
.portal-photo-hero .hero-subtitle,
.portal-photo-hero .breadcrumb-hero,
.portal-photo-hero .breadcrumb-hero a,
.portal-photo-hero .breadcrumb-hero span {
    color: #ffffff;
}

.portal-photo-hero h1,
.portal-photo-hero .hero-subtitle {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.portal-photo-hero .hero-brand-logo {
    width: 196px;
    height: auto;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
}

.portal-photo-hero .chip-soft {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(20, 24, 34, 0.54);
    color: #ffffff;
}

@media (min-width: 901px) {
    .portal-home-hero .hero-brand-topline {
        margin-bottom: 34px;
    }

    .portal-home-hero .hero-brand-logo {
        transform: translateY(-6px);
    }

    .portal-hospital-hub-hero .hero-brand-topline {
        margin-bottom: 34px;
    }

    .portal-hospital-hub-hero .hero-brand-logo {
        transform: translateY(-6px);
    }

    .portal-tanatorio-hub-hero .hero-brand-topline {
        margin-bottom: 34px;
    }

    .portal-tanatorio-hub-hero .hero-brand-logo {
        transform: translateY(-6px);
    }

    .portal-city-hub-hero .hero-brand-topline {
        margin-bottom: 34px;
    }

    .portal-city-hub-hero .hero-brand-logo {
        transform: translateY(-6px);
    }
}

.portal-home-room-photo {
    aspect-ratio: 21 / 9;
}

.portal-hospital-photo,
.portal-city-photo {
    aspect-ratio: 16 / 9;
}

.portal-static-block {
    margin-top: 24px;
}

.portal-static-content {
    padding: 28px;
}

.portal-static-list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.portal-static-list li + li {
    margin-top: 10px;
}

.portal-static-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(234, 223, 215, 0.9);
}

.portal-static-section h2 {
    margin: 0 0 12px;
    font-size: 24px;
    color: var(--text);
}

.portal-hub-grid,
.portal-links-list {
    display: grid;
    gap: 16px;
}

.portal-home-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.portal-home-city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-city-card-with-image {
    display: grid;
    grid-template-columns: minmax(168px, 192px) 1fr;
    gap: 24px;
    align-items: center;
    min-height: 178px;
    padding: 14px;
}

.portal-city-card-thumb {
    width: 100%;
    aspect-ratio: 6 / 5;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background: var(--surface-strong);
}

.portal-city-card-copy {
    min-width: 0;
}

.portal-city-card-with-image::before {
    display: none;
}

.portal-city-card-copy h3 {
    margin: 0 0 12px;
    color: var(--accent-strong);
    font-size: 22px;
    line-height: 1.18;
}

.portal-city-card-copy h3 a {
    color: inherit;
}

.portal-city-card-copy p {
    display: grid;
    gap: 2px;
    margin: 0;
    color: #4f5663;
    font-size: 16px;
    line-height: 1.35;
}

.portal-home-category-card {
    display: grid;
    align-content: start;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border-color: rgba(32, 33, 36, 0.08);
    background: #ffffff;
}

.portal-home-category-card::before,
.portal-hub-card::before,
.portal-link-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 5px;
    margin-bottom: 4px;
    border-radius: 999px;
    background: var(--accent);
}

.portal-home-category-card-active {
    border-color: rgba(230, 0, 92, 0.18);
    background: linear-gradient(180deg, #ffffff, #fff7fb);
}

.portal-home-category-card-with-image {
    grid-template-columns: minmax(170px, 1fr) minmax(180px, 1fr);
    gap: 22px;
    align-items: center;
    padding: 14px;
}

.portal-home-category-card-with-image::before {
    display: none;
}

.portal-home-category-thumb {
    width: 100%;
    aspect-ratio: 6 / 5;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background: var(--surface-strong);
}

.portal-home-category-copy {
    display: grid;
    gap: 10px;
    align-content: center;
    min-width: 0;
}

.portal-home-category-copy h3 {
    margin: 0;
}

.portal-home-category-chip-link {
    width: fit-content;
    text-decoration: none;
}

.portal-home-category-chip-link:hover {
    text-decoration: none;
    background: var(--accent-strong);
}

.portal-home-category-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.2;
}

.portal-benefit-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.portal-benefit-list li {
    padding-left: 18px;
    border-left: 3px solid var(--accent);
}

.portal-benefit-list strong {
    color: var(--text);
}

.portal-hub-context {
    background: #ffffff;
}

.portal-community-list {
    display: grid;
    gap: 18px;
}

.portal-community-group {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 24px;
    border: 1px solid rgba(32, 33, 36, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.portal-community-heading h3 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    line-height: 1.2;
}

.portal-community-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.portal-community-city-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.portal-city-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 12px 14px;
    border: 1px solid rgba(32, 33, 36, 0.10);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.portal-city-pill:hover,
.portal-city-pill:focus-visible {
    border-color: rgba(230, 0, 92, 0.32);
    box-shadow: 0 10px 18px rgba(32, 33, 36, 0.10);
    transform: translateY(-1px);
    text-decoration: none;
    outline: none;
}

.portal-city-pill span {
    font-weight: 800;
}

.portal-city-pill strong {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 13px;
    white-space: nowrap;
}

.portal-hub-card h3,
.portal-link-card h3 {
    margin: 0;
    font-size: 22px;
}

.portal-hub-card p,
.portal-link-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.portal-contact-form {
    display: grid;
    gap: 16px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(234, 223, 215, 0.9);
}

.portal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.portal-contact-form label {
    display: grid;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

.portal-contact-form input,
.portal-contact-form select,
.portal-contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    padding: 12px 13px;
}

.portal-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.portal-contact-form input:focus,
.portal-contact-form select:focus,
.portal-contact-form textarea:focus {
    border-color: rgba(173, 36, 79, 0.55);
    outline: 3px solid rgba(227, 91, 106, 0.14);
}

.portal-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.portal-captcha {
    max-width: 360px;
}

.portal-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.portal-cookie-settings {
    display: grid;
    gap: 16px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(234, 223, 215, 0.9);
}

.portal-cookie-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
}

.portal-cookie-row h2 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 20px;
}

.portal-cookie-row p {
    margin: 0;
    color: var(--muted);
}

.portal-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.portal-cookie-row .button {
    min-width: 122px;
}

.cookie-consent-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(760px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(19, 24, 35, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 58px rgba(19, 24, 35, 0.18);
}

.cookie-consent-banner[hidden] {
    display: none;
}

.cookie-consent-copy strong {
    display: block;
    margin-bottom: 5px;
    color: #101828;
    font-size: 1rem;
    font-weight: 800;
}

.cookie-consent-copy p {
    margin: 0;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.cookie-consent-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent-link:hover,
.cookie-consent-link:focus {
    text-decoration: underline;
}

.section-block-hub {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 239, 0.96));
}

.section-heading {
    margin-bottom: 24px;
}

.map-frame {
    width: 100%;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.hotel-grid,
.service-grid,
.hub-category-grid,
.related-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hotel-card,
.service-card,
.hub-category-card,
.related-link-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.hotel-card {
    position: relative;
    overflow: hidden;
}

.hotel-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 104px;
    background: linear-gradient(135deg, rgba(227, 91, 106, 0.12), rgba(244, 163, 93, 0.16));
    pointer-events: none;
}

.hotel-card-header {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hotel-card h3,
.service-card h3,
.hub-category-card h4 {
    margin: 0;
    font-size: 24px;
    color: var(--text);
}

.hotel-distance {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.hotel-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
    position: relative;
    z-index: 1;
}

.hotel-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(234, 223, 215, 0.95);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.hotel-meta-pill-price {
    background: var(--accent-warm-soft);
    color: #8b4c09;
    border-color: rgba(244, 163, 93, 0.32);
}

.hotel-feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    position: relative;
    z-index: 1;
}

.hotel-feature-badges-summary {
    margin-top: 12px;
}

.hotel-feature-badges-more {
    margin-top: 10px;
}

.hotel-feature-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 95, 76, 0.18);
    background: #ecfdf5;
    color: #0f5f4c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.hotel-feature-badge-cancellation {
    background: #eef6ff;
    border-color: rgba(25, 74, 140, 0.18);
    color: #194a8c;
}

.hotel-feature-badge-front-desk {
    background: #eef6ff;
    border-color: rgba(25, 74, 140, 0.18);
    color: #194a8c;
}

.hotel-affiliation {
    margin: 14px 0 0;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.hotel-microcopy {
    margin: 16px 0 22px;
    color: #263238;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.hotel-agoda-offer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.hotel-agoda-provider,
.hotel-agoda-current,
.hotel-agoda-previous,
.hotel-agoda-discount {
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.hotel-agoda-provider,
.hotel-agoda-discount {
    color: var(--muted);
}

.hotel-agoda-current {
    color: #009900;
}

.hotel-agoda-previous {
    color: #b42318;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
}

.hotel-agoda-offer-compact {
    margin: 10px 0 0;
    font-size: 13px;
}

.hotel-card-footer {
    display: flex;
    justify-content: flex-start;
    padding-top: 14px;
    border-top: 1px solid rgba(215, 228, 232, 0.8);
    position: relative;
    z-index: 1;
}

.content-panel p + p {
    margin-top: 16px;
}

.content-panel-compact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 0 16px;
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
    font-weight: 700;
    color: var(--accent-strong);
}

.faq-item p {
    margin: 0 0 16px;
    color: var(--muted);
}

.related-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.18s ease;
}

.related-link-card:hover,
.hotel-card:hover,
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(16, 32, 46, 0.1);
    text-decoration: none;
}

.related-link-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}

.hub-intent-group + .hub-intent-group {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(234, 223, 215, 0.9);
}

.hub-intent-header {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.hub-intent-header p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
}

.hub-category-card {
    background: #ffffff;
}

.hero-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.button-call {
    background: #ffffff;
    color: var(--accent-strong);
    border-color: rgba(199, 37, 85, 0.22);
    box-shadow: 0 14px 26px rgba(24, 39, 75, 0.08);
}

.hero-inline-link {
    color: var(--accent-strong);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.portal-home-city-grid > .portal-city-card-with-image {
    display: grid;
    grid-template-columns: 182px 1fr;
    grid-template-areas: "thumb copy";
    gap: 26px;
    align-items: center;
    min-height: 174px;
    padding: 12px;
}

.portal-home-city-grid > .portal-city-card-with-image::before {
    content: none;
    display: none;
}

.portal-home-city-grid .portal-city-card-thumb {
    grid-area: thumb;
    width: 100%;
    height: 126px;
    aspect-ratio: auto;
}

.portal-home-city-grid .portal-city-card-copy {
    grid-area: copy;
    align-self: center;
}

.hub-category-card h4 {
    font-size: 22px;
}

.hub-guide-card {
    padding: 30px;
    display: grid;
    gap: 14px;
    align-content: start;
    background: #ffffff;
}

.hub-guide-card h2 {
    margin: 0;
    font-size: 28px;
    color: var(--accent-strong);
}

.hub-guide-card p {
    margin: 0;
    color: var(--muted);
}

.hub-guide-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-journey-card-hub .hero-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-cta-band-hub {
    background: #ffffff;
}

.hospital-opening-card {
    margin: 0 0 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-hospital {
    background: #ffffff;
    padding: 22px 28px 14px;
    gap: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-hospital::before {
    display: none;
}

.hero-hospital::after {
    display: none;
}

.hero-hospital h1 {
    font-size: clamp(29px, 3.8vw, 46px);
    line-height: 1.02;
}

.hero-hospital .hero-brand-topline {
    gap: 12px;
}

.hero-hospital .hero-brand-title-row {
    margin-top: 8px;
    gap: 12px;
}

.hero-hospital .hero-brand-logo {
    width: 206px;
    max-width: 30vw;
}

.hero-journey-card-hospital {
    margin-top: 20px;
    padding: 18px;
}

.hero-facts-hospital {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hospital-map-block,
.hospital-summary-box,
.hospital-lodging-block,
.hospital-more-block,
.hospital-utilities-block,
.hospital-transport-block,
.hospital-info-block,
.hospital-faq-block {
    scroll-margin-top: 24px;
}

.hospital-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-hospital .hero-subtitle {
    margin-top: 10px;
    max-width: 860px;
    font-size: 17px;
}

.proximity-quick-block {
    max-width: var(--content-max);
    margin: 0 auto 22px;
    padding: 22px;
    border: 1px solid rgba(215, 228, 232, 0.85);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 42px rgba(12, 24, 38, 0.07);
}

.section-heading-compact {
    margin-bottom: 14px;
}

.proximity-quick-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.proximity-quick-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    min-height: 138px;
    padding: 16px;
    border: 1px solid rgba(215, 228, 232, 0.9);
    border-radius: 16px;
    background: #fff;
}

.proximity-quick-copy {
    display: grid;
    gap: 6px;
}

.proximity-quick-copy strong {
    color: var(--text);
    font-size: 17px;
    line-height: 1.25;
}

.proximity-quick-copy span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.hero-hospital .hero-chips {
    margin-top: 10px;
}

.hero-tanatorio {
    background: #ffffff;
}

.hero-tanatorio::before,
.hero-tanatorio::after {
    display: none;
}

.tanatorio-opening-card {
    border-color: rgba(27, 42, 57, 0.1);
}

.tanatorio-featured-hotel {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: 24px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(27, 42, 57, 0.12);
    border-radius: 18px;
    background: #fff8f5;
}

.tanatorio-featured-hotel > img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: 14px;
}

.tanatorio-pilot-shell .hotel-description {
    color: #20262d;
}

.tanatorio-pilot-shell .hotel-agoda-price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
}

.tanatorio-pilot-shell .hotel-map-link {
    width: auto;
    min-width: 44px;
    padding: 0 14px;
    border-radius: 999px;
    color: #0f5f69;
    font-size: 0.82rem;
}

.hospital-map-block {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 18px 24px 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}

.hospital-map-block .section-heading {
    margin-bottom: 16px;
}

.hospital-map-block .section-heading p {
    margin-top: 4px;
}

.hospital-map-block .map-frame {
    height: 380px;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 14px;
}

.map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(234, 223, 215, 0.95);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.map-legend-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    flex: 0 0 24px;
}

.map-legend-badge svg {
    display: block;
    width: 13px;
    height: 13px;
}

.map-legend-badge svg [stroke] {
    stroke-width: 2.35;
    vector-effect: non-scaling-stroke;
}

.map-legend-badge-hospital {
    background: #ad244f;
}

.map-legend-badge-hotel {
    background: #18585b;
}

.map-legend-badge-pharmacy {
    background: #16a34a;
}

.map-legend-badge-food {
    background: #ea580c;
}

.map-legend-badge-transport {
    background: #facc15;
    color: #111827;
}

.map-legend-badge-parking {
    background: #1d4ed8;
}

.summary-item-featured {
    display: grid;
    grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.hospital-summary-grid .summary-item-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 22px;
}

.hospital-summary-grid > .summary-item:not(.summary-item-featured) {
    min-height: 132px;
}

.summary-featured-media {
    min-height: 152px;
}

.summary-featured-media img,
.summary-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 152px;
    border-radius: 16px;
    object-fit: cover;
}

.summary-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(227, 91, 106, 0.16), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 251, 0.98));
    border: 1px solid rgba(227, 91, 106, 0.14);
}

.summary-image-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-strong);
    box-shadow: var(--shadow-soft);
}

.summary-image-icon svg {
    width: 24px;
    height: 24px;
}

.summary-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.summary-value-featured {
    font-size: 30px;
    line-height: 1.15;
}

.hotel-meta-list-summary {
    margin-top: 14px;
}

.hotel-affiliation-summary {
    margin-top: 12px;
}

.summary-featured-text {
    margin: 12px 0 0;
    color: #263238;
    font-size: 15px;
    line-height: 1.55;
}

.summary-subvalue {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted);
}

.summary-subvalue-address {
    font-weight: 600;
    line-height: 1.35;
}

.summary-item-action {
    margin-top: 12px;
}

.summary-item-distance .summary-value-distance {
    font-size: 32px;
    line-height: 1.05;
}

.hospital-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hotel-card-compact {
    padding: 20px;
}

.hotel-card-media-compact {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(249, 252, 251, 0.96);
}

.hotel-card-media-compact img,
.hotel-card-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 14px;
    object-fit: cover;
}

.hotel-card-compact h3 {
    font-size: 20px;
}

.hotel-card-nearby {
    min-height: 100%;
}

.hotel-microcopy-compact {
    font-size: 14px;
    margin: 14px 0 18px;
}

.hotel-address {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}

.hotel-address-summary {
    margin-top: 12px;
}

.more-hotel-address {
    margin: -8px 0 0;
}

.more-hotels-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.more-hotel-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid rgba(234, 223, 215, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
}

.more-hotel-name {
    font-size: 16px;
    color: var(--text);
}

.more-hotel-meta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.more-hotel-agoda-price {
    color: #0f5f4c;
}

.more-hotel-link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.more-hotel-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-map-link {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hotel-map-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hotel-map-link svg {
    width: 22px;
    height: 22px;
    color: #18585b;
    display: block;
}

.hotel-map-link svg [stroke] {
    stroke-width: 2.2;
    vector-effect: non-scaling-stroke;
}

.hotel-map-link:hover,
.hotel-map-link:focus-visible {
    border-color: rgba(24, 88, 91, 0.45);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
    transform: translateY(-1px);
    outline: none;
}

.hotel-map-link-compact {
    width: 36px;
    height: 36px;
}

.hotel-map-link-compact img {
    width: 21px;
    height: 21px;
}

.hotel-map-link-compact svg {
    width: 19px;
    height: 19px;
}

.hotel-map-link-poi-pharmacy svg {
    color: #16a34a;
}

.hotel-map-link-poi-food svg {
    color: #ea580c;
}

.hotel-map-link-poi-parking svg {
    color: #1d4ed8;
}

.cta-bar-summary {
    margin-top: 20px;
}

.nearby-quality-highlight {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(24, 88, 91, 0.14);
    border-radius: 12px;
    background: rgba(249, 252, 251, 0.92);
}

.nearby-affiliate-highlight {
    border-color: rgba(16, 112, 84, 0.22);
    background: rgba(244, 251, 247, 0.94);
}

.nearby-quality-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.nearby-quality-body {
    display: grid;
    gap: 10px;
}

.nearby-quality-body strong {
    color: var(--text);
    font-size: 18px;
    line-height: 1.25;
}

.nearby-quality-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.hotel-meta-list-highlight {
    margin: 0;
}

.nearby-quality-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.button-compact {
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
}

.button-primary-strong {
    min-height: 54px;
    padding: 0 24px;
    font-size: 15px;
}

.utility-list {
    display: grid;
    gap: 12px;
}

.utility-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(234, 223, 215, 0.9);
}

.utility-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.utility-item strong {
    font-size: 15px;
}

.utility-item span,
.utility-copy span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.map-poi-link {
    appearance: none;
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #0f172a;
    color: #ffffff;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.map-poi-link:hover,
.map-poi-link:focus-visible {
    background: #111827;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.26);
    transform: translateY(-1px);
    outline: none;
}

.hospital-transport-block .section-heading p {
    max-width: 760px;
    font-size: 16px;
}

.hospital-transport-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.transport-item {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(234, 223, 215, 0.9);
}

.transport-item-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.transport-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.transport-icon svg {
    width: 16px;
    height: 16px;
}

.transport-type {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}

.transport-name {
    font-size: 17px;
    line-height: 1.3;
}

.transport-address {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.transport-distance {
    color: var(--accent-strong);
    font-size: 14px;
    font-weight: 700;
}

.transport-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.poi-marker-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.hotel-marker-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #18585b;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.marker-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.marker-icon-svg svg {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    overflow: visible;
}

.hotel-marker-highlight {
    width: 44px !important;
    height: 44px !important;
    border-width: 4px;
    background: #0f172a;
    box-shadow: 0 0 0 7px rgba(250, 204, 21, 0.48), 0 16px 32px rgba(15, 23, 42, 0.44);
    z-index: 1000 !important;
}

.hotel-marker-highlight .marker-icon-svg,
.poi-marker-highlight .marker-icon-svg {
    width: 100%;
    height: 100%;
}

.hotel-marker-highlight .marker-icon-svg svg,
.poi-marker-highlight .marker-icon-svg svg {
    width: 18px;
    height: 18px;
}

.marker-icon-svg svg [stroke] {
    stroke-width: 2.6;
    vector-effect: non-scaling-stroke;
}

.poi-marker-highlight {
    width: 42px !important;
    height: 42px !important;
    border-width: 4px;
    box-shadow: 0 0 0 7px rgba(250, 204, 21, 0.45), 0 16px 32px rgba(15, 23, 42, 0.42);
    z-index: 1000 !important;
}

.poi-marker-hospital {
    background: #be123c;
}

.poi-marker-pharmacy {
    background: #16a34a;
}

.poi-marker-cafe {
    background: #7c3aed;
}

.poi-marker-restaurant {
    background: #ea580c;
}

.poi-marker-fastfood {
    background: #f59e0b;
    color: #111827;
}

.poi-marker-taxi {
    background: #facc15;
    color: #111827;
}

.poi-marker-bus {
    background: #facc15;
    color: #111827;
}

.poi-marker-train {
    background: #facc15;
    color: #111827;
}

.poi-marker-metro {
    background: #0891b2;
}

.poi-marker-parking {
    background: #1d4ed8;
}

.poi-marker-service {
    background: #0f172a;
}

.hub-link-list {
    margin: 16px 0 0;
    padding-left: 18px;
}

.hub-link-list li + li {
    margin-top: 8px;
}

.section-cta-band {
    margin-top: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--surface-strong);
}

.intent-links-grid .related-link-card {
    min-height: 120px;
}

@media (max-width: 900px) {
    .hero {
        padding: 28px;
    }

    .hero::after {
        width: 220px;
        height: 150px;
        right: 16px;
        top: 16px;
    }

    .hero-journey-card,
    .hero-facts,
    .summary-grid,
    .summary-summary-intro-hub,
    .summary-summary-intro,
    .hotel-grid,
    .service-grid,
    .hub-category-grid,
    .portal-home-category-grid,
    .portal-home-city-grid,
    .related-links-grid,
    .hospital-secondary-grid,
    .proximity-quick-list,
    .hospital-summary-grid,
    .more-hotels-list,
    .hospital-transport-grid {
        grid-template-columns: 1fr;
    }

    .portal-form-grid {
        grid-template-columns: 1fr;
    }

    .more-hotel-row,
    .utility-item {
        grid-template-columns: 1fr;
    }

    .hero-journey-actions {
        justify-content: flex-start;
    }

    .summary-item-featured {
        grid-template-columns: 1fr;
    }

    .hospital-summary-grid .summary-item-featured {
        grid-template-columns: 1fr;
    }

    .summary-featured-media {
        min-height: 132px;
    }

    .hospital-summary-grid .summary-featured-media {
        aspect-ratio: 16 / 9;
        max-height: none;
        min-height: 0;
    }

    .hospital-summary-grid .summary-featured-media img,
    .hospital-summary-grid .summary-image-placeholder {
        height: 100%;
        min-height: 0;
    }

    .section-cta-band,
    .hotel-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portal-static-hero,
    .hero-hub {
        grid-template-columns: 1fr;
        background: #ffffff;
    }

    .portal-photo-hero {
        min-height: 390px;
        background-image:
            linear-gradient(90deg, rgba(13, 18, 30, 0.86) 0%, rgba(13, 18, 30, 0.64) 58%, rgba(13, 18, 30, 0.28) 100%),
            var(--hero-image-mobile, var(--hero-image));
        background-position: center;
    }

    .portal-hero-visual {
        min-height: 220px;
    }

    .portal-community-group,
    .portal-community-city-grid {
        grid-template-columns: 1fr;
    }

    .summary-item-wide {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .page-layout {
        padding: 20px 14px 48px;
    }

    .portal-footer-inner {
        padding: 16px 14px 22px;
    }

    .hero,
    .section-block,
    .summary-box,
    .content-panel,
    .section-cta-band {
        padding: 20px;
    }

    .hero h1 {
        font-size: 38px;
        max-width: none;
    }

    .hero-hub h1,
    .portal-static-hero h1 {
        font-size: 38px;
    }

    .portal-hero-visual {
        min-height: 190px;
    }

    .portal-visual-cardlet {
        min-width: 104px;
    }

    .hero-brand-title-row {
        gap: 10px;
    }

    .hero-brand-logo {
        width: 150px;
        max-width: 46vw;
    }

    .portal-photo-hero .hero-brand-logo {
        width: 176px;
        max-width: 62vw;
    }

    .portal-city-card-with-image {
        grid-template-columns: minmax(126px, 156px) 1fr;
        gap: 14px;
        min-height: 136px;
        padding: 12px;
    }

    .portal-city-card-thumb {
        width: 100%;
    }

    .portal-city-card-copy h3 {
        font-size: 19px;
    }

    .portal-city-card-copy p {
        font-size: 15px;
    }

    .portal-home-city-grid > .portal-city-card-with-image {
        grid-template-columns: 132px 1fr;
        grid-template-areas: "thumb copy";
        gap: 14px;
        min-height: 132px;
        padding: 10px;
    }

    .portal-home-city-grid > .portal-city-card-with-image::before {
        content: none;
        display: none;
    }

    .portal-home-city-grid .portal-city-card-thumb {
        grid-area: thumb;
        height: 98px;
    }

    .portal-home-city-grid .portal-city-card-copy {
        grid-area: copy;
    }

    .portal-home-category-card-with-image {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        align-items: center;
    }

    .portal-home-category-card-with-image h3 {
        font-size: 16px;
        line-height: 1.18;
    }

    .portal-home-category-thumb {
        aspect-ratio: 4 / 5;
    }

    .portal-home-category-copy {
        gap: 8px;
    }

    .portal-home-category-chip-link {
        width: 100%;
        min-height: 32px;
        padding: 6px 10px;
        white-space: normal;
        text-align: center;
        line-height: 1.18;
        font-size: 13px;
    }

    .portal-home-category-copy p {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hospital-summary-grid .summary-item-featured {
        gap: 14px;
    }

    .hospital-summary-grid .summary-featured-media {
        width: calc(100% - 4px);
        max-height: none;
        margin-inline: auto;
    }

    .button {
        width: 100%;
    }

    .hero-hospital {
        padding: 16px 18px 10px;
        gap: 8px;
    }

    .hero-hospital h1 {
        font-size: 29px;
        line-height: 1.05;
    }

    .hero-hospital .hero-brand-topline {
        gap: 8px;
        align-items: flex-start;
    }

    .hero-hospital .hero-brand-title-row {
        margin-top: 6px;
        gap: 8px;
    }

    .hero-hospital .hero-brand-logo {
        width: 118px;
        max-width: 40vw;
    }

    .hero-hospital .hero-subtitle {
        margin-top: 8px;
        font-size: 16px;
    }

    .breadcrumb-hero {
        font-size: 11px;
        gap: 6px;
        justify-content: flex-start;
    }

    .hero-hospital .hero-chips {
        margin-top: 8px;
        gap: 8px;
    }

    .hospital-map-block {
        margin-top: 0;
        padding: 14px 16px 16px;
    }

    .hospital-map-block .section-heading {
        margin-bottom: 12px;
    }

    .hospital-map-block .section-title {
        font-size: 24px;
    }

    .hospital-map-block .section-heading p {
        margin-top: 4px;
        font-size: 15px;
    }

    .hospital-map-block .map-frame {
        height: 260px;
    }

    .cookie-consent-banner {
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
        gap: 14px;
        width: calc(100vw - 24px);
        padding: 16px;
        border-radius: 16px;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
    }

    .cookie-consent-actions .button {
        min-height: 42px;
    }
}
