/* Speakers LFM — estilos del shortcode [lfm_speakers] y de la página interna.
   Paleta y medidas tomadas del Figma "LFM 2025 - UI" (nodos 839:2538 y 839:2733).
   La fuente de marca "Supply" la carga el tema del sitio; hay fallbacks mono. */

.lfmsp-section,
.lfmsp-single {
	font-family: "Supply", "Space Mono", ui-monospace, "Courier New", monospace;
	box-sizing: border-box;
}
.lfmsp-section *,
.lfmsp-single * {
	box-sizing: inherit;
}

/* ============ Lista (shortcode) ============ */

.lfmsp-section {
	background: #2f3341;
	border-radius: 23px;
	padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 78px);
	max-width: 1424px;
	margin: 0 auto;
}

.lfmsp-title {
	margin: 0 auto 28px;
	max-width: 1093px;
	text-align: center;
	color: #ffffff;
	font-size: clamp(24px, 3.2vw, 43.7px);
	font-weight: 200;
	line-height: 1.25;
	letter-spacing: 0.01em;
}
.lfmsp-title strong {
	font-weight: 500;
}

.lfmsp-searchwrap {
	display: flex;
	justify-content: center;
	margin: 0 0 44px;
}
.lfmsp-search {
	width: min(430px, 100%);
	background: #383d4c;
	border: 1px solid #4a5064;
	border-radius: 14px;
	color: #eeeced;
	font: inherit;
	font-size: 15px;
	padding: 13px 20px;
	outline: none;
	transition: border-color 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}
.lfmsp-search::placeholder {
	color: #8d94a8;
}
.lfmsp-search:focus {
	border-color: #b4a0c1;
}

.lfmsp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(236px, 1fr));
	gap: 43px 45px;
}

.lfmsp-card {
	display: flex;
	flex-direction: column;
	gap: 13px;
	background: #383d4c;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lfmsp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
}
.lfmsp-card[hidden] {
	display: none;
}

.lfmsp-photo {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #d9d9d9;
	overflow: hidden;
}
.lfmsp-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
}

.lfmsp-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 58px;
	padding: 0 16px;
	gap: 3px;
}
.lfmsp-name {
	color: #eeeced;
	font-size: 16px;
	font-weight: 200;
	line-height: 1.05;
}
.lfmsp-line {
	color: #eeeced;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: 0.02em;
}

.lfmsp-bar {
	display: block;
	height: 8px;
	width: 100%;
	background: #b4a0c1;
	margin-top: auto;
}

.lfmsp-empty {
	margin: 36px 0 0;
	text-align: center;
	color: #b4a0c1;
	font-size: 15px;
}

/* ============ Página interna ============ */

.lfmsp-single {
	background: #e1dcde;
	/* El navbar del sitio es fijo y flota sobre el contenido: se deja espacio arriba. */
	padding: 180px clamp(16px, 3vw, 40px) clamp(28px, 5vw, 64px);
}
@media (max-width: 900px) {
	.lfmsp-single {
		padding-top: 130px;
	}
}

.lfmsp-single-wrap {
	max-width: 1424px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 283px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

/* Tarjeta lateral (reutiliza .lfmsp-card sin hover-link) */
.lfmsp-side {
	display: flex;
	flex-direction: column;
	gap: 13px;
	background: #383d4c;
	border-radius: 18px;
	overflow: hidden;
	padding-bottom: 20px;
}
.lfmsp-side .lfmsp-bar {
	margin-top: 0;
}

.lfmsp-socials {
	display: flex;
	justify-content: center;
	gap: 13px;
	padding-top: 4px;
}
.lfmsp-socials a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	opacity: 0.95;
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.lfmsp-socials a:hover {
	opacity: 1;
	transform: translateY(-2px);
}
.lfmsp-socials svg {
	width: 100%;
	height: 100%;
}

/* Panel principal */
.lfmsp-main {
	background: #2f3341;
	border-radius: 31px;
	padding: clamp(16px, 2vw, 22px);
	display: flex;
	flex-direction: column;
	gap: 47px;
}

.lfmsp-bio {
	background: #222531;
	border-radius: 23px;
	padding: clamp(26px, 4.5vw, 71px);
	color: #eeeced;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
}
.lfmsp-bio p {
	margin: 0 0 1em;
	color: #eeeced;
	font: inherit;
}
.lfmsp-bio p:last-child {
	margin-bottom: 0;
}

.lfmsp-conf {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-bottom: 18px;
}
.lfmsp-conf-title {
	margin: 0;
	text-align: center;
	color: #eeeced;
	font-size: clamp(20px, 2.4vw, 31.5px);
	font-weight: 200;
	letter-spacing: 0.06em;
}
.lfmsp-conf-title strong {
	font-weight: 500;
}

.lfmsp-conf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 13px;
}
.lfmsp-conf-card {
	background: #eeeced;
	border-radius: 23px;
	padding: 39px 42px;
	display: flex;
	flex-direction: column;
	gap: 27px;
}
.lfmsp-conf-card svg {
	width: 48px;
	height: 48px;
	display: block;
}
.lfmsp-conf-desc {
	margin: 0;
	color: #2f3341;
	font-size: 14px;
	font-weight: 200;
	line-height: 1.45;
}
.lfmsp-conf-when {
	margin: 0;
	color: #2f3341;
	font-size: 22.9px;
	font-weight: 500;
}

@media (max-width: 900px) {
	.lfmsp-single-wrap {
		grid-template-columns: 1fr;
	}
	.lfmsp-side {
		max-width: 320px;
		margin: 0 auto;
		width: 100%;
	}
}
