
.entries.locations.grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
}

.entries.locations.grid .entry.location {
    background: #fff;
    margin-bottom: 0;
}

.entries.locations.grid .entry.location .entry-main {
    padding: 20px;
}

.entries.locations.grid .entry.location .entry-image {
    margin-bottom: 0;
}

.entries.locations.grid .entry.location .entry-title {
    font-size: 24px;
    text-align: center;
}

.entries.locations.grid .entry.location .more-info {
    text-align: center;
}

.entries.locations.grid .entry.location .button {
    padding: 8px 20px;
}

/*.single-location .entry-header .header-main {
    padding: 30px;
    background: #fff;
}*/

@media screen and ( min-width: 960px ) {

    .entries.locations.grid .entry.location {
        width: calc( ( 100% / 3 ) - ( 40px / 3 ) );
    }

    /*.single-location .entry-header {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .single-location .entry-header .header-aside {
        width: 70%;
    }

    .single-location .entry-header .header-main {
        width: 30%;
    }*/

}