/* La Guarida - Fix de Shortcodes (Impreza/US Core) */

/* ---------- Separator / spacer ---------- */
.lg-separator {
	width: 100%;
	display: block;
}
.lg-separator--small { height: 20px; }
.lg-separator--default { height: 40px; }
.lg-separator--large { height: 60px; }
.lg-separator--huge { height: 100px; }

/* ---------- Button ---------- */
.lg-btn-wrap {
	display: flex;
	margin: 10px 0;
}
.lg-btn-wrap--left { justify-content: flex-start; }
.lg-btn-wrap--center { justify-content: center; }
.lg-btn-wrap--right { justify-content: flex-end; }

.lg-btn {
	display: inline-block;
	background-color: #dd3333;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 12px 26px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.lg-btn:hover,
.lg-btn:focus {
	opacity: 0.85;
	color: #ffffff;
	transform: translateY(-1px);
}
.lg-btn--small { padding: 8px 18px; font-size: 13px; }
.lg-btn--medium { padding: 12px 24px; font-size: 14px; }
.lg-btn--large { padding: 16px 34px; font-size: 16px; }

/* ---------- Icon box ---------- */
.lg-iconbox {
	display: block;
	text-align: center;
	padding: 24px 16px;
	color: inherit;
	text-decoration: none;
}
.lg-iconbox--linked:hover {
	text-decoration: none;
	opacity: 0.85;
}
.lg-iconbox-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #f2f2f2;
	margin-bottom: 14px;
	font-size: 26px;
	color: #dd3333;
}
.lg-iconbox-title {
	margin: 0 0 8px;
	font-size: 16px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.lg-iconbox-content {
	font-size: 14px;
	line-height: 1.6;
}

/* ---------- Single image ---------- */
.lg-single-image {
	display: block;
	margin: 10px 0;
}
.lg-single-image--center { text-align: center; }
.lg-single-image--left { text-align: left; }
.lg-single-image--right { text-align: right; }
.lg-single-image__img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}
.lg-single-image__placeholder {
	display: inline-block;
	padding: 40px 20px;
	background: #f5f5f5;
	border: 1px dashed #ccc;
	color: #888;
	font-size: 13px;
	border-radius: 4px;
}

/* ---------- Image slider ---------- */
.lg-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 4px;
}
.lg-slider__track {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.lg-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease;
}
.lg-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
}
.lg-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lg-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.lg-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.6);
	cursor: pointer;
	padding: 0;
}
.lg-slider__dot.is-active {
	background: #ffffff;
}
.lg-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.35);
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
}
.lg-slider__arrow--prev { left: 12px; }
.lg-slider__arrow--next { right: 12px; }

/* ---------- Revolution Slider fallback hero ---------- */
.lg-slider-fallback {
	background: #222 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect width="4" height="4" fill="%23222"/></svg>');
	color: #fff;
	text-align: center;
	padding: 90px 20px;
	border-radius: 4px;
}
.lg-slider-fallback__inner h2 {
	margin: 0 0 8px;
	font-size: 32px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.lg-slider-fallback__inner p {
	margin: 0;
	opacity: 0.85;
}
.lg-slider-fallback__admin-note {
	max-width: 640px;
	margin: 16px auto 0;
	font-size: 12px;
	background: rgba(255,255,255,0.1);
	padding: 10px 14px;
	border-radius: 4px;
}
