/* Project Top Title widget — a full-width, rounded-corner dark intro
   section: a large heading + subheading, a row of stat cards (value +
   label), and a wrapped grid of flag + country-name pills under a
   label. */

.aiol-ptt {
	display: block;
	width: 100%;
	background-color: #000000;
	border-radius: 24px;
	padding: 80px 60px;
	box-sizing: border-box;
	overflow: hidden;
}

/* ---------- Heading ---------- */
.aiol-ptt__intro {
	margin-bottom: 48px;
}

.aiol-ptt__heading {
	margin: 0 0 16px;
	max-width: 900px;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
}

.aiol-ptt__subheading {
	margin: 0;
	max-width: 700px;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #9a9a9a;
}

/* ---------- Stats ---------- */
.aiol-ptt__stats {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 20px;
	margin-bottom: 56px;
}

.aiol-ptt__stat {
	background-color: #161616;
	border-radius: 16px;
	padding: 28px 24px;
	box-sizing: border-box;
}

.aiol-ptt__stat-value {
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
}

.aiol-ptt__stat-label {
	margin-top: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #9a9a9a;
}

/* ---------- Countries ---------- */
.aiol-ptt__countries-label {
	margin-bottom: 20px;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
}

.aiol-ptt__countries-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.aiol-ptt__country {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 10px;
	padding: 10px 16px;
	box-sizing: border-box;
}

.aiol-ptt__country-flag {
	font-size: 16px;
	line-height: 1;
}

.aiol-ptt__country-name {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
}

@media ( max-width: 900px ) {
	.aiol-ptt {
		padding: 60px 32px;
	}

	.aiol-ptt__heading {
		font-size: 32px;
	}

	.aiol-ptt__stats {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 560px ) {
	.aiol-ptt {
		padding: 48px 20px;
	}

	.aiol-ptt__heading {
		font-size: 26px;
	}

	.aiol-ptt__stats {
		grid-template-columns: 1fr;
	}
}
