/* Salle des trophées — hall premium (shortcode [aventure_salle_trophees]) */



.avts {

	--avts-bg-deep: #0c1222;

	--avts-bg-mid: #141c32;

	--avts-bg-soft: #1a2540;

	--avts-card: rgba(255, 255, 255, 0.06);

	--avts-card-solid: #f8fafc;

	--avts-text: #f1f5f9;

	--avts-muted: #94a3b8;

	--avts-line: rgba(148, 163, 184, 0.18);

	--avts-gold: #f59e0b;

	--avts-gold-glow: rgba(245, 158, 11, 0.45);

	--avts-silver: #94a3b8;

	--avts-bronze: #c08457;

	--avts-accent: #818cf8;

	--avts-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55);

	--avts-radius: 18px;

	--avts-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;



	position: relative;

	box-sizing: border-box;

	width: 100%;

	max-width: min(980px, 100%);

	min-width: 0;

	margin: 2rem auto;

	padding: clamp(1.5rem, 4vw, 2.25rem);

	font-family: var(--avts-font);

	color: var(--avts-text);

	background: linear-gradient(165deg, var(--avts-bg-deep) 0%, var(--avts-bg-mid) 42%, var(--avts-bg-soft) 100%);

	border-radius: calc(var(--avts-radius) + 4px);

	border: 1px solid var(--avts-line);

	box-shadow: var(--avts-shadow);

	overflow: visible;

}



.avts *,

.avts *::before,

.avts *::after {

	box-sizing: border-box;

}



/* Fond décoratif */

.avts-bg {

	pointer-events: none;

	position: absolute;

	inset: 0;

	background:

		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 158, 11, 0.14), transparent 55%),

		radial-gradient(ellipse 60% 40% at 100% 100%, rgba(129, 140, 248, 0.12), transparent 50%),

		radial-gradient(ellipse 50% 35% at 0% 80%, rgba(14, 165, 233, 0.08), transparent 45%);

	opacity: 1;

}



.avts-bg::before {

	content: "";

	position: absolute;

	inset: 0;

	background-image:

		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),

		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px);

	background-size: 48px 48px, 64px 64px;

	opacity: 0.6;

}



.avts--hall > *:not(.avts-bg) {

	position: relative;

	z-index: 1;

}



/* --- En-tête --- */

.avts-hero {

	text-align: center;

	margin-bottom: 2rem;

}



.avts-hero__icon {

	display: block;

	width: 3.25rem;

	height: 3.25rem;

	margin: 0 auto 0.85rem;

	border-radius: 50%;

	background: linear-gradient(145deg, #fcd34d, #d97706);

	box-shadow:

		0 0 0 3px rgba(245, 158, 11, 0.25),

		0 8px 24px var(--avts-gold-glow);

	position: relative;

}



.avts-hero__icon::before {

	content: "";

	position: absolute;

	left: 50%;

	top: 28%;

	transform: translateX(-50%);

	width: 1.1rem;

	height: 0.85rem;

	border: 2px solid rgba(120, 53, 15, 0.85);

	border-bottom: none;

	border-radius: 4px 4px 0 0;

}



.avts-hero__icon::after {

	content: "";

	position: absolute;

	left: 50%;

	bottom: 22%;

	transform: translateX(-50%);

	width: 1.5rem;

	height: 0.55rem;

	background: rgba(120, 53, 15, 0.85);

	border-radius: 2px 2px 4px 4px;

}



.avts-title {

	margin: 0 0 0.4rem;

	font-size: clamp(1.45rem, 3.8vw, 1.9rem);

	font-weight: 800;

	letter-spacing: -0.03em;

	background: linear-gradient(90deg, #fef3c7 0%, #fcd34d 35%, #f59e0b 70%, #fde68a 100%);

	-webkit-background-clip: text;

	background-clip: text;

	color: transparent;

	text-shadow: none;

}



.avts-sub {

	margin: 0;

	font-size: 0.95rem;

	color: var(--avts-muted);

	letter-spacing: 0.02em;

}



/* --- Image dieu en haut du podium --- */

.avts-god-top {
	position: relative;
	margin: -1.15rem -1rem 0.85rem;
	min-height: 7.5rem;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	border-radius: var(--avts-radius) var(--avts-radius) 0 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.avts-god-top--podium-1 {
	min-height: 9.5rem;
}

.avts-god-top--podium-2,
.avts-god-top--podium-3 {
	min-height: 8rem;
}

.avts-god-top__img {
	display: block;
	width: 100%;
	max-height: 10.5rem;
	height: auto;
	object-fit: contain;
	object-position: top center;
	z-index: 2;
}

.avts-podium__card--1 .avts-god-top__img {
	max-height: 11.5rem;
}

.avts-god-top--has-img .avts-god-top__fallback {
	display: none;
}

.avts-god-top__fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 800;
	color: #e2e8f0;
	text-transform: uppercase;
	opacity: 0.85;
	z-index: 1;
}

/* --- Crests maisons (liste) --- */

.avts-crest {

	--crest-ring: var(--avts-accent);

	position: relative;

	width: 4.25rem;

	height: 4.25rem;

	margin: 0 auto 0.75rem;

	border-radius: 50%;

	background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));

	border: 2px solid var(--crest-ring);

	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

	display: flex;

	align-items: center;

	justify-content: center;

	overflow: hidden;

}



.avts-crest--podium {

	width: 4.75rem;

	height: 4.75rem;

}



.avts-podium__card--1 .avts-crest--podium {

	--crest-ring: var(--avts-gold);

	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2), 0 8px 28px var(--avts-gold-glow);

}



.avts-podium__card--2 .avts-crest--podium {

	--crest-ring: var(--avts-silver);

}



.avts-podium__card--3 .avts-crest--podium {

	--crest-ring: var(--avts-bronze);

}



.avts-crest--list {

	width: 3.5rem;

	height: 3.5rem;

	flex-shrink: 0;

	margin: 0;

}

.avts-crest--list .avts-crest__img {

	position: absolute;

	inset: 0;

	width: 100%;

	height: 100%;

	object-fit: cover;

	border-radius: 50%;

	z-index: 2;

}



.avts-crest--has-img .avts-crest__fallback {

	opacity: 0;

}



.avts-crest__fallback {

	font-size: 1.35rem;

	font-weight: 800;

	color: #e2e8f0;

	text-transform: uppercase;

	z-index: 1;

}



/* Accents par maison (check-in) */

.avts[data-house="zeus"] .avts-crest,

.avts-crest[data-house="zeus"],

.avts-podium__card[data-house="zeus"],

.avts-card[data-house="zeus"] {

	--crest-ring: #f59e0b;

}



.avts-crest[data-house="hades"],

.avts-podium__card[data-house="hades"],

.avts-card[data-house="hades"] {

	--crest-ring: #6366f1;

}



.avts-crest[data-house="poseidon"],

.avts-podium__card[data-house="poseidon"],

.avts-card[data-house="poseidon"] {

	--crest-ring: #0ea5e9;

}



.avts-crest[data-house="athena"],

.avts-podium__card[data-house="athena"],

.avts-card[data-house="athena"] {

	--crest-ring: #10b981;

}



.avts-crest[data-house="apollo"],

.avts-podium__card[data-house="apollo"],

.avts-card[data-house="apollo"] {

	--crest-ring: #f97316;

}



/* --- Podium --- */

.avts-podium {

	display: flex;

	flex-wrap: wrap;

	justify-content: center;

	align-items: flex-end;

	gap: clamp(0.75rem, 2.5vw, 1.35rem);

	margin-bottom: 2.25rem;

	padding-bottom: 0.5rem;

	min-width: 0;

	width: 100%;

}



.avts-podium__card {

	position: relative;

	flex: 1 1 160px;

	max-width: 290px;

	background: var(--avts-card);

	backdrop-filter: blur(12px);

	-webkit-backdrop-filter: blur(12px);

	border-radius: var(--avts-radius);

	padding: 1.15rem 1rem 1.35rem;

	border: 2px solid var(--avts-line);

	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

	overflow: visible;

	min-width: 0;

	text-align: center;

	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

}



.avts-podium__card--1 {

	flex: 1.12 1 180px;

	max-width: 310px;

	border-color: rgba(245, 158, 11, 0.45);

	box-shadow:

		0 0 0 1px rgba(245, 158, 11, 0.15),

		0 16px 40px -8px var(--avts-gold-glow),

		0 8px 32px rgba(0, 0, 0, 0.25);

}



.avts-podium__card--2 {

	border-color: rgba(148, 163, 184, 0.4);

}



.avts-podium__card--3 {

	border-color: rgba(192, 132, 87, 0.45);

}



.avts-podium__card:hover {

	transform: translateY(-4px);

	box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.35);

}



.avts-podium__pedestal {

	position: absolute;

	bottom: 0;

	left: 8%;

	right: 8%;

	height: 6px;

	border-radius: 4px 4px 0 0;

	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);

	opacity: 0.7;

}



.avts-podium__card--1 .avts-podium__pedestal {

	height: 8px;

	background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);

}



@media (max-width: 720px) {

	.avts {

		margin: 1rem 0;

		padding: 0.85rem 0.7rem;

	}

	.avts-hero {

		margin-bottom: 1rem;

	}

	.avts-hero__icon {

		width: 2.5rem;

		height: 2.5rem;

		margin-bottom: 0.45rem;

	}

	.avts-title {

		font-size: 1.25rem;

	}

	.avts-sub {

		font-size: 0.85rem;

	}

	.avts-podium {

		flex-direction: column;

		align-items: stretch;

		gap: 0.5rem;

		margin-bottom: 1rem;

	}

	.avts-podium__card,

	.avts-podium__card--1 {

		max-width: none;

		width: 100%;

		transform: none !important;

		display: grid;

		grid-template-columns: auto auto minmax(0, 1fr);

		grid-template-rows: auto auto;

		align-items: center;

		gap: 0.35rem 0.5rem;

		text-align: left;

		padding: 0.55rem 0.65rem 0.6rem;

	}

	.avts-podium__card--1 { order: 1; }

	.avts-podium__card--2 { order: 2; }

	.avts-podium__card--3 { order: 3; }

	.avts-podium__rank {

		grid-column: 1;

		grid-row: 2;

		margin: 0;

		width: 1.75rem;

		height: 1.75rem;

	}

	.avts-podium__card--1 .avts-podium__rank {

		width: 1.85rem;

		height: 1.85rem;

	}

	.avts-podium__rank-num {

		font-size: 0.8rem;

	}

	.avts-podium__card .avts-crest--podium {

		grid-column: 2;

		grid-row: 2;

		width: 2.5rem;

		height: 2.5rem;

		margin: 0;

		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

	}

	.avts-podium__card--1 .avts-crest--podium {

		width: 2.65rem;

		height: 2.65rem;

		box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2), 0 4px 14px var(--avts-gold-glow);

	}

	.avts-podium__name {

		grid-column: 3;

		grid-row: 2;

		margin: 0;

		font-size: 0.92rem !important;

		line-height: 1.2;

	}

	.avts-podium__slug {

		grid-column: 3;

		grid-row: 2;

		align-self: end;

		margin: 0;

	}

	.avts-podium__card .avts-chips {

		grid-column: 1 / -1;

		grid-row: 3;

		justify-content: flex-start;

		gap: 0.3rem;

	}

	.avts-chip {

		padding: 0.28rem 0.45rem;

		font-size: 0.72rem;

	}

	.avts-chip__k {

		font-size: 0.62rem;

	}

	.avts-chip__v {

		font-size: 0.8rem;

	}

	.avts-list-wrap {

		padding-top: 0.85rem;

		margin-top: 0.25rem;

	}

	.avts-list {

		gap: 0.5rem;

	}

	.avts-card {

		padding: 0.55rem 0.65rem;

		gap: 0.5rem 0.6rem;

	}

	.avts-card .avts-crest {

		width: 2.25rem;

		height: 2.25rem;

	}

}



@media (min-width: 721px) {

	.avts-podium__card--1 {

		transform: translateY(-14px);

	}



	.avts-podium__card--1:hover {

		transform: translateY(-18px);

	}



	.avts-podium__card--2 {

		transform: translateY(6px);

	}



	.avts-podium__card--3 {

		transform: translateY(12px);

	}

}



.avts-podium__glow {

	position: absolute;

	inset: 0 auto auto 0;

	width: 100%;

	height: 4px;

	opacity: 0.95;

}



.avts-podium__card--1 .avts-podium__glow {

	background: linear-gradient(90deg, #fde68a, #f59e0b, #d97706);

	height: 5px;

	animation: avts-shimmer 3s ease-in-out infinite;

}



.avts-podium__card--2 .avts-podium__glow {

	background: linear-gradient(90deg, #f1f5f9, #94a3b8, #64748b);

}



.avts-podium__card--3 .avts-podium__glow {

	background: linear-gradient(90deg, #fdba74, #c08457, #9a3412);

}



@keyframes avts-shimmer {

	0%, 100% { opacity: 0.85; }

	50% { opacity: 1; }

}



.avts-podium__rank {

	display: inline-flex;

	align-items: center;

	justify-content: center;

	width: 2.35rem;

	height: 2.35rem;

	margin: 0 auto 0.35rem;

	border-radius: 50%;

	font-weight: 800;

	color: #fff;

	background: rgba(255, 255, 255, 0.12);

	border: 2px solid rgba(255, 255, 255, 0.2);

}



.avts-podium__card--1 .avts-podium__rank {

	width: 2.65rem;

	height: 2.65rem;

	background: linear-gradient(145deg, #fcd34d, #d97706);

	border-color: rgba(254, 243, 199, 0.5);

	box-shadow: 0 4px 16px var(--avts-gold-glow);

}



.avts-podium__card--2 .avts-podium__rank {

	background: linear-gradient(145deg, #e2e8f0, #64748b);

	color: #1e293b;

}



.avts-podium__card--3 .avts-podium__rank {

	background: linear-gradient(145deg, #fdba74, #9a3412);

}



.avts-podium__rank-num {

	font-size: 0.95rem;

	line-height: 1;

}



.avts-podium__name {

	margin: 0 0 0.15rem;

	font-size: clamp(1.05rem, 2.5vw, 1.2rem);

	font-weight: 700;

	letter-spacing: -0.01em;

	color: #f8fafc;

}



.avts-podium__card--1 .avts-podium__name {

	font-size: clamp(1.15rem, 2.8vw, 1.35rem);

}



.avts-podium__slug {

	margin: 0 0 0.75rem;

	font-size: 0.72rem;

	color: var(--avts-muted);

}



.avts-podium__slug code {

	background: rgba(0, 0, 0, 0.25);

	padding: 0.1rem 0.4rem;

	border-radius: 6px;

	font-size: 0.68rem;

}



/* --- Chips stats --- */

.avts-chips {

	display: flex;

	flex-wrap: wrap;

	gap: 0.4rem;

	justify-content: center;

}



.avts-chip {

	display: inline-flex;

	align-items: center;

	gap: 0.35rem;

	padding: 0.38rem 0.6rem;

	border-radius: 999px;

	font-size: 0.78rem;

	font-weight: 600;

	border: 1px solid transparent;

	backdrop-filter: blur(4px);

}



.avts-chip__k {

	opacity: 0.9;

	font-weight: 700;

	font-size: 0.68rem;

	text-transform: uppercase;

	letter-spacing: 0.05em;

}



.avts-chip__v {

	font-variant-numeric: tabular-nums;

	font-weight: 800;

	font-size: 0.9rem;

}



.avts-chip--gold {

	background: rgba(254, 243, 199, 0.15);

	border-color: rgba(245, 158, 11, 0.45);

	color: #fde68a;

}



.avts-chip--silver {

	background: rgba(241, 245, 249, 0.1);

	border-color: rgba(148, 163, 184, 0.4);

	color: #e2e8f0;

}



.avts-chip--bronze {

	background: rgba(255, 237, 213, 0.12);

	border-color: rgba(234, 88, 12, 0.4);

	color: #fdba74;

}



.avts-chip--total {

	background: rgba(129, 140, 248, 0.15);

	border-color: rgba(129, 140, 248, 0.35);

	color: #c7d2fe;

}



/* --- Liste --- */

.avts-list-wrap {

	margin-top: 0.5rem;

	padding-top: 1.25rem;

	border-top: 1px solid var(--avts-line);

}



.avts-list-heading {

	margin: 0 0 1rem;

	font-size: 0.78rem;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.1em;

	color: var(--avts-muted);

	text-align: center;

}



.avts-list {

	list-style: none;

	margin: 0;

	padding: 0;

	display: flex;

	flex-direction: column;

	gap: 0.7rem;

}



.avts-card {

	display: flex;

	flex-wrap: wrap;

	align-items: center;

	gap: 0.85rem 1rem;

	background: var(--avts-card);

	backdrop-filter: blur(8px);

	-webkit-backdrop-filter: blur(8px);

	border: 1px solid var(--avts-line);

	border-radius: 14px;

	padding: 0.9rem 1rem;

	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);

	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;

}



.avts-card:hover {

	border-color: rgba(129, 140, 248, 0.35);

	transform: translateX(4px);

	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);

}



.avts-card .avts-crest {

	width: 2.75rem;

	height: 2.75rem;

	margin: 0;

	flex-shrink: 0;

}



.avts-card .avts-crest__fallback {

	font-size: 1rem;

}



.avts-card__main {

	flex: 1;

	min-width: 0;

}



.avts-card__name {

	margin: 0 0 0.1rem;

	font-size: 1rem;

	font-weight: 700;

	color: #f1f5f9;

}



.avts-card__slug {

	margin: 0;

	font-size: 0.72rem;

	color: var(--avts-muted);

}



.avts-card__slug code {

	background: rgba(0, 0, 0, 0.25);

	padding: 0.08rem 0.35rem;

	border-radius: 5px;

	font-size: 0.68rem;

}



.avts-card .avts-chips {

	justify-content: flex-end;

	flex: 1 1 auto;

}



@media (max-width: 560px) {

	.avts-card {

		flex-direction: column;

		align-items: stretch;

	}



	.avts-card .avts-chips {

		justify-content: flex-start;

	}

}



/* --- État vide --- */

.avts--empty {

	text-align: center;

	padding: clamp(2rem, 6vw, 3rem) 1.5rem;

	background: linear-gradient(165deg, var(--avts-bg-deep), var(--avts-bg-mid));

	border: 1px dashed rgba(148, 163, 184, 0.35);

	border-radius: var(--avts-radius);

}



.avts-empty-inner {

	max-width: 22rem;

	margin: 0 auto;

}



.avts-empty-icon {

	display: block;

	width: 3.5rem;

	height: 3.5rem;

	margin: 0 auto 1rem;

	border-radius: 50%;

	background: linear-gradient(145deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.08));

	border: 2px dashed rgba(245, 158, 11, 0.35);

	position: relative;

}



.avts-empty-icon::after {

	content: "";

	position: absolute;

	inset: 50% auto auto 50%;

	transform: translate(-50%, -50%);

	width: 1.35rem;

	height: 1.1rem;

	border: 2px solid rgba(245, 158, 11, 0.5);

	border-bottom: none;

	border-radius: 3px 3px 0 0;

}



.avts--empty p {

	margin: 0;

	font-size: 0.95rem;

	color: var(--avts-muted);

	line-height: 1.55;

}



@media (max-width: 480px) {

	.avts {

		margin: 1.25rem 0;

		padding-left: max(0.85rem, env(safe-area-inset-left, 0px));

		padding-right: max(0.85rem, env(safe-area-inset-right, 0px));

	}

}



@media (prefers-reduced-motion: reduce) {

	.avts-podium__card,

	.avts-card,

	.avts-podium__card--1 .avts-podium__glow {

		animation: none;

		transition: none;

	}

}

/* Fiche dieu / maison (shortcode [aventure_dieu_fiche]) */
.avdieu {
	margin: 1.25rem auto;
	padding: 1rem;
	max-width: min(980px, 100%);
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 16px;
	background: linear-gradient(165deg, #0c1222 0%, #141c32 42%, #1a2540 100%);
	color: #f1f5f9;
	box-shadow: 0 18px 34px -16px rgba(0, 0, 0, 0.55);
}
.avdieu__hero { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avdieu__hero-img, .avdieu__hero-fallback {
	width: 56px; height: 56px; border-radius: 999px; object-fit: cover;
	border: 2px solid rgba(129, 140, 248, 0.5);
}
.avdieu__hero-fallback {
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 24px; font-weight: 800; background: rgba(148, 163, 184, 0.2);
}
.avdieu__title { margin: 0; font-size: 1.3rem; }
.avdieu__sub { margin: .2rem 0 0; color: #94a3b8; font-size: .85rem; }
.avdieu__sub code { background: rgba(0,0,0,.25); padding: .1rem .4rem; border-radius: 6px; }
.avdieu__grid {
	display: grid; gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	margin-bottom: 12px;
}
.avdieu__card {
	padding: 10px; border-radius: 12px; border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(255,255,255,.04);
	display: flex; flex-direction: column; gap: 4px;
}
.avdieu__card span { font-size: .78rem; color: #94a3b8; }
.avdieu__card strong { font-size: 1.2rem; color: #f8fafc; }
.avdieu__section {
	padding: 10px; border-radius: 12px; margin-top: 10px;
	border: 1px solid rgba(148, 163, 184, 0.18); background: rgba(2,6,23,.25);
}
.avdieu__section h3 { margin: 0 0 8px; font-size: .96rem; color: #cbd5e1; }
.avdieu__line { margin: 4px 0; color: #e2e8f0; }
.avdieu__line--muted { color: #94a3b8; font-size: .86rem; }
.avdieu__grade { margin-top: 8px; display: grid; gap: 8px; }
.avdieu__grade h4 { margin: 0 0 4px; color: #cbd5e1; font-size: .9rem; }
.avdieu__grade-item {
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	padding: 8px 10px;
}
.avdieu__grade-item strong { display: block; margin-bottom: 4px; color: #f8fafc; }
.avdieu__partner-offer {
	margin-top: 8px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	background: rgba(15, 23, 42, 0.35);
}
.avdieu__partner-offer:first-of-type { margin-top: 6px; }
.avdieu__partner-tools { margin: 8px 0 6px; }
.avdieu__partner-search-wrap { display: block; }
.avdieu__partner-search {
	width: 100%;
	border: 1px solid rgba(148, 163, 184, 0.3);
	background: rgba(15, 23, 42, 0.5);
	color: #f8fafc;
	border-radius: 10px;
	padding: 8px 10px;
	font-size: .9rem;
}
.avdieu__partner-search::placeholder { color: #94a3b8; }
.avdieu__partner-list {
	max-height: 460px;
	overflow: auto;
	padding-right: 4px;
}
.avdieu__partner-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
	padding: 8px 10px;
	list-style: none;
}
.avdieu__partner-summary::-webkit-details-marker { display: none; }
.avdieu__partner-summary::after {
	content: '▾';
	color: #94a3b8;
	font-size: 0.9rem;
	margin-left: 8px;
}
.avdieu__partner-offer[open] .avdieu__partner-summary::after { content: '▴'; }
.avdieu__partner-content {
	padding: 0 10px 10px;
	display: grid;
	gap: 8px;
}
.avdieu__partner-name { margin: 0; font-size: .95rem; font-weight: 600; }
.avdieu__partner-name a { color: #a5b4fc; text-decoration: none; }
.avdieu__partner-name a:hover { text-decoration: underline; }
.avdieu__partner-badges { display: inline-flex; align-items: center; gap: 6px; }
.avdieu__badge {
	display: inline-block;
	padding: 2px 7px;
	border-radius: 999px;
	border: 1px solid rgba(129, 140, 248, 0.45);
	background: rgba(99, 102, 241, 0.16);
	color: #c7d2fe;
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.25;
}
.avdieu__partner-empty {
	margin-top: 8px;
	font-size: .86rem;
	color: #94a3b8;
}


