.rs-area-remate-front {
	font-family: 'Jost', sans-serif;
	color: #111827;
	box-sizing: border-box;
}

.rs-area-remate-front * {
	box-sizing: border-box;
}

.rs-area-remate-seccion {
	margin-bottom: 24px;
}

.rs-area-remate-seccion-nombre {
	display: inline-block;
	font-family: 'Jost', sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #0063FD !important;
	margin-bottom: 8px;
}

.rs-area-remate-seccion-titulo {
	font-family: 'Jost', sans-serif !important;
	font-size: 40px !important;
	font-weight: 700 !important;
	color: #002052 !important;
	margin: 0 0 10px;
	line-height: 1.2;
}

.rs-area-remate-seccion-descripcion {
	font-family: 'Jost', sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #647D8C !important;
	line-height: 1.5;
}

.rs-area-remate-seccion-descripcion p:last-child {
	margin-bottom: 0;
}

.rs-area-remate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.rs-area-remate-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	color: inherit;
}

.rs-area-remate-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}

.rs-area-remate-imagen {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	padding: 24px;
	overflow: hidden;
}

.rs-area-remate-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.rs-area-remate-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px;
	position: relative;
}

.rs-area-remate-titulo {
	font-size: 17px;
	font-weight: 700;
	color: #1e3a8a;
	margin: 0 0 8px;
	line-height: 1.3;
}

.rs-area-remate-descripcion {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 16px;
	padding-right: 32px;
}

.rs-area-remate-flecha {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #2563eb;
	background: #eff6ff;
	border-radius: 50%;
	transition: background 0.2s ease, color 0.2s ease;
}

.rs-area-remate-card:hover .rs-area-remate-flecha {
	background: #2563eb;
	color: #fff;
}

.rs-area-remate-flecha svg {
	display: block;
	transform: rotate(-45deg);
}

@media (max-width: 1024px) {
	.rs-area-remate-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.rs-area-remate-grid {
		grid-template-columns: 1fr;
	}

	.rs-area-remate-imagen {
		height: 180px;
	}

	.rs-area-remate-seccion-titulo {
		font-size: 32px !important;
	}
}
