

/*===============================
  Store Block
  =============================== */
.store {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-4) 22px;
}


.store__item {
    display: flex;
    flex-direction: column;
		gap: var(--spacing-2);
		border: 2px solid #F5F5F5;
		border-radius: 16px;
		padding:10px;
}


.store__img {
    width: 100%;
		aspect-ratio: 400/140;
    object-fit: cover;
    border-radius: var(--radius-sm);}
.store_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.store__name {
    font-size: 20px;
		font-weight: 700;
}
.store__icon{
	    position: absolute;
    left: 0;
    top: 0;
}
.store__phone,.store__address {
    padding-left: 30px;
    position: relative;
}


.store__website {
    margin-top: auto;
}

.store__website .button {
    font-weight: 400;
}


.page-template-page-stores .hero__page-img {
object-position: top center;
}



.store__select{
	width: 100%;
		max-width: 595px;
		margin-bottom: 40px;
}

.store__select .choices:not(.is-open) .choices__list--single{
	border-width: 2px;
}
@media screen and (min-width:960px) {
	.store__name { font-size: 24px;}
.store__icon{width: 29px;height: 29px; }
.store__phone,.store__address {
    padding-left: 35px;
}
.store__item {gap:16px;}
.store_info {gap: 12px;}
.store__website .button {
   margin-top: 8px;
}
.store { gap: 50px 22px;}

}