 .map-page {
    padding: 42px 0 72px;
    background: #070707;
    color: var(--text);
}

.map-page .container {
    width: min(100%, 1560px);
    padding-inline: 24px;
}

.map-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 180ms ease;
}

.map-back-link:hover {
    color: var(--accent);
}

.map-hero {
	align-items: start;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 42px;
}

.map-hero__media,
.map-hero__content {
    min-width: 0;
}

.map-main-preview {
    border-radius: 22px;
    border: 1px solid rgba(211, 189, 145, 0.12);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    height: clamp(520px, 68vh, 760px);
    max-height: 760px;
    position: relative;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.map-main-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.map-main-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 340ms cubic-bezier(0.22, 0.8, 0.2, 1);
    will-change: transform;
}

.map-main-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-main-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.map-main-slider__nav {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 52px;
    border-radius: 999px;
    border: 1px solid rgba(211, 189, 145, 0.18);
    background: rgba(0, 0, 0, 0.52);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 1.7rem;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(8px);
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.map-main-slider__nav:hover {
    background: rgba(211, 189, 145, 0.16);
    border-color: rgba(211, 189, 145, 0.38);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.map-main-slider__nav--prev {
    left: 18px;
}

.map-main-slider__nav--next {
    right: 18px;
}

.map-main-preview__empty {
    min-height: inherit;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    padding: 24px;
    text-align: center;
}

.map-preview-strip {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(211, 189, 145, 0.42) rgba(255, 255, 255, 0.04);
}

.map-preview-strip::-webkit-scrollbar {
    height: 10px;
}

.map-preview-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.map-preview-strip::-webkit-scrollbar-thumb {
    background: rgba(211, 189, 145, 0.34);
    border-radius: 999px;
    border: 2px solid #070707;
}

.map-preview-strip::-webkit-scrollbar-thumb:hover {
    background: rgba(211, 189, 145, 0.52);
}

.map-preview-thumb {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
	
    border: 1px solid rgba(211, 189, 145, 0.12);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.map-preview-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 189, 145, 0.28);
}

.map-preview-thumb.is-active {
    border-color: rgba(211, 189, 145, 0.42);
    box-shadow: 0 0 0 1px rgba(211, 189, 145, 0.22);
}

.map-preview-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-preview-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 189, 145, 0.28);
}

.map-preview-thumb.is-active {
    border-color: rgba(211, 189, 145, 0.42);
    box-shadow: 0 0 0 1px rgba(211, 189, 145, 0.22);
}



.map-hero__content {
    display: grid;
    gap: 20px;
    padding: 20px 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(211, 189, 145, 0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
    align-content: start;
	
	 position: sticky;
    top: 110px;
}

.map-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.map-badge {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.map-badge.is-premium {
    background: rgba(211, 189, 145, 0.92);
    color: #17140f;
}

.map-badge.is-free {
    background: rgba(255, 255, 255, 0.88);
    color: #111;
}

.map-meta-eyebrow,
.map-section__eyebrow {
    margin: 0;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.map-title {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.03;
    color: var(--text);
    text-wrap: balance;
}

.map-meta-card {
    padding: 18px 18px 10px;
    border-radius: 16px;
    border: 1px solid rgba(211, 189, 145, 0.10);
    background: rgba(255, 255, 255, 0.02);
}

.map-meta-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(211, 189, 145, 0.10);
}

.map-meta-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.map-meta-item__label {
    color: var(--text-muted);
}

.map-meta-item__value {
    color: var(--text);
    text-align: right;
}

.map-excerpt p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.map-cta {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.map-cta__button {
    width: fit-content;
}

.map-cta__hint {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.map-sections {
    display: grid;
    gap: 24px;
}

.map-section {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(211, 189, 145, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.map-section__head {
    margin-bottom: 16px;
}

.map-section__title {
    margin: 6px 0 0;
    font-family: Georgia, serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.1;
    color: var(--accent);
}

.map-description p {
    margin: 0 0 1em;
    color: var(--text-soft);
    line-height: 1.75;
}

.map-description p:last-child {
    margin-bottom: 0;
}

.map-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.map-tag {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(211, 189, 145, 0.18);
    background: rgba(211, 189, 145, 0.08);
    color: var(--text);
    text-decoration: none;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.map-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 189, 145, 0.34);
    background: rgba(211, 189, 145, 0.12);
}

.map-support-box {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.map-support-box__text {
    margin: 8px 0 0;
    color: var(--text-soft);
    line-height: 1.65;
    max-width: 62ch;
}

.map-empty {
    padding: 48px 0;
}

.map-feature-list {
    display: grid;
    gap: 12px;
}

.map-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
}

.map-feature-item__icon {
    width: 22px;
    min-width: 22px;
    display: inline-flex;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    line-height: 1;
}

.map-feature-item__text {
    line-height: 1.45;
}

.map-patreon-button {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #17140f;
    background: linear-gradient(180deg, #d8bf86 0%, #b9954f 100%);
    box-shadow: 0 10px 24px rgba(185, 149, 79, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.map-patreon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(185, 149, 79, 0.28);
    filter: brightness(1.03);
}

.map-patreon-button img {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 1100px) {
    .map-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .map-page {
        padding-top: 28px;
    }

    .map-page .container {
        padding-inline: 20px;
    }

    .map-main-preview {
    height: clamp(280px, 52vh, 460px);
    max-height: 460px;
}

    .map-support-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-preview-strip {
        grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
    }
	
	.map-title {
        font-size: clamp(2rem, 9.5vw, 3.3rem);
        line-height: 1.03;
    }

    .map-hero__content {
        padding: 20px;
        gap: 16px;
    }

    .map-meta-item {
        align-items: flex-start;
    }

    .map-excerpt p {
        line-height: 1.65;
    }
    .map-main-preview {
        height: clamp(280px, 52vh, 460px);
        max-height: 460px;
    }

    .map-main-slider__nav {
		width: 42px;
		font-size: 1.35rem;
	}

    .map-preview-thumb {
		flex: 0 0 88px;
		width: 88px;
		height: 88px;
	}

	.map-premium-cta {
    grid-template-columns: 1fr;
}

.map-premium-cta__media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(211, 189, 145, 0.10);
}

.map-premium-cta__content {
    padding: 22px 20px;
}

.map-premium-cta__content .map-section__title {
    max-width: none;
}
}


.map-section--premium-cta {
    padding: 0;
    overflow: hidden;
}

.map-premium-cta {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
    align-items: stretch;
    min-height: 260px;
}

.map-premium-cta__media {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    border-right: 1px solid rgba(211, 189, 145, 0.10);
}

.map-premium-cta__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-premium-cta__media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    color: var(--text-muted);
    text-align: center;
    padding: 24px;
}

.map-premium-cta__content {
    padding: 26px 28px;
    display: grid;
    gap: 16px;
    align-content: center;
}

.map-premium-cta__content .map-section__title {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.2;
    max-width: 26ch;
}

.map-premium-cta__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--text-soft);
}

.map-premium-cta__list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.55;
}

.map-premium-cta__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}

.map-premium-cta__button {
    width: fit-content;
    margin-top: 4px;
}