/* Leadership List Shortcode */

.ll-wrap {
	width: 100%;
	box-sizing: border-box;
}

/* ── Filters ─────────────────────────────────────────────────── */
.ll-filters {
	margin-bottom: 40px;
}

.ll-filter-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	gap: 16px;
	align-items: end;
}

.ll-field {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
}

.ll-field label {
	font-size: 12px;
	font-weight: 500;
	color: #071739;
	margin: 0 0 6px;
	padding: 0;
	display: block;
}

.ll-select-wrap {
	position: relative;
}

.ll-select-wrap::after {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #071739;
	border-bottom: 2px solid #071739;
	transform: translateY(-75%) rotate(45deg);
	pointer-events: none;
}

.ll-select {
	width: 100%;
	appearance: none !important;
	-webkit-appearance: none !important;
	height: 56px;
	padding: 0 32px 0 12px !important;
	border: 1px solid #d1d5db !important;
	border-radius: 10px !important;
	background: #fff !important;
	font-family: inherit;
	font-size: 14px !important;
	color: #071739 !important;
	cursor: pointer;
	box-shadow: none !important;
	line-height: 1.2;
	margin: 0;
}

.ll-select:focus {
	outline: 2px solid #d99a2b !important;
	outline-offset: 1px;
}

.ll-keyword {
	width: 100%;
	height: 56px;
	padding: 0 12px !important;
	border: 1px solid #d1d5db !important;
	border-radius: 10px !important;
	background: #fff !important;
	font-family: inherit;
	font-size: 14px !important;
	color: #071739 !important;
	box-shadow: none !important;
	line-height: 1.2;
	margin: 0;
}

.ll-keyword:focus {
	outline: 2px solid #d99a2b !important;
	outline-offset: 1px;
}

.ll-keyword::placeholder {
	color: #9ca3af;
}

.ll-search-btn,
button.ll-search-btn {
	display: inline-block;
	height: 56px;
	padding: 0 28px !important;
	background: #195757 !important;
	background-color: #195757 !important;
	background-image: none !important;
	color: #fff !important;
	border: none !important;
	border-radius: 100px !important;
	font-family: inherit;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: none !important;
	transition: background-color 0.15s ease;
	line-height: 56px;
	white-space: nowrap;
}

.ll-search-btn:hover,
.ll-search-btn:focus {
	background: #124444 !important;
	background-color: #124444 !important;
	color: #fff !important;
}


/* ── Grid ────────────────────────────────────────────────────── */
.ll-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}


/* ── Card ────────────────────────────────────────────────────── */
.ll-card {
	background: #F6F7F9;
	display: flex;
	flex-direction: column;
	padding: 20px 20px 0;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.ll-card:hover {
	/*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);*/
	transform: translateY(-4px);
    background: #195757;
}

.ll-card__image {
	display: block;
	width: 100%;
	height: 310px;
	overflow: hidden;
	background: #e8e5d2;
	flex-shrink: 0;
	border-radius: 5px;
}

.ll-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.3s ease;
}

.ll-card:hover .ll-card__image img {
	transform: scale(1.03);
}

.ll-card--specialty {
	background: #195757;
}

.ll-card--specialty .ll-card__name,
.ll-card--specialty h3.ll-card__name,
.ll-card--specialty .ll-card__name a,
.ll-card--specialty h3.ll-card__name a {
	color: #fff !important;
}

.ll-card--specialty .ll-card__position {
	color: #fff !important;
}

.ll-card--specialty .ll-card__bio {
	color: #fff !important;
}

.ll-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: #e8e5d2;
}

.ll-card__body {
	padding: 16px 16px 30px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ll-card__name,
h3.ll-card__name {
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	color: #071739 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ll-card__name a,
h3.ll-card__name a {
	color: #071739 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	font-size:22px;
}

.ll-card:hover .ll-card__name a,
.ll-card:hover h3.ll-card__name a {
	text-decoration: underline !important;
	color:#fff !important;
}

.ll-card__position {
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #071739 !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.4;
}
.ll-card:hover .ll-card__position  { 	color: #fff !important; }

.ll-card__bio {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	color: #071739 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	padding-bottom: 4px !important;
	padding-top: 4px !important;
	border-bottom: 2px solid #DFA840 !important;
	margin-top: 2px;
	width: fit-content;
}

.ll-card__bio:hover,
.ll-card__bio:focus {
	/*color: #195757 !important;*/
	text-decoration: none !important;
}

.ll-card__bio svg {
	width: 8px;
	height: 12px;
	flex-shrink: 0;
}
.ll-card:hover .ll-card__bio:hover,
.ll-card:hover .ll-card__bio  { color: #fff !important; }


/* ── Skeleton loading ────────────────────────────────────────── */
.ll-skeleton {
	display: flex;
	flex-direction: column;
}

.ll-skeleton__image {
	width: 100%;
	height: 310px;
	background: #e5e7eb;
	position: relative;
	overflow: hidden;
}

.ll-skeleton__body {
	padding: 16px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ll-skeleton__line {
	height: 18px;
	border-radius: 3px;
	background: #e5e7eb;
	position: relative;
	overflow: hidden;
}

.ll-skeleton__line--name  { width: 70%; }
.ll-skeleton__line--pos   { width: 55%; height: 14px; }
.ll-skeleton__line--bio   { width: 40%; height: 14px; }

.ll-skeleton__image::after,
.ll-skeleton__line::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.65) 50%, transparent 100%);
	background-size: 200% 100%;
	animation: ll-shimmer 1.4s ease-in-out infinite;
}

@keyframes ll-shimmer {
	0%   { background-position: -200% 0; }
	100% { background-position:  200% 0; }
}


/* ── Load More ───────────────────────────────────────────────── */
.ll-load-more-wrap {
	display: flex;
	justify-content: center;
	margin: 48px 0 0;
}

.ll-load-more,
button.ll-load-more {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: 52px;
	padding: 0 40px !important;
	background: transparent !important;
	color: #071739 !important;
	border: 2px solid #071739 !important;
	border-radius: 100px !important;
	font-family: inherit;
	font-weight: 700 !important;
	font-size: 13px !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: none !important;
	transition: background-color 0.15s ease, color 0.15s ease;
	line-height: 1;
}

.ll-load-more:hover,
button.ll-load-more:hover {
	background: #071739 !important;
	color: #fff !important;
}

.ll-load-more[hidden],
button.ll-load-more[hidden] {
	display: none !important;
}

.ll-load-more.is-loading {
	opacity: 0.7;
	cursor: wait;
	pointer-events: none;
}


/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
	.ll-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.ll-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ll-filter-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ll-field--submit {
		grid-column: 1 / -1;
	}
	.ll-search-btn,
	button.ll-search-btn {
		width: 100%;
	}
}

@media (max-width: 560px) {
	.ll-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.ll-filter-row {
		grid-template-columns: 1fr;
	}
}
