.items__list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
	border-top: 1px solid #f2f2f2;
}
.store_item {
	position: relative;
	transition: box-shadow ease .3s, border ease .3s, background ease .3s;
    border: 1px solid #f2f2f2;
    border-top: none;
    padding: 0 1.5rem 1rem;
    display: grid;
    grid-template-areas: 'preview'
	    'controls'
	    'metro'
	    'schedule'
	    'contacts'
	    'paytype';
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 0;
    align-items: start;
    justify-content: start;
}
.store_item:hover {
    box-shadow: 0 5px 30px rgba(34, 34, 34, .1);
}
.store_item .preview {
    grid-area: preview;
    position: relative;
    overflow: hidden;
    width: calc(100% + 3rem + 2px);
    margin: 0 calc(-1.5rem - 1px);
}
.store_item .preview:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 75%;
}
.store_item .preview > img {
	position: absolute;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	object-fit: contain;
}
.store_item .name {
	grid-area: name;
	color: #333;
    font-size: 1.1rem;
    line-height: calc(1em + 7px);
    font-weight: 600;
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
}
.store_item .name:before {
	content: '';
	display: block;
    padding-top: 75%;
}
.store_item .name span {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
    padding: 0 2rem 1.625rem;
    z-index: 2;
}
.store_item .name:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 51%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 100%);
    transition: opacity .2s ease-in-out;
}
.store_item__prop {
    font-size: .875rem;
    line-height: calc(1em + 7px);
}
.store_item__prop .name {
    display: none;
}
.store_item__prop .value.wth_icon {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: .4rem;
}
.store_item__prop .value.wth_icon > i,
.store_item__prop > i {
	height: 1rem;
	width: 1rem;
	display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.store_item__prop .svg {
    min-width: auto;
    min-height: auto;
}
.store_item__prop .value.wth_icon svg > path {
    fill: #ccc;
}
.store_item__prop .value {
    color: #666;
    display: block;
}
.store_item__prop a.value:hover {
    color: var(--theme-base-color);
}
.store_item .metro {
    grid-area: metro;
}
.store_item .schedule {
    grid-area: schedule;
}
.store_item .contacts {
    grid-area: contacts;
    padding-top: .375rem;
}
.store_item .contacts .store_item__prop {
	padding-bottom: .5625rem;
	font-size: 1rem;
}
.store_item .contacts .store_item__prop .value:not(:hover) {
    color: #333;
}
.store_item__paytypes {
    grid-area: paytypes;
}
.store_item .controls {
    grid-area: controls;
    align-self: start;
    justify-self: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    padding: .375rem 0;
}
.store_item .controls button {
	--color: var(--theme-base-color);
	border: none;
	background: none;
    outline: none;
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: .5625rem;
    color: var(--color);
}
.store_item .controls button:hover {
	--color: #333;
}
.store_item .controls button > i {
    position: relative;
    top: 4px;
}
.store_item .controls button > span {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: .15em;
    text-decoration-thickness: 1px;
    text-decoration-skip-ink: none;
}
.store_item .controls button svg path {
    fill: var(--color);
}
@media (min-width: 480px) {
	.store_item {
	    grid-template-areas: 'preview preview'
	        'controls controls'
	        'metro contacts'
	        'schedule contacts'
	        '. contacts'
	        'paytype paytype';
        grid-template-columns: 1fr 1fr;
        grid-template-rows: min-content;
	}
	.store_item .contacts {
	   padding: 0;
	}
}
@media (min-width: 580px) {
    .store_item {
        grid-template-areas: 'preview name'
            'preview metro'
            'preview schedule'
            'preview contacts'
            'controls controls'
            'paytype paytype';
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto 1fr auto auto;
        padding: 1.5rem 1.5rem;
    }
    .store_item .preview {
        width: 100%;
        margin: 0;
    }
    .store_item .contacts {
       padding: .375rem 0;
    }
    .store_item .name {
        position: static;
        padding-bottom: .375rem;
    }
    .store_item .name > span {
        color: inherit;
        position: static;
        padding: 0;
    }
    .store_item .name:before, .store_item .name:after {
        display: none;
    }
    .store_item .controls {
        padding-bottom: 0;
    }
}
@media (min-width: 780px) {
    .store_item {
        grid-template-areas: 'preview name name'
            'preview metro contacts'
            'preview schedule contacts'
            'preview controls controls'
            'preview paytype paytype';
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto 1fr auto auto;
        padding: 1.5rem 1.5rem;
    }
    .store_item .preview {
        width: 100%;
        margin: 0;
    }
    .store_item .contacts {
       padding: .375rem 0;
    }
    .store_item .name {
        position: static;
        padding-bottom: .375rem;
    }
    .store_item .name > span {
        color: inherit;
        position: static;
        padding: 0;
    }
    .store_item .name:before, .store_item .name:after {
        display: none;
    }
    .store_item .controls {
        padding-bottom: 0;
    }
}
@media (min-width: 1280px) {
	.store_item {
	    transition: box-shadow ease .3s, border ease .3s, background ease .3s;
	    border: 1px solid #f2f2f2;
	    border-top: none;
	    padding: 1.625rem 2rem 2rem 2rem;
	    display: grid;
	    grid-template-areas: 'preview name contacts'
	    'preview metro contacts'
	    'preview schedule contacts'
	    'preview controls controls'
	    'preview paytype paytype';
	    grid-template-columns: 150px 1fr 20%;
	    column-gap: 2rem;
	    row-gap: 0;
	}
	.store_item .preview {
	    grid-area: preview;
	    position: relative;
	    overflow: hidden;
	    width: 150px;
	}
	.store_item:hover .name {
        color: var(--theme-base-color);
    }
}

@media (min-width: 1400px) {
    .store_item {
        grid-template-areas: 'preview name contacts controls'
        'preview metro contacts controls'
        'preview schedule contacts controls'
        'preview paytype paytype paytype';
        grid-template-columns: 150px 40% 20% 1fr;
    }
}