body.single .lodges .container {
    max-width: 1350px;
}

.lodges .block-title {
    width: 100%;
}

.lodges .content-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.lodges .lodges-map-wrapper {
    width: calc(50% - 24px);
    position: relative;
}

.lodges .lodges-map svg {
    width: 100%;
    height: auto;
}

.lodges .lodges-wrapper {
    width: calc(50% - 24px);
    align-self: flex-start;
}

.lodges path[data-location] {
    transition: fill .3s ease, opacity .3s ease;
}

.lodges path[data-location]:hover {
    opacity: 0.9;
}

.lodges path[data-location].active {
    fill: var(--brick);
}

.lodges-map svg path[data-location] {
    cursor: pointer;
}

.lodges .search-box-item {
    min-width: 240px;
    max-width: 240px;
}

.lodges .lodges-list {
    display: flex;
    flex-direction: column;
}

.lodges .lodge-single {
    padding: 24px 0;
    border-bottom: 1px solid var(--input);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lodges .lodge-title {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lodges .lodge-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lodges .lodge-icons a.icon-action {
    width: 50px;
    height: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--input);
    transition: background .3s ease;
}

.lodges .lodge-icons a.icon-location {
    background-color: var(--brick);
}

.lodges .lodge-icons a.icon-action:hover {
    background-color: var(--brick);
}

.lodges .lodge-icons a.icon-location:hover {
    background-color: var(--red);
}

.lodges .read-more {
    height: 50px;
    padding: 15px;
    background-color: var(--bg);
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--graphite);
    font-size: 14px;
    font-family: 'Alegreya Sans';
    line-height: 1.1;
    transition: background .3s ease, color .3s ease;
}

.lodges .read-more:hover {
    background-color: var(--brick);
    color: #fff;
}

.lodges .read-more:hover svg path {
    fill: #fff;
}

.lodges .lodges-map-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lodges .lodge-map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: all;
    cursor: pointer;
}

.lodges .lodge-map-marker__dot {
    display: block;
    width: 18px;
    height: 23px;
    transition: transform 0.2s ease;
}

.lodges .lodge-map-marker__dot svg {
    width: 100%;
    height: auto;
}

.lodge-map-marker:hover {
    z-index: 99;
}

.lodges .lodge-map-marker .lodge-map-marker__dot path {
    fill: #BE1E2D;
}

.lodges .lodge-map-marker.active .lodge-map-marker__dot {
    transform: scale(1.1);
}

.lodges .lodge-map-marker.active .lodge-map-marker__dot path {
    fill: #fff;
}

.lodges .lodge-map-marker__label {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    padding: 8px;
    white-space: nowrap;
    border-radius: 5px;
    background: #fff;
    border: 4px solid #F6F6F6;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.10));
    text-align: center;
    min-width: 184px;
}

.lodges .lodge-map-marker__label::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -12px;
    border-width: 12px;
    border-style: solid;
    border-color: #F6F6F6 transparent transparent transparent;
}

.lodges .lodge-map-marker__label h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
    display: block;
    text-align: center;
}

.lodges .lodge-map-marker__label a {
    background-color: var(--red);
    color: #fff;
    padding: 8px 16px;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    transition: background .3s ease, color .3s ease;
    border: 1px solid var(--red);
    display: inline-block;
}

.lodges .lodge-map-marker__label a:hover {
    background-color: #fff;
    color: var(--red);
}

.lodges .lodge-map-marker:hover .lodge-map-marker__label {
    display: block;
}

.lodges .lodge-map-marker.hidden {
    display: none;
}

@media (max-width:1199px) {

    .lodges .content-wrapper.content-wrapper-inner {
        flex-direction: column-reverse;
    }

    .lodges .lodges-wrapper,
    .lodges .lodges-map-wrapper {
        width: 100%;
    }

}

@media (max-width:991px) {
    .lodges .lodge-map-marker__dot {
        width: 14px;
        height: 18px;
    }

    .lodges .lodge-map-marker.active .lodge-map-marker__dot {
        transform: scale(1);
    }

    .lodges .lodge-map-marker__label h3 {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .lodges .lodge-map-marker__label {
        min-width: auto;
    }

    .lodges .lodge-map-marker__label a {
        padding: 4px 8px;
        font-size: 16px;
    }
}