/* Opening Times Content Block */

.opening-times {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 18px 20px 14px;
	background: linear-gradient(135deg,#ffffff 0%,#f8fafc 100%);
	box-shadow: 0 2px 6px rgba(0,0,0,0.06);
	font-family: system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	position: relative;
	overflow: hidden;
}
.opening-times:before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(circle at 85% 15%, rgba(23,41,131,0.12), transparent 60%);
	pointer-events: none;
}
.opening-times__header { margin: 0 0 10px; }
.opening-times__title {
	margin: 0; font-size: 1.05em; letter-spacing: .5px; font-weight: 700; text-transform: uppercase; color: #172983; position: relative;
}
.opening-times__title:after {
	content: ""; display: block; width: 46px; height: 3px; margin-top: 6px; background: linear-gradient(90deg,#172983,#1e3a8a); border-radius: 2px;
}
.opening-times__list {
	list-style: none; padding: 0; margin: 0 0 6px; display: flex; flex-direction: column; gap: 4px;
}
.opening-times__item { display: flex; align-items: baseline; gap: 6px; font-size: .92em; }
.opening-times__day { min-width: 78px; font-weight: 600; color: #172983; }
.opening-times__sep { opacity: .6; }
.opening-times__hours { font-variant-numeric: tabular-nums; }
.opening-times__note { font-size: .8em; margin: 8px 0 0; color: #444; }
.opening-times__tel { font-weight: 600; color: #172983; text-decoration: none; }
.opening-times__tel:hover { text-decoration: underline; }

@media (max-width: 640px) {
	.opening-times { padding: 16px 16px 12px; }
	.opening-times__day { min-width: 70px; }
}
