/* ============================================================
   COORDONNEES  –  [coordonnees]
   Affiche adresse / telephone / email / horaires
   ============================================================ */

.wc-coords {
	width: 100%;
	box-sizing: border-box;
}

.wc-coords__titre {
	margin: 0 0 var(--s-ld);
	font-size: var(--fs-h4);
	font-weight: var(--fw-black);
	color: var(--c-brown-700);
	text-transform: uppercase;
	letter-spacing: var(--ls-widest);
	line-height: var(--lh-tight);
}

.wc-coords__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--s-md);
}

.wc-coords--cols-2 .wc-coords__list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s-ld) var(--s-2xl);
}

.wc-coords__item {
	display: flex;
	align-items: flex-start;
	gap: var(--s-md);
	margin: 0;
}

.wc-coords__icon {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--br-circle);
	background: var(--c-cream-500);
	color: var(--c-brown-700);
	border: 1px solid rgba(89, 42, 22, 0.18);
}

.wc-coords__svg {
	width: 1.125rem !important;
	height: 1.125rem !important;
	fill: none !important;
	stroke: currentColor !important;
	display: block;
}

.wc-coords__body {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	min-width: 0;
}

.wc-coords__label {
	font-size: 0.6875rem;
	font-weight: var(--fw-bold);
	color: rgba(89, 42, 22, 0.6);
	letter-spacing: var(--ls-widest);
	text-transform: uppercase;
	line-height: 1;
}

.wc-coords__value {
	font-size: 0.9375rem;
	font-weight: var(--fw-semibold);
	color: var(--c-brown-700);
	line-height: var(--lh-snug);
	word-break: break-word;
}

a.wc-coords__value {
	text-decoration: none;
	transition: color var(--tr-base);

	&:hover,
	&:focus-visible {
		color: var(--c-primary) !important;
		text-decoration: underline;
		outline: none;
	}

	&:focus-visible {
		outline: 2px solid var(--c-primary-light);
		outline-offset: 3px;
		border-radius: 2px;
	}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
	.wc-coords--cols-2 .wc-coords__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.wc-coords__titre {
		font-size: 1.0625rem;
		letter-spacing: var(--ls-wide);
	}
}
