﻿.store__title {
	color: var(--primary_blue);
	border-bottom: 1px solid var(--primary_red);
	font-weight: 500;
	font-size: 2.2rem;
	letter-spacing: 0.5px;
}

.store__subtitle {
	font-weight: 600;
	margin: 0;
	margin-top: 20px;
	margin-bottom: 5px;
	color: var(--primary_red);
	font-size: 1.25rem;
	letter-spacing: 0.5px;
}



.depot__images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	grid-template-rows: 1fr;
	grid-gap: 10px;
	padding-block: 15px;
}

@media screen and (max-width: 645px) {
.depot__images {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
}

@media screen and (max-width: 435px) {
.depot__images {
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
}

.depot__images img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.bold {
	font-weight: 600;
}

.depot_ul {
	padding: 10px 0 10px 20px;
	font-size: 0.9rem;
}

.depot_ul li {
	list-style-type: square !important;
}


/* Tablet Styles */
@media screen and (min-width: 768px) and (max-width: 1023px) {

}

/* Mobile Styles */
@media screen and (max-width: 767px) {

}

