/* =========================================================================
   Lawyer Directory Pro — Design System
   Flat aesthetic, whitespace + alternating bands, no boxed/bordered cards
   except the elevated hero consultation form. Gold CTAs, green trust,
   pastel rotating practice-area tags, pastel icon circles.
   ========================================================================= */

:root {
	--ldp-navy: #0f1f3d;
	--ldp-navy-light: #16294d;
	--ldp-gold: #1A52FF;
	--ldp-gold-dark: #003FE6;
	--ldp-green: #1f8a4c;
	--ldp-green-bg: #e6f5ec;
	--ldp-text: #1f2430;
	--ldp-text-muted: #5a6072;
	--ldp-border: #e5e7ee;
	--ldp-bg-white: #ffffff;
	--ldp-bg-alt: #f4f5f8;
	--ldp-bg-blue: #eef3fb;

	--ldp-pastel-0-bg: #fdf1d8; --ldp-pastel-0-fg: #8a5a12;
	--ldp-pastel-1-bg: #e4f3ec; --ldp-pastel-1-fg: #1f7a4c;
	--ldp-pastel-2-bg: #e8edfb; --ldp-pastel-2-fg: #3a4fb0;
	--ldp-pastel-3-bg: #fbe9ef; --ldp-pastel-3-fg: #a63d63;

	--ldp-radius: 10px;
	--ldp-font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ldp-sticky-height: 64px;
}

.ldp-page, .ldp-page * { box-sizing: border-box; }
.ldp-page {
	font-family: var(--ldp-font);
	color: var(--ldp-text);
	line-height: 1.55;
}
.ldp-page img { max-width: 100%; height: auto; display: block; }

.ldp-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.ldp-band { padding: 28px 0; }
.ldp-band--white { background: var(--ldp-bg-white); }
.ldp-band--light-gray { background: var(--ldp-bg-alt); }
.ldp-band--light-blue { background: var(--ldp-bg-blue); }

/* -------------------------------------------------------------------------
   Typography — exactly one H1, sequential H2 -> H3 -> H4
   ---------------------------------------------------------------------- */
.ldp-h1 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 8px;
	color: var(--ldp-navy);
}
.ldp-section-heading {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--ldp-navy);
}
.ldp-feature h3 { font-size: 1.05rem; font-weight: 700; margin: 8px 0 4px; }
.ldp-hero-form-card h2 { font-size: 1.1rem; font-weight: 700; margin: 0 0 12px; }

/* -------------------------------------------------------------------------
   Breadcrumbs — first visible, borderless
   ---------------------------------------------------------------------- */
.ldp-breadcrumbs {
	font-size: 0.85rem;
	color: var(--ldp-text-muted);
	padding: 12px 0 4px;
	margin-top:27px;
}
.ldp-breadcrumbs a { color: var(--ldp-text-muted); text-decoration: none; }
.ldp-breadcrumbs a:hover { color: var(--ldp-gold-dark); text-decoration: underline; }
.ldp-breadcrumb-sep { margin: 0 6px; color: #b7bccb; }

/* -------------------------------------------------------------------------
   Hero — 2-col desktop, stacked mobile
   ---------------------------------------------------------------------- */
.ldp-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 8px 0 16px;
	align-items: start;
}
@media (min-width: 900px) {
	.ldp-hero { grid-template-columns: 1.5fr 1fr; gap: 28px; }
}
.ldp-hero__subtitle { color: var(--ldp-text-muted); font-size: 1.02rem; max-width: 60ch; margin: 0; }

.ldp-hero-form-card {
	background: var(--ldp-bg-white);
	border-radius: var(--ldp-radius);
	padding: 20px;
	box-shadow: 0 12px 32px rgba(15, 31, 61, 0.30); /* only elevated container on any template */
}
.ldp-hero-form-card input,
.ldp-hero-form-card textarea,
.ldp-consultation-form input,
.ldp-consultation-form textarea {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 10px;
	border: 1px solid var(--ldp-border);
	border-radius: 8px;
	font-family: var(--ldp-font);
	font-size: 0.95rem;
}

.ldp-lawyer-hero-top { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.ldp-lawyer-hero__location { color: var(--ldp-text-muted); margin: 2px 0 0; }
.ldp-lawyer-hero-stats { display: flex; gap: 24px; margin: 12px 0; }
.ldp-hero-stat { display: flex; flex-direction: column; }
.ldp-hero-stat strong { font-size: 1.2rem; color: var(--ldp-navy); }
.ldp-hero-stat span { font-size: 0.75rem; text-transform: uppercase; color: var(--ldp-text-muted); letter-spacing: .03em; }
.ldp-trust-line { color: var(--ldp-text-muted); font-size: 0.92rem; margin: 6px 0; }
.ldp-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.ldp-trust-badge--green {
	background: var(--ldp-green-bg);
	color: var(--ldp-green);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
}
.ldp-badge-verified-inline {
	color: var(--ldp-green);
	font-size: 0.9rem;
	font-weight: 700;
	margin-left: 8px;
	vertical-align: middle;
}

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */
.ldp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.ldp-btn--block { width: 100%; }
.ldp-btn--gold { background: var(--ldp-gold); color: #FFFFFF; }
.ldp-btn--gold:hover { background: var(--ldp-gold-dark); transform: translateY(-1px); color: #FFFFFF; }
.ldp-btn--navy { background: var(--ldp-navy); color: #fff; }
.ldp-btn--navy:hover { background: var(--ldp-navy-light); transform: translateY(-1px); color: #fff; }
.ldp-btn--outline { background: transparent; color: var(--ldp-navy); border: 1px solid var(--ldp-border); }
.ldp-btn--outline:hover { border-color: var(--ldp-navy); }

/* -------------------------------------------------------------------------
   Mobile sticky consultation bar — hidden on desktop, reserved height
   ---------------------------------------------------------------------- */
.ldp-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background: var(--ldp-bg-white);
	border-top: 1px solid var(--ldp-border);
	padding: 10px 16px;
	min-height: var(--ldp-sticky-height);
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 -4px 16px rgba(15, 31, 61, 0.06);
}
@media (min-width: 900px) {
	.ldp-sticky-bar { display: none; }
}
.ldp-sticky-bar--lawyer { justify-content: space-between; }
.ldp-sticky-bar__lawyer { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ldp-sticky-bar__info { display: flex; flex-direction: column; min-width: 0; }
.ldp-sticky-bar__info strong { font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.ldp-sticky-bar__rating { font-size: 0.78rem; color: var(--ldp-gold-dark); font-weight: 700; }
.ldp-sticky-bar--lawyer .ldp-btn { padding: 10px 18px; flex-shrink: 0; }
.ldp-avatar--sm { width: 36px; height: 36px; font-size: 0.85rem; flex-shrink: 0; }

/* -------------------------------------------------------------------------
   Search + Filter bar
   ---------------------------------------------------------------------- */
.ldp-search-bar {
	display: flex;
	gap: 10px;
	margin: 4px 0 20px;
	flex-wrap: wrap;
}
.ldp-search-bar__input {
	flex: 1 1 260px;
	padding: 13px 16px;
	border: 1px solid var(--ldp-border);
	border-radius: 8px;
	font-family: var(--ldp-font);
	font-size: 0.95rem;
}

.ldp-directory-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 900px) {
	.ldp-directory-layout { grid-template-columns: 260px 1fr; }
}

.ldp-filter-sidebar__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ldp-filter-sidebar__title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ldp-text-muted); }
.ldp-clear-all { background: none; border: none; color: var(--ldp-gold-dark); font-size: 0.82rem; cursor: pointer; font-weight: 600; }
.ldp-active-chips { margin-bottom: 14px; }
.ldp-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--ldp-bg-alt);
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
}
.ldp-chip__remove { background: none; border: none; cursor: pointer; font-size: 0.9rem; color: var(--ldp-text-muted); }

.ldp-filter-group { margin-bottom: 16px; }
.ldp-filter-group label { display: block; font-size: 0.82rem; color: var(--ldp-text-muted); margin-bottom: 6px; }
.ldp-filter-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--ldp-border);
	border-radius: 8px;
	font-family: var(--ldp-font);
	background: var(--ldp-bg-white);
}

/* -------------------------------------------------------------------------
   Results count + grid
   ---------------------------------------------------------------------- */
.ldp-results-count { color: var(--ldp-text-muted); font-size: 0.9rem; margin: 0 0 12px; }
.ldp-lawyer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 640px) { .ldp-lawyer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ldp-lawyer-grid { grid-template-columns: repeat(2, 1fr); } }

.ldp-lawyer-card {
	padding: 14px 0;
	border-bottom: 1px solid var(--ldp-border); /* divider, not a boxed card */
}
.ldp-lawyer-card__top { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.ldp-avatar {
	width: 56px; height: 56px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--ldp-bg-alt);
}
.ldp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ldp-avatar--initials {
	display: flex; align-items: center; justify-content: center;
	background: var(--ldp-navy);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}
.ldp-avatar--lg { width: 96px; height: 96px; font-size: 1.6rem; }

.ldp-lawyer-card__name { font-size: 1.05rem; margin: 0; }
.ldp-lawyer-card__name a { color: var(--ldp-navy); text-decoration: none; }
.ldp-lawyer-card__name a:hover { text-decoration: underline; }
.ldp-lawyer-card__meta { color: var(--ldp-text-muted); font-size: 0.85rem; margin: 2px 0 0; }
.ldp-badge-verified { color: var(--ldp-green); font-size: 0.85rem; margin-left: 4px; }

.ldp-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; }
.ldp-tag {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}
.ldp-tag--pastel-0 { background: var(--ldp-pastel-0-bg); color: var(--ldp-pastel-0-fg); }
.ldp-tag--pastel-1 { background: var(--ldp-pastel-1-bg); color: var(--ldp-pastel-1-fg); }
.ldp-tag--pastel-2 { background: var(--ldp-pastel-2-bg); color: var(--ldp-pastel-2-fg); }
.ldp-tag--pastel-3 { background: var(--ldp-pastel-3-bg); color: var(--ldp-pastel-3-fg); }

.ldp-tag-row--pill { gap: 10px; }
.ldp-pill {
	display: inline-block;
	padding: 9px 16px;
	border: 1px solid var(--ldp-border);
	border-radius: 999px;
	font-size: 0.85rem;
	color: var(--ldp-navy);
	text-decoration: none;
	transition: border-color .15s ease, background-color .15s ease;
}
.ldp-pill:hover { border-color: var(--ldp-gold); background: var(--ldp-pastel-0-bg); }

.ldp-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ldp-stars { color: var(--ldp-gold); letter-spacing: 1px; font-size: 0.9rem; }
.ldp-star--empty { color: #dfe1e8; }
.ldp-rating-num { font-size: 0.85rem; color: var(--ldp-text-muted); }

.ldp-empty-state { padding: 60px 20px; text-align: center; grid-column: 1 / -1; }
.ldp-empty-state__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.ldp-empty-state__text { color: var(--ldp-text-muted); }

.ldp-pagination { text-align: center; margin-top: 24px; }

/* -------------------------------------------------------------------------
   Stats bar
   ---------------------------------------------------------------------- */
.ldp-stats-bar {
	background: var(--ldp-bg-alt);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding: 20px;
	max-width: 1180px;
	margin: 0 auto;
	text-align: center;
}
@media (min-width: 700px) { .ldp-stats-bar { grid-template-columns: repeat(4, 1fr); } }
.ldp-stat__value { display: block; font-size: 1.6rem; font-weight: 800; color: var(--ldp-navy); }
.ldp-stat__label { display: block; font-size: 0.82rem; color: var(--ldp-text-muted); margin-top: 2px; }

/* -------------------------------------------------------------------------
   Feature grid / process steps / icon circles (pastel-filled, thin-line)
   ---------------------------------------------------------------------- */
.ldp-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	font-size: 1.1rem;
}
.ldp-icon-circle--pastel-1 { background: var(--ldp-pastel-1-bg); }
.ldp-icon-circle--pastel-2 { background: var(--ldp-pastel-2-bg); }
.ldp-icon-circle--pastel-3 { background: var(--ldp-pastel-0-bg); }
.ldp-icon-circle--pastel-4 { background: var(--ldp-pastel-3-bg); }

.ldp-feature-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .ldp-feature-grid { grid-template-columns: repeat(2, 1fr); } }
.ldp-feature p { color: var(--ldp-text-muted); font-size: 0.92rem; margin: 0; }

.ldp-process-steps {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	justify-content: space-between;
}
.ldp-process-step { text-align: center; flex: 1 1 100px; }
.ldp-process-step p { font-size: 0.85rem; margin: 8px 0 0; }
.ldp-process-arrow { color: var(--ldp-border); font-size: 1.4rem; }
@media (max-width: 640px) { .ldp-process-arrow { display: none; } }

.ldp-awards-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ldp-award { background: var(--ldp-pastel-0-bg); color: var(--ldp-pastel-0-fg); padding: 8px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }

/* -------------------------------------------------------------------------
   Reviews
   ---------------------------------------------------------------------- */
.ldp-reviews-summary { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 18px; }
.ldp-reviews-donut { position: relative; width: 96px; height: 96px; }
.ldp-reviews-donut__num {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 1.4rem; color: var(--ldp-navy);
}
.ldp-reviews-breakdown { flex: 1 1 260px; min-width: 220px; }
.ldp-review-bar-row { display: grid; grid-template-columns: 30px 1fr 40px; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--ldp-text-muted); margin-bottom: 6px; }
.ldp-review-bar-track { background: var(--ldp-bg-alt); border-radius: 999px; height: 6px; overflow: hidden; }
.ldp-review-bar-fill { display: block; height: 100%; background: var(--ldp-gold); }

.ldp-testimonial-carousel { position: relative; }
.ldp-testimonial-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.ldp-testimonial-card { scroll-snap-align: start; flex: 0 0 100%; }
@media (min-width: 700px) { .ldp-testimonial-card { flex: 0 0 calc(50% - 10px); } }
.ldp-testimonial-text { font-size: 0.95rem; margin: 10px 0 8px; }
.ldp-testimonial-author { color: var(--ldp-text-muted); font-size: 0.85rem; }
.ldp-carousel-arrow {
	display: none;
	position: absolute; top: 50%; transform: translateY(-50%);
	background: var(--ldp-bg-white); border: 1px solid var(--ldp-border);
	border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1.2rem;
}
@media (min-width: 900px) { .ldp-carousel-arrow { display: block; } }
.ldp-carousel-arrow--prev { left: -18px; }
.ldp-carousel-arrow--next { right: -18px; }

/* -------------------------------------------------------------------------
   FAQ accordion — borderless divider lines
   ---------------------------------------------------------------------- */
.ldp-faq-accordion { border-top: 1px solid var(--ldp-border); }
.ldp-faq-item { border-bottom: 1px solid var(--ldp-border); }
.ldp-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	text-align: left;
	padding: 14px 4px;
	font-weight: 700;
	font-size: 0.98rem;
	cursor: pointer;
	color: var(--ldp-text);
}
.ldp-faq-toggle { position: relative; width: 14px; height: 14px; flex-shrink: 0; margin-left: 12px; }
.ldp-faq-toggle::before, .ldp-faq-toggle::after {
	content: ''; position: absolute; background: var(--ldp-text-muted);
	transition: transform .2s ease;
}
.ldp-faq-toggle::before { top: 6px; left: 0; width: 14px; height: 2px; }
.ldp-faq-toggle::after { top: 0; left: 6px; width: 2px; height: 14px; }
.ldp-faq-item.is-open .ldp-faq-toggle::after { transform: scaleY(0); }
.ldp-faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.ldp-faq-item.is-open .ldp-faq-answer { max-height: 400px; }
.ldp-faq-answer p { margin: 0 4px 14px; color: var(--ldp-text-muted); font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   Related lawyers / back link
   ---------------------------------------------------------------------- */
.ldp-related-lawyers { display: flex; flex-wrap: wrap; gap: 12px; }
.ldp-related-lawyer {
	display: flex; align-items: center; gap: 10px;
	text-decoration: none; color: var(--ldp-text);
	padding: 8px 0;
	flex: 1 1 220px;
}
.ldp-related-lawyer strong { display: block; font-size: 0.92rem; }
.ldp-related-lawyer small { color: var(--ldp-text-muted); }
.ldp-back-link { margin-top: 16px; }
.ldp-back-link a { color: var(--ldp-navy); text-decoration: none; font-weight: 600; }

.ldp-info-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
@media (min-width: 640px) { .ldp-info-grid { grid-template-columns: repeat(2, 1fr); } }
.ldp-info-grid p { margin: 2px 0 0; }
.ldp-info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ldp-text-muted); }
.ldp-specialization { color: var(--ldp-text-muted); font-size: 0.9rem; margin-top: 6px; }

.ldp-section { padding: 20px 0; border-bottom: 1px solid var(--ldp-border); }
.ldp-section:first-child { padding-top: 0; }
.ldp-section:last-child { border-bottom: none; }
.ldp-prose-section p { color: var(--ldp-text-muted); max-width: 75ch; margin: 0; }

/* -------------------------------------------------------------------------
   Closing CTA banner — the only dark, high-contrast section
   ---------------------------------------------------------------------- */
.ldp-cta-banner { background: var(--ldp-navy); color: #fff; padding: 32px 0; margin-top: 10px;}
.ldp-cta-banner__inner {
	max-width: 1180px; margin: 0 auto; padding: 0 20px;
	display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
	text-align: left;
}
@media (min-width: 800px) {
	.ldp-cta-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.ldp-cta-banner h2 { font-size: 1.4rem; font-weight: 800; margin: 0 0 4px; }
.ldp-cta-banner__accent { color: var(--ldp-bg-white); }
.ldp-cta-banner p { color: #c7cede; margin: 0; }
.ldp-cta-banner__btn { flex-shrink: 0; }

/* -------------------------------------------------------------------------
   Live status pills + trust stat bar (after hero title/description on
   Directory, City, and Practice Area templates)
   ---------------------------------------------------------------------- */
.ldp-live-stats { margin: 4px 0 8px;  align-content: center; }
.ldp-live-pills { display: flex; flex-wrap: wrap; justify-content:center; gap: 10px; margin-bottom: 10px; position: relative; z-index: 2; padding: 0 4px; }
.ldp-live-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--ldp-bg-white);
	border: 1px solid var(--ldp-border);
	border-radius: 90px;
	padding: 8px 14px 8px 8px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ldp-text);
	box-shadow: 0 6px 16px rgba(15, 31, 61, 0.06);
}
.ldp-live-pill__avatars { display: flex; }
.ldp-live-pill__avatar {
	width: 22px; height: 22px; border-radius: 50%;
	background: var(--ldp-bg-alt);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 0.7rem;
	margin-left: -8px;
	border: 2px solid var(--ldp-bg-white);
}
.ldp-live-pill__avatar:first-child { margin-left: 0; }
.ldp-live-pill__icon {
	width: 22px; height: 22px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 0.7rem;
}
.ldp-live-pill__icon--green { background: var(--ldp-green-bg); }
.ldp-live-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
/* 1. Shared base styles and the pulse animation */
.ldp-live-dot--green, 
.ldp-live-dot--orange {
  border-radius: 50%;
  animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 currentColor; }
  70% { box-shadow: 0 0 0 6px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* 2. Unique colors (color property feeds into currentColor) */
.ldp-live-dot--green { 
  background: var(--ldp-green, #2ecc71); 
  color: rgba(46, 204, 113, 0.7); 
}

.ldp-live-dot--orange { 
  background: #e08a1e; 
  color: rgba(224, 138, 30, 0.7); 
}

.ldp-trust-stat-bar {
	background: var(--ldp-bg-white);
	border-radius: var(--ldp-radius);
	box-shadow: 0 12px 32px rgba(15, 31, 61, 0.08);
	padding: 28px 20px 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	text-align: center;
}
@media (min-width: 700px) { .ldp-trust-stat-bar { grid-template-columns: repeat(4, 1fr); text-align: left; padding: 28px 32px 20px; } }
.ldp-trust-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--ldp-navy); }
.ldp-trust-stat span { display: block; font-size: 0.82rem; color: var(--ldp-text-muted); margin-top: 2px; }

/* -------------------------------------------------------------------------
   Micro interactions — pure CSS only
   ---------------------------------------------------------------------- */
.ldp-lawyer-card, .ldp-feature, .ldp-award, .ldp-pill, .ldp-related-lawyer {
	transition: opacity .2s ease;
}
.ldp-lawyer-card:hover .ldp-lawyer-card__name a { opacity: .85; }

/* -------------------------------------------------------------------------
   Skeleton loading state (Filter_System AJAX)
   ---------------------------------------------------------------------- */
.ldp-lawyer-grid.is-loading .ldp-lawyer-card {
	opacity: 0.4;
	pointer-events: none;
}
.ldp-skeleton-card {
	height: 160px;
	border-radius: var(--ldp-radius);
	background: linear-gradient(90deg, var(--ldp-bg-alt) 25%, #ececf1 37%, var(--ldp-bg-alt) 63%);
	background-size: 400% 100%;
	animation: ldp-skeleton-loading 1.4s ease infinite;
}
@keyframes ldp-skeleton-loading {
	0% { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}
