.chophouse-finder {
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    /* border-top: 5px dotted #2c5536; */
    /* border-bottom: 5px dotted #2c5536; */

    h2 {
        margin-top: 0px;
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: 2px;
        color: #2c2924;
        text-transform: uppercase;
    }
    .inner {
        position: relative;
        width: 90%;
        max-width: 700px;
        padding: 2rem 0 3rem;
        margin-inline: auto;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .chophouse-finder-concepts,
    .chophouse-finder-locations {
        height: 100%;
        flex: 1 0 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        transition: opacity 200ms ease;
    }
    .chophouse-finder--inner {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
    .chophouse-finder-concepts {
        opacity: 0;
    }
    .chophouse-finder-concepts .chophouse-finder--inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .chophouse-finder-locations--title {
        grid-column: 1 / -1;
        transition: opacity 200ms ease;
    }

    &.inactive :is(.chophouse-finder-locations--title, .finder-locations-close) {
        opacity: 0;
        pointer-events: none;
    }
    &.inactive :is(.chophouse-finder-concepts) {
        transition: opacity 500ms ease;
        opacity: 1;
    }

    .finder-locations {
        position: relative;
        order: 0;
        flex: 1 0 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 8px;
        transform: translateX(-100%);
        transition: all 200ms ease;
        &.single-col {
            grid-template-columns: auto;
        }
    }
    .finder-locations-close {
        position: absolute;
        top: 6px;
        left: 0;
        appearance: none;
        background-color: transparent;
        border: 0;
        padding: 0;
        display: flex;
        gap: 4px;
        align-items: center;

        &:before {
            content: url(../../../assets/chevron-left.svg);
            width: 12px;
            transition: transform 200ms;
        }

        &:hover:before {
            transform: translateX(-2px);
        }
    }

    .hidden {
        order: 1;
        transform: none;
    }
    .btn-02 {
        background-color: transparent;
    }
}

@media (max-width: 768px) {
    .chophouse-finder {
        .finder-locations {
            grid-template-columns: auto;
        }
        .chophouse-finder-concepts .chophouse-finder--inner {
            grid-template-columns: auto;
        }
    }
}