/* ============================================
HOURS LIST
============================================ */
.med-hours-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.med-hours-item {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--med-border);
}

.med-hours-item:last-child {
	border-bottom: none;
}

.med-hours-day {
	font-weight: 600;
	color: var(--med-text);
}

.med-hours-time {
	color: var(--med-text-light);
}

.med-hours-closed {
	color: var(--med-danger);
}
