/* ══════════════════════════════════════════════
   COLUMN LISTING BLOCK
   ══════════════════════════════════════════════ */

/* ── SECTION ── */
.cl-section {
	padding: 58px 0;
}

/* ── HEADER ── */
.cl-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	margin-bottom: 53px;
}

.cl-eyebrow {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--clr-primary);
	text-align: center;
	display: block;
}

/* Default heading max-width (type-1) */
.cl-heading {
	font-family: var(--font-main);
	font-size: 50px;
	font-weight: 700;
	line-height: 57px;
	letter-spacing: -1.86px;
	color: var(--clr-white);
	text-align: center;
	margin-bottom: 0;
	max-width: 780px;
}

/* Types 2 & 3 — no width constraint, wraps naturally */
.cl-layout--type-2 .cl-heading,
.cl-layout--type-3 .cl-heading {
	max-width: none;
}

/* Type 4 — wider heading */
.cl-layout--type-4 .cl-heading {
	max-width: 1008px;
}

/* ── INTRO TEXT (types 2 & 3) ── */
.cl-intro {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	color: var(--clr-white);
	text-align: center;
	max-width: 800px;
	margin: 0 auto 53px;
}

.cl-intro p {
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
}

.cl-intro strong,
.cl-intro b {
	font-weight: 800;
}

/* ══════════════════════════════════════════════
   SHARED ROW — types 1, 2, 3
   ══════════════════════════════════════════════ */

.cl-list {
	display: flex;
	flex-direction: column;
}

/* ── ROW CARD ── */
.cl-row {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 17px 21px;
	background-color: var(--clr-black);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	min-height: 107px;
}

/* Hover background image */
.cl-row-bg {
	position: absolute;
	/* inset: 0; */
	right: 0;
	width: 30%;
	height: 100%;
	pointer-events: none;
	border-radius: inherit;
	overflow: hidden;
	display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cl-row-bg img {
	position: absolute;
	/* inset: 0; */
	width: auto;
	height: 100%;
	max-width: none;
	object-fit: contain;
	opacity: 0;
	transform: translate(24px, 24px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.cl-row:hover .cl-row-bg img {
	opacity: 1;
	transform: translate(0, 0);
}

/* ── ROW TEXT ── */
.cl-row-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	position: relative;
	z-index: 1;
	flex: 1;
	min-width: 0;
}

.cl-row-title {
	font-family: var(--font-body);
	font-size: 30px;
	font-weight: 700;
	line-height: 28.9px;
	color: var(--clr-primary);
	margin-bottom: 0;
}

.cl-row-body {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	color: var(--clr-white);
	position: relative;
	z-index: 1;
	overflow-wrap: break-word;
}

.cl-row-body p {
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
}

.cl-row-body strong,
.cl-row-body b {
	font-weight: 800;
}

/* ══════════════════════════════════════════════
   TYPE 1 — Logo + Title + Body (full width)
   ══════════════════════════════════════════════ */

.cl-layout--type-1 .cl-list {
	gap: 23px;
}

/* Logo */
.cl-logo-wrap {
	width: 65px;
	height: 65px;
	border-radius: 13px;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.05);
}

.cl-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* CTA button */
.cl-cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 53px;
}

.cl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 6px;
	background-color: var(--clr-secondary);
	color: var(--clr-black);
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 800;
	line-height: 30px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.cl-btn:hover {
	color: var(--clr-black);
	text-decoration: none;
	transform: translateY(-2px);
}

.cl-btn .icon {
	transform: rotate(-45deg) scale(0.85);
	font-size: 16px;
	flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   TYPE 2 — Title + Body, 800 px centred
   ══════════════════════════════════════════════ */

.cl-layout--type-2 .cl-list {
	gap: 23px;
}

/* ══════════════════════════════════════════════
   TYPE 3 — Cyan dot bullet + Body, 800 px, 73 px rows
   ══════════════════════════════════════════════ */

.cl-layout--type-3 .cl-list {
	gap: 12px;
}

.cl-layout--type-3 .cl-row {
	min-height: 73px;
}

/* Cyan glowing bullet dot */
.cl-bullet {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background-color: var(--clr-primary);
	box-shadow: 0 0 8px 0 var(--clr-primary);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

/* ══════════════════════════════════════════════
   TYPE 4 — Numbered steps
   ══════════════════════════════════════════════ */

.cl-layout--type-4 .cl-list {
	gap: 5px;
}

.cl-step {
	display: flex;
	align-items: stretch;
}

/* Left: cyan number + label box */
.cl-step-label {
	width: 200px;
	flex-shrink: 0;
	background-color: var(--clr-primary);
	border-radius: 15px;
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.cl-step-num {
	font-family: var(--font-main);
	font-size: 50px;
	font-weight: 700;
	line-height: 57px;
	letter-spacing: -1.86px;
	color: var(--clr-black);
	display: block;
}

.cl-step-name {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 700;
	line-height: 21px;
	color: var(--clr-black);
	margin-bottom: 0;
}

/* Right: dark content panel */
.cl-step-body {
	flex: 1;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--clr-primary);
	border-radius: 15px;
	background: #000;
	padding: 17px 21px;
	display: flex;
	align-items: center;
	min-height: 173px;
}

.cl-step:hover .cl-step-body .cl-row-bg img {
	opacity: 1;
	transform: translate(0, 0);
}

/* ══════════════════════════════════════════════
   TYPE 5 — Award rows: text left, circular image right
   ══════════════════════════════════════════════ */

.cl-layout--type-5 .cl-list {
	gap: 12px;
}

.cl-row--award {
	gap: 34px;
	padding: 17px 37px;
	min-height: 250px;
	align-items: center;
}

/* Background: black fill + dot-pattern permanently visible in right portion */
.cl-award-card-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 15px;
	overflow: hidden;
}

.cl-award-card-bg__black {
	position: absolute;
	inset: 0;
	background: #000;
	border-radius: 15px;
}

.cl-award-card-bg__dots {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 15px;
}

.cl-award-card-bg__dots img {
	position: absolute;
	left: 71.17%;
	top: -25.65%;
	width: 38.67%;
	height: 151.3%;
	max-width: none;
	object-fit: fill;
}

/* Text block: gap between header group and body */
.cl-row--award .cl-row-text {
	gap: 26px;
}

/* Award title + sublabel stacked with tight gap */
.cl-award-header {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

/* Sublabel — e.g. "2025 | APJ" */
.cl-award-sublabel {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: var(--clr-white);
	display: block;
}

/* Circular image on the right */
.cl-award-img-wrap {
	width: 191px;
	height: 191px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	overflow: hidden;
}

.cl-award-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* ══════════════════════════════════════════════
   LIST SIZE VARIANTS
   ══════════════════════════════════════════════ */

.cl-list--size-compact {
	max-width: 800px;
	margin-inline: auto;
}

.cl-list--size-wide {
	max-width: 1000px;
	margin-inline: auto;
}

.cl-list--size-full {
	max-width: 100%;
}

/* ══════════════════════════════════════════════
   2-COLUMN VARIANT
   ══════════════════════════════════════════════ */

.cl-list--2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 991.98px) {
	.cl-section { padding: 48px 0; }
	.cl-heading {
		font-size: 40px;
		line-height: 1.1;
		letter-spacing: -1px;
	}
	.cl-layout--type-4 .cl-heading { max-width: none; }
	.cl-row-title { font-size: 24px; line-height: 1.2; }
	/* Step label shrinks */
	.cl-step-label { width: 160px; }
	.cl-step-num { font-size: 40px; line-height: 1; }
	.cl-step-name { font-size: 17px; }
	.cl-step-body { min-height: 140px; }
	/* Award rows */
	.cl-row--award { padding: 17px 24px; gap: 24px; min-height: 200px; }
	.cl-award-img-wrap { width: 140px; height: 140px; }
}

@media (max-width: 767.98px) {
	.cl-list--2col { grid-template-columns: 1fr; }
	.cl-section { padding: 40px 0; }
	.cl-header { gap: 20px; margin-bottom: 40px; }
	.cl-heading { font-size: 32px; }
	.cl-intro { font-size: 16px; line-height: 26px; margin-bottom: 36px; }
	.cl-intro p { font-size: 16px; line-height: 26px; }
	.cl-row { min-height: auto; padding: 14px 16px; }
	.cl-row-title { font-size: 20px; }
	.cl-row-body { font-size: 16px; line-height: 24px; }
	.cl-row-body p { font-size: 16px; line-height: 24px; }
	.cl-btn { font-size: 16px; padding: 12px 20px; white-space: normal; }
	.cl-cta-wrap { margin-top: 36px; }
	/* Type 4 mobile: stack label above body */
	.cl-step { flex-direction: column; gap: 0; }
	.cl-step-label {
		width: 100%;
		border-radius: 15px 15px 0 0;
		flex-direction: row;
		align-items: center;
		gap: 16px;
		padding: 12px 16px;
	}
	.cl-step-num { font-size: 32px; line-height: 1; flex-shrink: 0; }
	.cl-step-name { font-size: 16px; line-height: 1.3; }
	.cl-step-body {
		border-radius: 0 0 15px 15px;
		min-height: auto;
	}
	/* Award rows: hide circular image on mobile */
	.cl-row--award { gap: 16px; padding: 20px 16px; min-height: auto; }
	.cl-award-img-wrap { display: none; }
	.cl-award-sublabel { font-size: 16px; line-height: 24px; }
}

@media (max-width: 575.98px) {
	.cl-section { padding: 32px 0; }
	.cl-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
		line-height: 1.15;
	}
	.cl-logo-wrap { width: 48px; height: 48px; }
	.cl-layout--type-3 .cl-list { gap: 8px; }
}
