.contact-card{
	padding:2rem;
	background:#111111;
	border:1px solid rgba(255,255,255,.08);
	border-radius:18px;
	height:100%;
}
.contact-icon {
	width: 32px;
	height: 32px;
	fill: #ffbf22;
}
.contact-item + .contact-item{
	margin-top:1.4rem;
	padding-top:1.4rem;
	border-top:1px solid rgba(255,255,255,.08);
}
.contact-item h3{
	display:flex;
	align-items:center;
	gap:.75rem;
	margin:0 0 .6rem;
	font-size:.9rem;
	font-weight:700;
	letter-spacing:.08em;
	text-transform:uppercase;
	color:#e3b341;
}
.contact-item p{
	margin:0;
	font-size:1rem;
	line-height:1.7;
	color:#ffffff;
}
.contact-item a{
	color:#ffffff;
	text-decoration:none;
	transition:color .2s ease;
}
.contact-item a:hover{
	color:#e3b341;
}
.contact-phone a{
	font-size:1.35rem;
	font-weight:700;
}
.contact-map{
	overflow:hidden;
	border-radius:18px;
	border:1px solid rgba(255,255,255,.08);
}
.contact-map iframe{
	display:block;
	width:100%;
	height:520px;
	border:0;
}
.opening-hours{
	width:100%;
	margin-top:1rem;
	border-collapse:collapse;
}
.opening-hours td{
	padding:.2rem 0;
	line-height:1.4;
}
.opening-hours td:first-child{
	color:#ffffff;
}
.opening-hours td:last-child{
	text-align:right;
	color:#e3b341;
	font-weight:600;
}
.season{
	margin:1rem 0 0;
	line-height:1.6;
	color:#ffffff;
}
.season strong{
	color:#e3b341;
}
.opening-hours tr.current-day td:first-child{
	color:#e3b341;
}
.opening-hours tr.current-day td:last-child{
	color:#e3b341;
}
.opening-hours tr.current-day td{
	font-weight:700;
}
.opening-hours tr.current-day td:first-child::before{
	content:'●';
	display:inline-block;
	margin-right:.45rem;
	color:#e3b341;
	font-size:.55rem;
	vertical-align:middle;
}
@media screen and (max-width:768px){
	.contact-card{
		margin-bottom:2rem;
		padding:1.5rem;
	}
	.contact-map{
		min-height:340px;
	}
	.contact-map iframe{
		height:340px;
	}
	.contact-phone a{
		font-size:1.2rem;
	}
}