.ga-car-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ga-featured-car-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.ga-car-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ga-car-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	padding: 7px 12px;
	border-radius: 999px;
	background: #4caf18;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.ga-car-card__badge--navidades {
	background: #d62828;
}

.ga-car-card__badge--fin-de-mes {
	background: #3aaf1d;
}

.ga-car-card__badge--reservado {
	background: #0f3d75;
}

.ga-car-card__badge--preparacion {
	background: #39aee8;
}

.ga-car-card__image-link {
	display: block;
	text-decoration: none;
	background: #f2f2f2;
}

.ga-car-card__image {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.ga-car-card__image--placeholder {
	width: 100%;
	height: 300px;
	background: #ececec;
}

.ga-car-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 20px 18px;
}

.ga-car-card__title {
	margin: 0 0 16px;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.3;
	color: #004a67;
	min-height: auto;
}

.ga-car-card__title a {
	color: inherit;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ga-car-card__title a:hover {
	color: #007f95;
}

.ga-car-card__specs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid #e6e6e6;
}

.ga-car-card__spec {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	font-size: 15px;
	color: #0f172a;
}

.ga-car-card__spec--wide {
	min-width: 120px;
}

.ga-car-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: #9ca3af;
}

.ga-car-card__icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.ga-car-card__spec-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: #0f172a;
}

.ga-car-card__spec-text--capitalize {
	text-transform: capitalize;
}

.ga-car-card__spec-text--nowrap {
	white-space: nowrap;
}

.ga-car-card__prices {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.ga-car-card__price-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 1 1 calc(50% - 5px);
	min-width: 190px;
	min-height: 52px;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	box-sizing: border-box;
}

.ga-car-card__price-pill--primary {
	background: #ffffff;
	border: 1.5px solid #004a67;
	color: #004a67;
}

.ga-car-card__price-pill--secondary {
	background: #f5fffe;
	border: 1.5px solid #30cfc3;
	color: #008e86;
}

.ga-car-card__price-help {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	color: #7f8c9a;
}

.ga-car-card__button {
	display: block;
	width: 100%;
	margin-top: auto;
	padding: 15px 20px;
	border-radius: 999px;
	background: #0697a8;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	transition: background 0.2s ease;
}

.ga-car-card__button:hover {
	background: #047f8d;
	color: #ffffff;
}

.ga-featured-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid #d9dde3;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.ga-featured-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 6px 10px;
	border-radius: 999px;
	background: #4caf18;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.ga-featured-card__image-link {
	display: block;
	background: linear-gradient(180deg, #f0f2f4 0%, #e2e5e8 100%);
	text-decoration: none;
}

.ga-featured-card__image {
	display: block;
	width: 100%;
	height: 168px;
	object-fit: cover;
}

.ga-featured-card__image--placeholder {
	width: 100%;
	height: 168px;
	background: #ececec;
}

.ga-featured-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 14px 12px;
}

.ga-featured-card__title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	color: #004a67;
}

.ga-featured-card__title a {
	display: -webkit-box;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ga-featured-card__title a:hover {
	color: #007f95;
}

.ga-featured-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
	font-size: 12px;
	line-height: 1.2;
	color: #7a8794;
}

.ga-featured-card__meta span:not(:last-child)::after {
	content: "|";
	margin-left: 6px;
	color: #c0c8d0;
}

.ga-featured-card__footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

.ga-featured-card__price-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.ga-featured-card__price-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 9px;
	border: 1px solid #0e87a0;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #0e87a0;
}

.ga-featured-card__price {
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	color: #003e58;
}

.ga-featured-card__button {
	display: block;
	width: 100%;
	padding: 11px 14px;
	border-radius: 10px;
	background: #0f95a8;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	transition: background 0.2s ease;
}

.ga-featured-card__button:hover {
	background: #0b7f8f;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.ga-car-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ga-featured-car-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ga-car-grid {
		grid-template-columns: 1fr;
	}

	.ga-car-card__image,
	.ga-car-card__image--placeholder {
		height: 240px;
	}

	.ga-car-card__content {
		padding: 18px 16px 16px;
	}

	.ga-car-card__title {
		font-size: 18px;
		min-height: auto;
	}

	.ga-car-card__specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 10px;
	}

	.ga-car-card__spec-text {
		font-size: 14px;
	}

	.ga-car-card__price-pill {
		flex: 1 1 100%;
		min-width: 100%;
		font-size: 15px;
	}

	.ga-featured-car-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.ga-featured-card__image,
	.ga-featured-card__image--placeholder {
		height: 150px;
	}
}

@media (max-width: 520px) {
	.ga-featured-car-grid {
		grid-template-columns: 1fr;
	}
}
