/**
 * Styles de l'annuaire des professionnels — Droitzen
 *
 * Respecte les patterns du thème The Voux :
 * - Grille Foundation (row/columns)
 * - Couleur accent #ec1166 (option thème)
 * - Typographie : inherit du thème (Playfair Display pour les titres)
 * - Espacements : 20px / 30px / 40px / 60px
 *
 * @doc docs/annuaire-professionnels.md
 */

/* ============================================
   HEADER ANNUAIRE
   ============================================ */

.drz-directory-header {
	text-align: center;
	padding: 40px 0 20px;
}

.drz-directory-header .entry-title {
	font-size: 2.4em;
	font-weight: 700;
	margin-bottom: 10px;
}

.drz-directory-context {
	font-size: 0.95em;
	color: #777;
	margin-bottom: 0;
}

.drz-directory-context a {
	color: inherit;
	text-decoration: underline;
}

/* ============================================
   FILTRES
   ============================================ */

.drz-filters {
	background: #f8f8f8;
	border: 1px solid #eee;
	padding: 20px;
	margin-bottom: 40px;
}

.drz-filters label {
	display: block;
	font-size: 0.85em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	color: #333;
}

.drz-filters select {
	width: 100%;
	height: 40px;
	border: 1px solid #ddd;
	background: #fff;
	padding: 0 10px;
	font-size: 0.95em;
	color: #333;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
}

.drz-filters select:focus {
	outline: 2px solid #ec1166;
	outline-offset: -2px;
	border-color: #ec1166;
}

.drz-filters .btn {
	margin-top: 10px;
}

/* ============================================
   GRILLE DE CARDS
   ============================================ */

.drz-cards-grid {
	display: flex;
	flex-wrap: wrap;
}

.drz-cards-grid > .columns {
	margin-bottom: 30px;
}

/* État de chargement AJAX */
.drz-loading {
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.drz-no-results {
	text-align: center;
	padding: 60px 20px;
	font-size: 1.1em;
	color: #999;
}

/* ============================================
   CARD STANDARD
   ============================================ */

.drz-card {
	background: #fff;
	border: 1px solid #eee;
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.drz-card:hover {
	border-color: #ddd;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.drz-card__body {
	display: flex;
	gap: 15px;
	margin-bottom: 12px;
}

.drz-card__photo {
	flex-shrink: 0;
}

.drz-card__photo img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
}

.drz-card__info {
	min-width: 0;
}

.drz-card__name {
	font-size: 1.1em;
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.3;
}

.drz-card__name a {
	color: #222;
	text-decoration: none;
}

.drz-card__name a:hover {
	color: #ec1166;
}

.drz-card__profession {
	font-size: 0.85em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #ec1166;
	margin: 0 0 6px;
}

.drz-card__profession-inline {
	font-size: 0.8em;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	color: #999;
}

.drz-card__cabinet {
	font-size: 0.9em;
	color: #555;
	margin: 0 0 2px;
}

.drz-card__location {
	font-size: 0.9em;
	color: #777;
	margin: 0;
}

.drz-card__dept {
	color: #aaa;
}

.drz-card__description {
	font-size: 0.9em;
	color: #555;
	line-height: 1.5;
	margin: 0 0 12px;
	padding: 0;
	border: none;
}

.drz-card__description--featured {
	font-style: italic;
	border-left: 3px solid #ec1166;
	padding-left: 15px;
	margin-top: 10px;
}

.drz-card__actions {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.drz-card__action {
	font-size: 0.85em;
	color: #555;
	text-decoration: none;
	white-space: nowrap;
}

.drz-card__action:hover {
	color: #ec1166;
}

/* ============================================
   BADGES
   ============================================ */

.drz-badge {
	display: inline-block;
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 10px;
	margin-bottom: 10px;
}

.drz-badge--author {
	background: #ec1166;
	color: #fff;
}

.drz-badge--sponsor {
	background: #f5f0e6;
	color: #8a7340;
	border: 1px solid #d4c9a8;
}

/* ============================================
   CARD MISE EN AVANT (AUTEUR)
   ============================================ */

.drz-card--featured {
	border: 2px solid #ec1166;
	padding: 25px;
	margin-bottom: 30px;
	background: #fdf5f8;
}

.drz-card--featured:hover {
	box-shadow: 0 6px 20px rgba(236, 17, 102, 0.1);
}

.drz-card--featured__layout {
	display: flex;
	gap: 25px;
	align-items: flex-start;
}

.drz-card--featured__photo img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
}

.drz-card--featured__content {
	flex: 1;
	min-width: 0;
}

.drz-card--featured .drz-card__name {
	font-size: 1.3em;
}

/* ============================================
   CARD SPONSOR
   ============================================ */

.drz-card--sponsor {
	border-color: #d4c9a8;
	background: #fdfcf8;
}

.drz-card--sponsor:hover {
	border-color: #c4b898;
}

/* ============================================
   PAGINATION
   ============================================ */

.drz-pagination-container {
	padding: 20px 0 60px;
}

.drz-pagination {
	text-align: center;
}

.drz-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
}

.drz-pagination li {
	margin: 0;
}

.drz-pagination a,
.drz-pagination span {
	display: inline-block;
	padding: 8px 14px;
	font-size: 0.9em;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	transition: all 0.2s ease;
}

.drz-pagination a:hover {
	background: #ec1166;
	color: #fff;
	border-color: #ec1166;
}

.drz-pagination .current {
	background: #222;
	color: #fff;
	border-color: #222;
}

/* ============================================
   CTA EN BAS D'ARTICLE
   ============================================ */

.drz-article-cta {
	background: #f8f8f8;
	border: 1px solid #eee;
	border-left: 4px solid #ec1166;
	padding: 25px 30px;
	margin: 40px 0 30px;
	text-align: center;
}

.drz-article-cta__title {
	font-size: 1.3em;
	font-weight: 700;
	margin: 0 0 8px;
	color: #222;
}

.drz-article-cta__text {
	font-size: 1em;
	color: #555;
	margin: 0 0 15px;
}

.drz-article-cta__btn {
	display: inline-block;
	background: #ec1166;
	color: #fff !important;
	padding: 10px 28px;
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.drz-article-cta__btn:hover {
	background: #d40e5a;
}

/* ============================================
   FICHE INDIVIDUELLE (SINGLE)
   Design "profil" — distinct du layout article
   ============================================ */

/* Fil d'Ariane */
.drz-breadcrumb {
	font-size: 0.82em;
	color: #aaa;
	padding: 14px 0 0;
	margin-bottom: 24px;
	letter-spacing: 0.01em;
}

.drz-breadcrumb a {
	color: #999;
	text-decoration: none;
}

.drz-breadcrumb a:hover {
	color: #ec1166;
}

.drz-breadcrumb span[aria-hidden] {
	margin: 0 6px;
}

/* ─────────────────────────────────────────────
   HERO CARD
   ───────────────────────────────────────────── */

.drz-pro-hero {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	margin-bottom: 32px;
	overflow: hidden;
}

/* Bandeau "Partenaire" en haut de la card */
.drz-pro-hero__sponsor-bar {
	background: linear-gradient(135deg, #8a7340, #c4a860);
	color: #fff;
	font-size: 0.72em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 7px 28px;
	text-align: center;
}

.drz-pro-hero__layout {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	padding: 28px 28px 0;
}

/* Avatar */
.drz-pro-hero__avatar-wrap {
	flex-shrink: 0;
}

.drz-pro-hero__avatar-img,
.drz-pro-hero__avatar-initiale {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	display: block;
	object-fit: cover;
	object-position: top center;
}

.drz-pro-hero__avatar-initiale {
	background: #ec1166;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.6em;
	font-weight: 700;
	font-family: 'Playfair Display', Georgia, serif;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* Identité */
.drz-pro-hero__identity {
	flex: 1;
	min-width: 0;
	padding-top: 4px;
}

.drz-pro-hero__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}

.drz-pro-hero__cat-chip {
	display: inline-block;
	font-size: 0.72em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #ec1166;
	text-decoration: none;
	padding: 3px 10px;
	border: 1px solid rgba(236, 17, 102, 0.3);
	border-radius: 20px;
	transition: background 0.15s, color 0.15s;
}

.drz-pro-hero__cat-chip:hover {
	background: #ec1166;
	color: #fff;
	border-color: #ec1166;
}

.drz-pro-hero__name {
	font-size: 1.9em;
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.15;
	color: #1a1a1a;
}

.drz-pro-hero__profession {
	font-size: 0.82em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #ec1166;
	margin: 0 0 8px;
}

.drz-pro-hero__location {
	font-size: 0.9em;
	color: #777;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
}

.drz-pro-hero__cabinet {
	color: #555;
	font-weight: 500;
}

.drz-pro-hero__loc-sep {
	color: #ccc;
}

.drz-pro-hero__dept {
	color: #aaa;
}

/* CTAs de contact */
.drz-pro-hero__actions {
	padding: 20px 28px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	border-top: 1px solid #f2f2f2;
}

.drz-pro-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9em;
	font-weight: 600;
	padding: 11px 22px;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background 0.18s, color 0.18s, border-color 0.18s;
	white-space: nowrap;
}

.drz-pro-hero__cta-icon {
	flex-shrink: 0;
}

.drz-pro-hero__cta--primary {
	background: #ec1166;
	color: #fff !important;
	border: 2px solid #ec1166;
}

.drz-pro-hero__cta--primary:hover {
	background: #c40f55;
	border-color: #c40f55;
}

.drz-pro-hero__cta--secondary {
	background: transparent;
	color: #333 !important;
	border: 2px solid #ddd;
}

.drz-pro-hero__cta--secondary:hover {
	border-color: #ec1166;
	color: #ec1166 !important;
}

/* Liens texte (site, articles) */
.drz-pro-hero__links {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}

.drz-pro-hero__link {
	font-size: 0.82em;
	color: #888;
	text-decoration: none;
}

.drz-pro-hero__link:hover {
	color: #ec1166;
}

.drz-pro-hero__link--linkedin {
	color: #0a66c2;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.drz-pro-hero__link--linkedin:hover {
	color: #004182;
}

.drz-pro-hero__link-icon {
	flex-shrink: 0;
}

/* Variante sponsor — bordure dorée */
.drz-pro-hero--sponsor {
	border-color: #d4c9a8;
}

/* ─────────────────────────────────────────────
   PRÉSENTATION
   ───────────────────────────────────────────── */

.drz-pro-about {
	margin-bottom: 28px;
}

.drz-pro-about__heading,
.drz-pro-domains__heading {
	font-size: 0.78em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #bbb;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.drz-pro-about__text {
	font-size: 1.05rem;
	line-height: 1.65;
	color: #333;
}

.drz-pro-about__text p {
	margin-bottom: 0.75em;
}

.drz-pro-about__text p:last-child {
	margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   DOMAINES D'INTERVENTION
   ───────────────────────────────────────────── */

.drz-pro-domains {
	margin-bottom: 28px;
}

.drz-pro-domains__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.drz-pro-domains__tag {
	display: inline-block;
	font-size: 0.85em;
	padding: 6px 14px;
	background: #f5f5f5;
	color: #444;
	border: 1px solid #e8e8e8;
	border-radius: 3px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.drz-pro-domains__tag:hover {
	background: #ec1166;
	color: #fff;
	border-color: #ec1166;
}

/* Lien retour annuaire */
.drz-single-pro__back {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #eee;
}

.drz-single-pro__back-link {
	font-size: 0.82em;
	color: #aaa;
	text-decoration: none;
}

.drz-single-pro__back-link:hover {
	color: #ec1166;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 639px) {
	.drz-pro-hero__layout {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 24px 20px 0;
	}

	.drz-pro-hero__cats {
		justify-content: center;
	}

	.drz-pro-hero__location {
		justify-content: center;
	}

	.drz-pro-hero__actions {
		padding: 16px 20px 20px;
		justify-content: center;
	}

	.drz-pro-hero__cta--primary,
	.drz-pro-hero__cta--secondary {
		flex: 1 1 100%;
		justify-content: center;
	}

	.drz-pro-hero__links {
		margin-left: 0;
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 639px) {
	.drz-card--featured__layout {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.drz-card--featured__content .drz-card__actions {
		justify-content: center;
	}

	.drz-card__body {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.drz-card__actions {
		justify-content: center;
	}

	.drz-article-cta {
		padding: 20px 15px;
	}

	.drz-directory-header .entry-title {
		font-size: 1.8em;
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	.drz-card--featured__photo img {
		width: 100px;
		height: 100px;
	}
}

/* ============================================
   ANNUAIRE CNB — AVOCATS
   /avocats/, /avocats/departement/XX/,
   /avocats/specialite/slug/, etc.
   ============================================ */

/* ─── En-tête ─── */

.drz-annuaire-avocats {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 60px;
}

.drz-annuaire-header {
	padding: 40px 0 24px;
	border-bottom: 1px solid #eee;
	margin-bottom: 28px;
}

.drz-annuaire-titre {
	font-size: 2em;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.2;
	color: #1a1a1a;
}

.drz-annuaire-count {
	font-size: 0.9em;
	color: #595959;
	margin: 0 0 6px;
}

.drz-annuaire-source {
	font-size: 0.82em;
	color: #767676;
	margin: 0;
}

/* ─── Filtres actifs (tags ✕) ─── */

.drz-filtres-actifs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.drz-filtre-tag {
	display: inline-block;
	font-size: 0.82em;
	font-weight: 600;
	padding: 5px 12px;
	background: #c4094f;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	transition: background 0.15s;
}

.drz-filtre-tag:hover {
	background: #9a0740;
	color: #fff;
}

/* ─── Layout principal ─── */

.drz-annuaire-layout {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* ─── Sidebar filtres ─── */

.drz-annuaire-sidebar {
	flex: 0 0 260px;
	min-width: 0;
	position: sticky;
	top: 80px;
}

.drz-filtre-bloc {
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid #f0f0f0;
}

.drz-filtre-bloc:last-child {
	border-bottom: none;
}

.drz-filtre-titre {
	font-size: 0.78em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #767676;
	margin: 0 0 12px;
}

.drz-filtre-liste {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drz-filtre-dept {
	max-height: 380px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #ddd #f8f8f8;
}

.drz-filtre-dept::-webkit-scrollbar {
	width: 5px;
}

.drz-filtre-dept::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 3px;
}

.drz-filtre-liste li {
	margin: 0;
}

.drz-filtre-liste a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
	font-size: 0.88em;
	color: #555;
	text-decoration: none;
	border-bottom: 1px solid #f8f8f8;
	transition: color 0.12s;
	gap: 8px;
}

.drz-filtre-liste a:hover {
	color: #c4094f;
}

.drz-filtre-liste a.drz-filtre-actif {
	color: #c4094f;
	font-weight: 700;
}

.drz-filtre-count {
	font-size: 0.85em;
	color: #767676;
	white-space: nowrap;
	flex-shrink: 0;
}

.drz-filtre-liste a.drz-filtre-actif .drz-filtre-count {
	color: #c4094f;
}

/* ─── Section résultats ─── */

.drz-annuaire-resultats {
	flex: 1;
	min-width: 0;
}

.drz-annuaire-vide {
	text-align: center;
	padding: 60px 20px;
	color: #aaa;
	font-size: 1.05em;
}

/* ─── Grille des cards avocats ─── */

.drz-avocats-grille {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

/* ─── Card avocat ─── */

.drz-avocat-card {
	background: #fff;
	border: 1px solid #eee;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: box-shadow 0.18s, border-color 0.18s;
}

.drz-avocat-card:hover {
	border-color: #ddd;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.drz-avocat-identite {
	margin-bottom: 4px;
}

.drz-avocat-nom {
	font-size: 1em;
	font-weight: 700;
	margin: 0 0 2px;
	color: #1a1a1a;
	line-height: 1.3;
}

.drz-avocat-barreau {
	font-size: 0.8em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #c4094f;
}

.drz-avocat-cabinet {
	font-size: 0.88em;
	color: #555;
	margin: 0;
	font-style: italic;
}

.drz-avocat-adresse {
	font-size: 0.85em;
	color: #595959;
	font-style: normal;
	margin: 0;
	line-height: 1.5;
}

.drz-avocat-specialites {
	list-style: none;
	padding: 0;
	margin: 4px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.drz-avocat-specialites li {
	margin: 0;
}

.drz-avocat-specialites a {
	display: inline-block;
	font-size: 0.75em;
	padding: 3px 9px;
	background: #f5f5f5;
	color: #555;
	text-decoration: none;
	border: 1px solid #e8e8e8;
	border-radius: 2px;
	transition: background 0.12s, color 0.12s;
}

.drz-avocat-specialites a:hover {
	background: #ec1166;
	color: #fff;
	border-color: #ec1166;
}

.drz-avocat-langues,
.drz-avocat-serment {
	font-size: 0.82em;
	color: #595959;
	margin: 0;
}

.drz-label {
	font-weight: 600;
	color: #666;
}

.drz-avocat-source {
	font-size: 0.75em;
	color: #767676;
	margin: auto 0 0;
	padding-top: 10px;
	border-top: 1px solid #f5f5f5;
}

/* ─── Pagination CNB ─── */

.drz-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 24px 0;
	flex-wrap: wrap;
}

.drz-page-prev,
.drz-page-next {
	font-size: 0.9em;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	padding: 9px 18px;
	border: 1px solid #ddd;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.drz-page-prev:hover,
.drz-page-next:hover {
	background: #ec1166;
	border-color: #ec1166;
	color: #fff;
}

.drz-page-info {
	font-size: 0.85em;
	color: #aaa;
}

/* ─── Responsive CNB ─── */

@media (max-width: 1100px) {
	.drz-avocats-grille {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.drz-annuaire-layout {
		flex-direction: column;
	}

	.drz-annuaire-sidebar {
		flex: none;
		width: 100%;
		position: static;
	}

	.drz-filtre-dept {
		max-height: 220px;
	}

	.drz-annuaire-titre {
		font-size: 1.6em;
	}
}

@media (max-width: 600px) {
	.drz-avocats-grille {
		grid-template-columns: 1fr;
	}

	.drz-annuaire-avocats {
		padding: 0 12px 40px;
	}

	.drz-pagination {
		gap: 10px;
	}
}

/* ═══════════════════════════════════════════════
   Fil d'Ariane annuaire CNB
   ═══════════════════════════════════════════════ */

.drz-annuaire-breadcrumb {
	font-size: 0.85em;
	color: #4a4a4a;
	padding: 12px 0 0;
	margin-bottom: -8px;
}

.drz-annuaire-breadcrumb a {
	color: #333;
	text-decoration: none;
}

.drz-annuaire-breadcrumb a:hover {
	color: #c4094f;
	text-decoration: underline;
}

.drz-annuaire-breadcrumb .drz-breadcrumb-sep {
	margin: 0 4px;
	color: #767676;
}

/* ═══════════════════════════════════════════════
   Bloc avocats en bas de catégorie
   ═══════════════════════════════════════════════ */

.drz-category-avocats {
	margin: 40px 0 24px;
	padding: 28px 24px;
	background: #f8f9fa;
	border: 1px solid #e2e4e8;
	border-radius: 6px;
}

.drz-category-avocats-titre {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #1a1a2e;
}

.drz-category-avocats-intro {
	font-size: 14px;
	color: #555;
	margin: 0 0 20px;
	line-height: 1.5;
}

.drz-category-avocats-grille {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.drz-category-avocat-mini {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px;
	background: #fff;
	border: 1px solid #e2e4e8;
	border-radius: 4px;
}

.drz-category-avocat-nom {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
}

.drz-category-avocat-barreau,
.drz-category-avocat-ville {
	font-size: 12px;
	color: #777;
}

.drz-category-avocats-lien {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #0073aa;
	text-decoration: none;
}

.drz-category-avocats-lien:hover {
	text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   Widget footer annuaire
   ═══════════════════════════════════════════════ */

.drz-footer-annuaire {
	list-style: none;
	margin: 0;
	padding: 0;
}

.drz-footer-annuaire li {
	margin-bottom: 6px;
}

.drz-footer-annuaire a {
	font-size: 13px;
	text-decoration: none;
}

.drz-footer-annuaire a:hover {
	text-decoration: underline;
}
