/**
 * Bloc « Liste d'expertises (liens) » — pattern DGS Création adapté charte Bilger.
 * Élément : fond bleu très clair arrondi, titre marine, texte gris, flèche si lien.
 */

.dgs-ll-section {
	position: relative;
	box-sizing: border-box;
	padding: clamp(2rem, 4.5vw, 3.5rem) 0;
}

.dgs-ll-section,
.dgs-ll-section * {
	box-sizing: border-box;
}

.dgs-ll-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--dgs-font-titres, sans-serif);
	font-size: var(--dgs-fs-section, clamp(1.5rem, 2.4vw, 2.1rem));
	font-weight: 600;
	line-height: 1.25;
	color: var(--dgs-c-titre, #1b2876);
}

.dgs-ll-section__intro {
	margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
	max-width: 44rem;
	font-family: var(--dgs-font-texte, sans-serif);
	font-size: var(--dgs-fs-texte-sm, 15px);
	font-weight: 300;
	line-height: 1.65;
	color: var(--dgs-c-texte, #696969);
}

.dgs-ll-section__intro p {
	margin: 0 0 0.5em;
	color: inherit;
}

.dgs-ll-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dgs-ll-item {
	margin: 0;
}

.dgs-ll-item__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 14px 18px;
	border-radius: 8px;
	background: var(--ppe-bleu-clair, #f4f9fd);
	border: 1px solid transparent;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dgs-ll-item__content {
	display: block;
	min-width: 0;
}

.dgs-ll-item__title {
	display: block;
	font-family: var(--dgs-font-titres, sans-serif);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--dgs-c-titre, #1b2876);
}

.dgs-ll-item__text {
	display: block;
	margin-top: 3px;
	font-family: var(--dgs-font-texte, sans-serif);
	font-size: var(--dgs-fs-texte-sm, 15px);
	font-weight: 300;
	line-height: 1.5;
	color: var(--dgs-c-texte, #696969);
}

.dgs-ll-item__arrow {
	flex: 0 0 auto;
	color: var(--dgs-c-accent, #af8c62);
	transition: transform 0.2s ease;
}

/* Élément cliquable */
a.dgs-ll-item__link:hover,
a.dgs-ll-item__link:focus {
	background: #ffffff;
	border-color: var(--dgs-c-titre, #1b2876);
	box-shadow: 0 8px 22px rgba(27, 40, 118, 0.1);
}

a.dgs-ll-item__link:hover .dgs-ll-item__arrow,
a.dgs-ll-item__link:focus .dgs-ll-item__arrow {
	transform: translateX(4px);
}

a.dgs-ll-item__link:hover .dgs-ll-item__title,
a.dgs-ll-item__link:focus .dgs-ll-item__title {
	color: var(--ppe-navy-dark, #121c56);
}

/* Élément sans lien : même carte, pas de flèche ni d'interaction */
.dgs-ll-item__link--static {
	cursor: default;
}

.dgs-ll-section.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.dgs-ll-section.alignfull .dgs-ll-section__inner {
	padding: 0 clamp(1rem, 4vw, 3rem);
}
