/*
 * ELNIQ GEO — single AI bot / platform profile page styles.
 * Loaded only on ai_bot single posts. Values translated from
 * "AI Bot - {name}.dc.html" into the theme's design tokens.
 */

.eg-aibot-hero {
	padding: 44px 24px 96px;
}
.eg-aibot-hero__inner {
	max-width: var(--eg-container-sm);
	margin: 0 auto;
}
.eg-aibot-hero__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.eg-aibot-badge {
	font-size: 11.5px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: var(--eg-radius-pill);
	background: var(--eg-blue-tint-bg);
	color: var(--eg-blue);
}
.eg-aibot-badge--platform,
.eg-aibot-badge--token {
	background: rgba(71, 85, 105, 0.12);
	color: #475569;
}
.eg-aibot-badge--search {
	background: rgba(22, 163, 74, 0.1);
	color: var(--eg-accent-green);
}
.eg-aibot-badge--training {
	background: rgba(217, 119, 6, 0.1);
	color: #D97706;
}
.eg-aibot-badge--dataset {
	background: rgba(147, 51, 234, 0.1);
	color: var(--eg-accent-purple);
}
.eg-aibot-badge--ads {
	background: rgba(219, 39, 119, 0.1);
	color: #DB2777;
}
.eg-aibot-hero__top h1 {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 14px 0 6px;
	letter-spacing: -0.02em;
}
.eg-aibot-hero__subtitle {
	font-size: 15px;
	color: var(--eg-text-muted-2);
	font-weight: 600;
	margin: 0;
}
.eg-aibot-rec-badge {
	font-size: 13px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: var(--eg-radius-pill);
	white-space: nowrap;
	background: rgba(22, 163, 74, 0.12);
	color: #166534;
}
.eg-aibot-rec-badge--optional {
	background: rgba(217, 119, 6, 0.12);
	color: #92400E;
}
.eg-aibot-rec-badge--platform {
	background: rgba(71, 85, 105, 0.12);
	color: #475569;
}
.eg-aibot-hero__intro {
	font-size: 17px;
	line-height: 1.65;
	color: var(--eg-text-secondary);
	margin: 0 0 40px;
	max-width: 760px;
}

.eg-aibot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin-bottom: 48px;
}
.eg-aibot-grid__item {
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: 14px;
	padding: 18px;
}
.eg-aibot-grid__label {
	font-size: 11.5px;
	color: var(--eg-text-muted-2);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 6px;
}
.eg-aibot-grid__value {
	font-size: 15px;
	font-weight: 700;
	color: var(--eg-text-heading);
}
.eg-aibot-grid__value--small {
	font-size: 14.5px;
	line-height: 1.35;
}
.eg-aibot-grid__value--danger {
	color: #DC2626;
}

.eg-aibot-twocol {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 48px;
}
@media (min-width: 760px) {
	.eg-aibot-twocol {
		grid-template-columns: 1fr 1fr;
	}
}
.eg-aibot-card {
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: 18px;
	padding: 30px;
	margin-bottom: 0;
}
.eg-aibot-card--wide {
	margin-bottom: 48px;
}
.eg-aibot-card h2 {
	font-size: 19px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 16px;
}
.eg-aibot-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--eg-text-secondary);
	margin: 0 0 14px;
}
.eg-aibot-card p:last-child {
	margin-bottom: 0;
}
.eg-aibot-muted-text {
	font-size: 13.5px !important;
	color: var(--eg-text-muted-2) !important;
}

.eg-aibot-checklist {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.eg-aibot-checklist li {
	display: flex;
	gap: 10px;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--eg-text-secondary);
}
.eg-aibot-checklist li span {
	color: var(--eg-accent-green);
	font-weight: 800;
	flex-shrink: 0;
}
.eg-aibot-checklist--dot li span {
	color: var(--eg-text-muted);
}

.eg-aibot-id-block {
	margin-bottom: 18px;
}
.eg-aibot-id-block__label {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--eg-text-muted-2);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 8px;
}
.eg-aibot-id-block code {
	display: block;
	background: var(--eg-section-bg-light);
	border: 1px solid var(--eg-border-light);
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 13.5px;
	color: var(--eg-blue);
	overflow-x: auto;
	word-break: break-all;
}
.eg-aibot-id-block .eg-aibot-code-block {
	color: #166534;
	white-space: pre;
}
.eg-aibot-id-block p {
	font-size: 14px;
	margin: 0;
}
.eg-aibot-id-footer {
	border-top: 1px solid #F1F3F7;
	padding-top: 18px;
	margin-top: 4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.eg-aibot-id-footer a {
	font-size: 14px;
	font-weight: 700;
	color: var(--eg-blue);
	text-decoration: none;
}
.eg-aibot-id-footer a:hover {
	text-decoration: underline;
}
.eg-aibot-id-footer span {
	font-size: 12.5px;
	color: var(--eg-text-muted-2);
	font-weight: 600;
}
.eg-aibot-doc-links {
	margin-top: 14px;
	font-size: 13px;
	color: var(--eg-text-muted-2);
	font-weight: 600;
}
.eg-aibot-doc-links a {
	color: var(--eg-blue);
	font-weight: 700;
	text-decoration: none;
}
.eg-aibot-doc-links a:hover {
	text-decoration: underline;
}

.eg-aibot-related__heading {
	font-size: 17px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 14px;
}
.eg-aibot-related__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 0;
}
.eg-aibot-related__pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: var(--eg-radius-pill);
	background: #fff;
	border: 1px solid var(--eg-border-light);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--eg-text-heading);
	text-decoration: none;
}
.eg-aibot-related__pill:hover {
	border-color: var(--eg-blue);
	color: var(--eg-blue);
}
.eg-aibot-related__pill span {
	color: var(--eg-text-muted-2);
}
