/* Category Section - 2026 */
.gpa-2026-category__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

/* .gpa-2026-category__title styling handled by .gpa26-section-title utility class */

.gpa-2026-category__grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.gpa-2026-category__card {
	position: relative;
	display: flex;
	gap: 16px;
	align-items: center;
	align-self: center;
	padding: 16px;
	/* Radial gradient background */
	background: radial-gradient(
		ellipse 180px 300px at 94% 13.5%,
		rgba(48, 64, 119, 1) 0%,
		rgba(38, 42, 72, 0.625) 72.172%,
		rgba(36, 45, 65, 0.5) 100%
	);
	overflow: hidden;
    width: 100%;
}

.gpa-2026-category__card-icon {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 0 9px;
}

.gpa-2026-category__card-icon img {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	object-position: bottom center;
}

.gpa-2026-category__card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}

.gpa-2026-category__card-title {
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gpa-2026-category__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 8px;
	border: 1px solid #ffffff;
	background: transparent;
	font-family: 'Figtree', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
	transition: background-color 0.3s ease;
	width: fit-content;
}

.gpa-2026-category__card-btn:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
}

.gpa-2026-category__card-btn:visited {
	color: #ffffff;
	text-decoration: none;
}

.gpa-2026-category__card-shimmer-up,
.gpa-2026-category__card-shimmer-down {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-size: contain;
	background-repeat: no-repeat;
}

.gpa-2026-category__card-shimmer-up {
	bottom: 0;
	right: 0;
	background-image: url('../img/shimmer-up.svg');
	background-position: bottom right;
}

.gpa-2026-category__card-shimmer-down {
	top: 0;
	left: 0;
	background-image: url('../img/shimmer-down.svg');
	background-position: top left;
}

.gpa-2026-category__cta {
	display: flex;
	justify-content: center;
	width: 100%;
}

.gpa-2026-category__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 8px;
	background: linear-gradient(to right, #ecda75, #e0ab2e);
	font-family: 'Figtree', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: normal;
	color: #000000;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.gpa-2026-category__cta-btn:hover {
	opacity: 0.9;
	color: #000000;
	text-decoration: none;
}

.gpa-2026-category__cta-btn:visited {
	color: #000000;
	text-decoration: none;
}

/* Tablet breakpoint (768px - 991px) */
@media (min-width: 768px) {
	/* Horizontal padding now handled by .gpa26-container-padding utility class */

	.gpa-2026-category__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

/* Desktop breakpoint (992px and above) */
@media (min-width: 992px) {
	/* Title font-size now handled by .gpa26-section-title utility class */

	.gpa-2026-category__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Large Desktop breakpoint (1280px and above) */
@media (min-width: 1280px) {
	/* Horizontal padding now handled by .gpa26-container-padding utility class */
}
