
.c-map-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    margin: 1em;
    gap: 1em;
}

.c-map-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.c-map-item__link {
    width: max-content;
    display: inline-block;

    grid-area: link;
}
.c-map-item__link-img {
    width: 5rem;
}
.c-map-item__link-img img {
    width: auto;
}
.c-map-item__name {
    margin: 0;
    width: max-content;
}
.c-map-item__loc {
    grid-area: addr;
}
.c-map-item__info {
    grid-area: info;
}
.c-map-list-wrapper a {
    text-decoration: none;
}

.c-map {
    position: sticky;
    top: 1em;
}
.c-map iframe {
    display: block;
}

.c-map__title,.c-map__dir {
    background-color: #1e3c60;
    color: white;
    padding: 0.5em;
}
.c-map__title :is(a:active, a:visited, a), .c-map__dir :is(a:active, a:visited, a) {
    color: #eee;
}

.c-map__dir a {
    text-decoration: none;
}

.c-map-item--hidden {
    display: none;
}


.c-map-item-page__info {
    margin-bottom: 1.5em;
}

.c-map-list-search__btn {
    padding: 0;
    width: 40px;
    height: 100%;
}
.c-map-list-search__input {
    border-right: none;
}


.o-search-box {
    display: flex;
    flex-wrap: nowrap;
    font-size: 1.5em;
    height: 1.33em;
    max-width: 20em;
}
.o-search-box__text {
    border-width: 1px 0 1px 1px;
    width: 100%;
}
.o-search-box__btn {
    
}
.o-search-box__btn:hover {
    filter: brightness(85%);
}
.o-search-box__btn:active {
    filter: brightness(75%);
}
.o-search-box__btn svg {
    height: 100%;
}

@media screen and (min-width: 950px) {

    .c-map-list.c-map-list--img .c-map-item__name {
        margin-left: 7rem;
    }
    .c-map-list.c-map-list--img .c-map-item__info {
        margin-left: 7rem;
    }
    .c-map-list.c-map-list--img .c-map-item__loc {
        margin-left: 7rem;
    }
    .c-map-list.c-map-list--img .c-map-item__link-img {
        position: absolute;
        height: 5rem;
        display: flex;
        align-items: center;
    }
}



@media screen and (max-width: 950px) {
    .c-map-list-wrapper {
        grid-template-columns: 1fr;
    }
    .c-map-list-wrapper .c-map-wrapper {
        display: none;
    }
    .c-map-item__name {
        width: auto;
    }
    .c-map-item__link {
        width: auto;
    }
    .c-map-item__link-img {
        width: 10rem;
    }
}