.gptl {
	--gptl-blue: #079bd3;
	--gptl-blue-dark: #0577aa;
	--gptl-yellow: #ffd500;
	--gptl-red: #e81435;
	--gptl-ink: #202126;
	--gptl-muted: #66717c;
	--gptl-line: #dbe3e8;
	--gptl-surface: #ffffff;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(48px, 5vw, 78px) 24px;
	background: #fbfcfd;
	color: var(--gptl-ink);
	font-family: inherit;
}

.gptl *,
.gptl *::before,
.gptl *::after {
	box-sizing: border-box;
}

.gptl__blueprint {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: .42;
	background-image:
		linear-gradient(30deg, transparent 49.5%, rgba(7, 155, 211, .07) 50%, transparent 50.5%),
		linear-gradient(150deg, transparent 49.5%, rgba(7, 155, 211, .055) 50%, transparent 50.5%),
		radial-gradient(circle at 12% 20%, rgba(7, 155, 211, .08), transparent 22%),
		radial-gradient(circle at 88% 76%, rgba(7, 155, 211, .07), transparent 24%);
	background-size: 180px 110px, 180px 110px, auto, auto;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 42%, transparent 62%, rgba(0,0,0,.45));
}

.gptl__container {
	width: min(1180px, 100%);
	margin-inline: auto;
}

.gptl__header {
	max-width: 900px;
	margin: 0 auto 24px;
	text-align: center;
}

.gptl__eyebrow {
	margin: 0 0 10px;
	color: var(--gptl-blue-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gptl__title {
	margin: 0;
	color: var(--gptl-ink);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.gptl__description {
	max-width: 780px;
	margin: 13px auto 0;
	color: #4d5660;
	font-size: 15px;
	line-height: 1.55;
}

.gptl__summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 15px 0 0;
	font-size: 16px;
}

.gptl__summary strong {
	color: var(--gptl-blue-dark);
	font-size: 27px;
	font-weight: 900;
}

.gptl__summary i {
	display: block;
	width: 1px;
	height: 20px;
	margin-inline: 12px;
	background: #8e969e;
}

.gptl__filters {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	margin: 0 auto 30px;
	padding: 4px 4px 10px;
	scrollbar-width: thin;
}

.gptl__filter {
	flex: 1 0 auto;
	min-width: 118px;
	padding: 9px 16px;
	border: 1px solid #cbd4da;
	border-radius: 999px;
	background: rgba(255,255,255,.86);
	color: var(--gptl-ink);
	font: inherit;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.gptl__filter:hover,
.gptl__filter:focus-visible {
	border-color: var(--gptl-blue);
	transform: translateY(-1px);
}

.gptl__filter.is-active {
	border-color: var(--gptl-blue-dark);
	background: var(--gptl-blue-dark);
	color: #fff;
}

.gptl__status {
	min-height: 18px;
	margin-bottom: 4px;
	color: var(--gptl-muted);
	font-size: 14px;
	text-align: center;
}

.gptl__items {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-block: 4px;
}

.gptl__items::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: var(--gptl-blue);
	transform: translateX(-50%);
}

.gptl__item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
	align-items: center;
	min-height: 112px;
}

.gptl__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(50% - 48px);
	width: 48px;
	border-top: 1px solid var(--gptl-blue);
}

.gptl__item:nth-child(even)::before {
	left: 50%;
}

.gptl__marker {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	display: flex;
	justify-content: center;
}

.gptl__marker span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 66px;
	min-height: 32px;
	padding: 5px 10px;
	border-radius: 7px;
	background: var(--gptl-yellow);
	box-shadow: 0 4px 12px rgba(35, 39, 43, .12);
	color: #151515;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
}

.gptl__marker i {
	display: block;
	width: 12px;
	height: 12px;
	border: 3px solid var(--gptl-blue);
	border-radius: 50%;
	background: #fff;
}

.gptl__card {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	display: grid;
	grid-template-columns: minmax(130px, 34%) 1fr;
	min-height: 112px;
	overflow: hidden;
	border: 1px solid var(--gptl-line);
	border-radius: 9px;
	background: var(--gptl-surface);
	box-shadow: 0 5px 16px rgba(26, 45, 58, .09);
}

.gptl__item:nth-child(even) .gptl__card {
	grid-column: 3;
}

.gptl__item:not(.has-image) .gptl__card {
	grid-template-columns: 1fr;
	border-top: 4px solid var(--gptl-blue);
}

.gptl__media {
	min-height: 100%;
	background: #d8e7ed;
}

.gptl__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 132px;
	object-fit: cover;
}

.gptl__card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 15px 18px;
}

.gptl__region {
	margin: 0 0 5px;
	color: var(--gptl-blue-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .055em;
	line-height: 1.25;
	text-transform: uppercase;
}

.gptl__project-title {
	margin: 0;
	color: var(--gptl-ink);
	font-size: clamp(16px, 1.35vw, 19px);
	font-weight: 800;
	line-height: 1.18;
}

.gptl__project-description {
	display: -webkit-box;
	overflow: hidden;
	margin: 7px 0 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--gptl-muted);
	font-size: 12.5px;
	line-height: 1.4;
}

.gptl__category {
	align-self: flex-start;
	margin: 9px 0 0;
	padding: 4px 8px;
	border-radius: 4px;
	background: #eef8fc;
	color: var(--gptl-blue-dark);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
}

.gptl__actions {
	margin-top: 30px;
	text-align: center;
}

.gptl__load-more {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 11px 20px;
	border: 2px solid var(--gptl-blue-dark);
	border-radius: 5px;
	background: #fff;
	color: var(--gptl-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.gptl__load-more:hover,
.gptl__load-more:focus-visible {
	background: var(--gptl-blue-dark);
	color: #fff;
}

.gptl__load-more:disabled {
	cursor: wait;
	opacity: .62;
}

.gptl__load-more span {
	font-size: 19px;
}

.gptl__empty {
	margin: 32px auto 0;
	padding: 24px;
	border: 1px solid var(--gptl-line);
	border-radius: 8px;
	background: #fff;
	color: var(--gptl-muted);
	text-align: center;
}

.gptl [hidden] {
	display: none !important;
}

.gptl.is-loading .gptl__items {
	opacity: .58;
	pointer-events: none;
}

/* Acerca las filas alternadas para aprovechar el espacio libre de la columna opuesta. */
@media (min-width: 901px) {
	.gptl__item + .gptl__item {
		margin-top: -50px;
	}
}

@media (max-width: 900px) {
	.gptl__items::before {
		left: 27px;
	}

	.gptl__item {
		grid-template-columns: 56px minmax(0, 1fr);
		align-items: start;
		min-height: auto;
	}

	.gptl__marker {
		grid-column: 1;
		justify-content: flex-start;
		padding-top: 18px;
	}

	.gptl__marker span {
		min-width: 54px;
		min-height: 32px;
		padding: 5px 7px;
		font-size: 14px;
	}

	.gptl__marker i {
		margin: 8px 0 0 21px;
	}

	.gptl__card,
	.gptl__item:nth-child(even) .gptl__card {
		grid-column: 2;
		grid-row: 1;
		margin-left: 22px;
	}

	.gptl__item::before,
	.gptl__item:nth-child(even)::before {
		top: 34px;
		left: 27px;
		width: 51px;
	}
}

@media (max-width: 620px) {
	.gptl {
		padding: 44px 16px;
	}

	.gptl__header {
		text-align: left;
	}

	.gptl__description {
		font-size: 14px;
	}

	.gptl__summary {
		justify-content: flex-start;
		font-size: 15px;
	}

	.gptl__summary strong {
		font-size: 24px;
	}

	.gptl__filters {
		margin-bottom: 24px;
	}

	.gptl__card {
		grid-template-columns: 1fr;
	}

	.gptl__media {
		max-height: 150px;
	}

	.gptl__media img {
		min-height: 150px;
	}

	.gptl__card-body {
		padding: 14px 15px;
	}

	.gptl__project-title {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gptl *,
	.gptl *::before,
	.gptl *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
