.BlueFooter{
    width: 100%;
    height: 88px;
    background-color: #126cb8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ButtonBlueFooter{

    padding-left: 15px;
    padding-right: 15px;
}
.BlueFooter>a{
    text-decoration: none;
}

.TravelMapBox {
    width: 100%;
    height: 540px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 14px;
}

.TravelMapMarkerButton {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transform: translate(-50%, -100%);
}

.TravelMapMarkerImage {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    display: block;
}

.TravelPhotosToggleWrap {
    margin: 20px 0 30px;
    display: flex;
    justify-content: center;
}

.TravelPhotosToggleButton {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.2;
}

.TravelModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.TravelModalContent {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.TravelModalImage {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.TravelModalClose {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.TravelSliderModalContent {
    position: relative;
    width: min(1200px, 96vw);
    max-height: 92vh;
    background: #111;
    border-radius: 16px;
    padding: 24px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.TravelSliderInner {
    width: 100%;
    text-align: center;
}

.TravelSliderImage {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 12px;
}

.TravelSliderLegend {
    color: #fff;
    font-size: 18px;
    margin-top: 16px;
}

.TravelSliderCounter {
    color: #bbb;
    margin-top: 8px;
}

.TravelSliderArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.TravelSliderArrowLeft {
    left: 16px;
}

.TravelSliderArrowRight {
    right: 16px;
}

.TravelPageBlocks {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.TravelPageBlocksRow {
    display: grid;
    gap: 20px;
    align-items: stretch;
}

.TravelPageBlocksColumn {
    min-width: 0;
    height: 100%;
    display: flex;
}

.TravelPageBlockSingleWrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}

.TravelPageBlockSingle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.TravelPageBlockStack {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.TravelPageBlockTop,
.TravelPageBlockBottom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .TravelMapBox {
        height: 420px;
    }

    .TravelSliderModalContent {
        padding: 20px 54px;
    }
}

@media (max-width: 640px) {
    .TravelMapBox {
        height: 340px;
    }

    .TravelSliderModalContent {
        padding: 18px 44px;
    }

    .TravelPageBlocksRow {
        grid-template-columns: 1fr !important;
    }
}
