.stores-block {
    width: 100%;
}

.stores-block a{
    color: #000000;
    text-decoration: none; 
    
}

.stores-block__title {
    padding: 2rem 0;
    margin: 0;
}

.stores-block__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.stores-block__row--reverse {
    flex-direction: row-reverse;
}

.stores-block__col {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

.stores-block__image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.stores-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stores-block__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem;
}

.stores-block__content .heading-4 {
    margin: 0.5rem 0;
}

.stores-block__schedule {
    margin-top: 1rem;
    line-height: 1.5;
}

.stores-block__schedule--columns-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.stores-block__schedule{
    font-weight: 400;
}

.stores-block__schedule p:last-child {
    margin-bottom: 0;
}

.stores-block__schedule em {
    font-style: italic;
}

.stores-block__text {
    margin-top: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.stores-block__text p {
    margin-bottom: 0.5rem;
}

.stores-block__text p:last-child {
    margin-bottom: 0;
}

.stores-block__btn {
    display: inline-block;
    width: auto;
    margin-top: 1.5rem;
    padding: 1rem 1.375rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 1px solid #000000;
    background-color: transparent;
    color: #000000;
}

.stores-block__btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.stores-block__row--text-only .stores-block__content {
    min-height: 273px;
}

@media (max-width: 767px) {
    .stores-block__row,
    .stores-block__row--reverse {
        flex-direction: column;
    }

    .stores-block__col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stores-block__image {
        order: 1;
        min-height: 300px;
        height: 300px;
    }

    .stores-block__content {
        order: 2;
        padding: 30px 24px;
    }

    .stores-block__img {
        position: static;
        height: 100%;
    }

    .stores-block__row--text-only .stores-block__content {
        min-height: auto;
    }

    .stores-block__btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .stores-block__schedule--columns-2 {
        column-count: 1;
    }
}
