.location-list__state {
    background: #fff;
    height: 100%;
    border-radius: 5px;
    padding: 35px 30px;
    box-shadow: 0 8px 20px rgb(56 56 56 / 10%);
    position: relative;
    transition: .3s;
}

.location-list-state__container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 35px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 35px;
}

.location-listing__wrapper h3 {
    font-weight: 800;
}

.location-listing__wrapper  {
    margin: 60px 0;
}

.state-post__address p {
    margin-bottom: 0;
    line-height: 25px;
    margin-top: 15px;
}

.location-list__state a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none !important;
}

.state-post__shop {
    font-weight: 700;
}

@media( min-width:768px )  {
    .location-list-state__container > div:hover {
        transform: scale(1.05);
    }
}

.location-listing-sidebar {
    position: relative;
}

.location-listing-sidebar img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

@media( min-width:1025px ) {
    .location-listing-sidebar img {
        height: 400px;
    }
}

.location-sidebar-blurb {
    background: #4a9bcf;
    width: 200px;
    position: absolute;
    top: 10%;
    left: 50%;
    right: 0;
    transform: translate(-50%, 0);
    padding: 15px;
    border-radius: 5px;
}

.location-sidebar-blurb p {
    margin-bottom: 0;
}

.loc-sidebar-head {
    font-size: 25px;
    font-weight: 800;
    color: var(--color-white);
    display: block;
    line-height: 1.2em;
    text-align: center;
}

.loc-sidebar-sub {
    display: block;
    text-align: center;
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.location-sidebar-blurb p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 600;
}

.location-listing-sidebar a {
    padding: 6px 25px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 800;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0px);
    min-width: 200px;
}

@media( min-width:768px ) {
    .location-list-state__container {
        grid-template-columns: repeat(2,1fr)
    }
}

@media( min-width:1025px ) {
    .location-list-state__container {
        grid-template-columns: repeat(3,1fr)
    }
}