/* ═══════════════════════════════════════════
	 AI Full Global Module
	 ═══════════════════════════════════════════ */

/* ── Outer container ── */
.ai-full-module-container {
	margin: 40px 10%;
}

.ai-full-inner {
	background: linear-gradient(145deg, #02293d 0%, #021e2e 100%);
	border: 3px solid #12d678;
	border-radius: 16px;
	max-width: 1084px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 50px;
}

/* ── Top row: two-column layout ── */
.ai-full-top-row {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.ai-full-text-col {
	flex: 1 1 55%;
	min-width: 0;
}

.ai-full-image-col {
	flex: 0 0 40%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ── Eyebrow ── */
.ai-full-eyebrow {
	color: #12d678;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 16px;
}

/* ── Headline ── */
.ai-full-headline {
	color: #ffffff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

/* ── Body text ── */
.ai-full-body {
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 24px;
}

.ai-full-body p {
	margin: 0 0 12px 0;
}

.ai-full-body p:last-child {
	margin-bottom: 0;
}

/* ── Feature tags ── */
.ai-full-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.ai-full-tag {
	align-items: center;
	border: 1px solid rgba(18, 214, 120, 0.4);
	border-radius: 20px;
	color: #12d678;
	display: inline-flex;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 500;
	gap: 8px;
	padding: 8px 18px;
	white-space: nowrap;
}

.ai-full-tag-icon {
	display: inline-flex;
	align-items: center;
}

.ai-full-tag-icon svg {
	fill: #12d678;
	height: 14px;
	width: 14px;
	vertical-align: middle;
}

/* ── Images ── */
.ai-full-image-wrapper {
	border-radius: 12px;
	overflow: hidden;
}

.ai-full-image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* First image in the right column: taller */
.ai-full-image-col .ai-full-image-wrapper:first-child img {
	max-height: 320px;
}

/* Second image in the right column */
.ai-full-image-col .ai-full-image-wrapper:nth-child(2) img {
	max-height: 200px;
}

/* ── Bottom row ── */
.ai-full-bottom-row {
	display: flex;
	gap: 40px;
	align-items: stretch;
	margin-top: 32px;
}

/* ── AI Links box ── */
.ai-full-ai-box {
	flex: 1 1 65%;
	background-color: rgba(255, 255, 255, 0.04);
	border: 2px solid #12d678;
	border-radius: 12px;
	padding: 30px;
	min-width: 0;
}

.ai-full-ai-headline {
	color: rgba(255, 255, 255, 1);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 8px 0;
}

.ai-full-ai-text {
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
	margin: 0 0 20px 0;
}

/* ── AI Buttons ── */
.ai-full-button-container {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ai-full-button {
	align-items: center;
	border-radius: 50px;
	color: #ffffff;
	display: inline-flex;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-weight: 600;
	gap: 8px;
	justify-content: center;
	padding: 12px 28px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-full-button:visited {
	font-weight: 600;
	color: #ffffff;
}

.ai-full-button:hover {
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.ai-full-button svg {
	fill: #ffffff;
	height: 20px;
	width: 20px;
}

.ai-full-button img {
	height: 20px;
	width: 20px;
}

/* ── Bottom-right image ── */
.ai-full-bottom-image {
	flex: 0 0 30%;
}

.ai-full-bottom-image .ai-full-image-wrapper {
	height: 100%;
}

.ai-full-bottom-image .ai-full-image-wrapper img {
	height: 100%;
	max-height: 280px;
}

/* ═══════════════════════════════════════════
	 Responsive
	 ═══════════════════════════════════════════ */

@media (max-width: 900px) {
	.ai-full-inner {
		padding: 32px;
	}

	.ai-full-top-row {
		flex-direction: column;
	}

	.ai-full-image-col {
		flex: 1 1 100%;
		flex-direction: row;
	}

	.ai-full-image-col .ai-full-image-wrapper {
		flex: 1;
	}

	.ai-full-image-col .ai-full-image-wrapper:first-child img,
	.ai-full-image-col .ai-full-image-wrapper:nth-child(2) img {
		max-height: 200px;
	}

	.ai-full-bottom-row {
		flex-direction: column;
	}

	.ai-full-bottom-image {
		flex: 1 1 100%;
	}

	.ai-full-bottom-image .ai-full-image-wrapper img {
		max-height: 220px;
	}
}

@media (max-width: 768px) {
	.ai-full-module-container {
		margin-left: 5%;
		margin-right: 5%;
	}

	.ai-full-inner {
		padding: 24px;
	}

	.ai-full-headline {
		font-size: 26px;
	}

	.ai-full-image-col {
		display: none;
	}

	.ai-full-bottom-image {
		display: none;
	}

	.ai-full-tags {
		gap: 8px;
	}

	.ai-full-tag {
		font-size: 13px;
		padding: 6px 14px;
	}

	.ai-full-button-container {
		flex-direction: column;
	}

	.ai-full-button {
		width: 100%;
		justify-content: center;
	}
}
