/* Agenda LFM — estilos del shortcode [lfm_agenda].
   Referencia visual del equipo: card blanco, días con subtítulo y barra
   morada, filas hora · título centrado · avatares. Misma familia tipográfica
   de speakers ("Supply" del tema, fallbacks mono). */

.lfmag-section {
	font-family: "Supply", "Space Mono", ui-monospace, "Courier New", monospace;
	box-sizing: border-box;
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	gap: 34px;
}
.lfmag-section * {
	box-sizing: inherit;
}

.lfmag-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.lfmag-tab {
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #6f6a80;
	background: #ffffff;
	border: 1px solid #e3e0ec;
	border-radius: 12px;
	padding: 12px 26px;
	cursor: pointer;
	transition: color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
.lfmag-tab:hover {
	border-color: #c9c2dd;
}
.lfmag-tab.is-active {
	color: #1f1b2d;
	border-color: #a78bda;
	box-shadow: inset 0 -3px 0 #a78bda, 0 6px 18px rgba(31, 27, 45, 0.08);
}

.lfmag-day {
	background: #ffffff;
	border-radius: 18px;
	padding: clamp(26px, 4vw, 44px) clamp(20px, 4vw, 48px);
	box-shadow: 0 10px 34px rgba(31, 27, 45, 0.08);
}

.lfmag-day-title {
	margin: 0 0 4px;
	color: #1f1b2d;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.lfmag-day-sub {
	margin: 0 0 6px;
	color: #6f6a80;
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.lfmag-day-bar {
	display: block;
	width: 132px;
	height: 3px;
	border-radius: 2px;
	background: #a78bda;
	margin-bottom: 26px;
}

.lfmag-rows {
	display: grid;
}
.lfmag-row {
	display: grid;
	grid-template-columns: 150px 1fr 132px;
	align-items: center;
	gap: 18px;
	padding: 20px 4px;
	border-bottom: 1px solid #eceaf2;
}
.lfmag-row:last-child {
	border-bottom: 0;
}

.lfmag-time {
	color: #6f6a80;
	font-size: 12px;
	white-space: nowrap;
}
.lfmag-info {
	display: grid;
	justify-items: center;
	gap: 4px;
	text-align: center;
}
.lfmag-name {
	color: #2a2536;
	font-size: 13px;
	line-height: 1.55;
	max-width: 560px;
}
.lfmag-location {
	color: #9a94ac;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lfmag-speakers {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	flex-wrap: wrap;
}
.lfmag-avatar {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	overflow: hidden;
	background: #e6e3ee;
	display: block;
	transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.lfmag-avatar:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(31, 27, 45, 0.22);
}
.lfmag-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 640px) {
	.lfmag-row {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 8px;
		padding: 18px 0;
	}
	.lfmag-speakers {
		justify-content: center;
	}
}
