/**
 * MickSEO — EEAT Frontend Author Box stylesheet.
 *
 * Minimal, theme-agnostic styles for the EEAT author credential box rendered
 * after (or before) post content on singular post pages.
 *
 * All selectors are scoped to .mick-seo-eeat-box. Themes can override any
 * rule using the same class names. Spacing deliberately uses em units so the
 * box scales with the theme's base font size.
 */

/* =========================================================================
   Outer container
   ========================================================================= */

.mick-seo-eeat-box {
	margin: 2em 0;
	padding: 1.5em;
	border: 1px solid #e2e4e7;
	border-radius: 6px;
	background: #f9f9f9;
	clear: both;
	font-size: 0.95em;
	line-height: 1.6;
	color: inherit;
}

/* =========================================================================
   Heading
   ========================================================================= */

.mick-seo-eeat-box__heading {
	margin: 0 0 1em;
	font-size: 1.05em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: inherit;
	border-bottom: 2px solid #e2e4e7;
	padding-bottom: 0.5em;
}

/* =========================================================================
   Header row (photo + identity)
   ========================================================================= */

.mick-seo-eeat-box__header {
	display: flex;
	align-items: flex-start;
	gap: 1em;
	margin-bottom: 1em;
}

.mick-seo-eeat-box__photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid #e2e4e7;
}

.mick-seo-eeat-box__identity {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	padding-top: 0.2em;
}

.mick-seo-eeat-box__name {
	font-weight: 700;
	font-size: 1.05em;
	color: inherit;
	text-decoration: none;
}

a.mick-seo-eeat-box__name:hover {
	text-decoration: underline;
}

.mick-seo-eeat-box__title {
	font-size: 0.9em;
	color: #646970;
}

/* =========================================================================
   Bio text
   ========================================================================= */

.mick-seo-eeat-box__bio {
	margin-bottom: 1em;
}

.mick-seo-eeat-box__bio p {
	margin: 0 0 0.6em;
}

.mick-seo-eeat-box__bio p:last-child {
	margin-bottom: 0;
}

/* =========================================================================
   EEAT dimension sections
   ========================================================================= */

.mick-seo-eeat-box__dimension {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid #e2e4e7;
}

.mick-seo-eeat-box__dimension-title {
	margin: 0 0 0.4em;
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #646970;
}

.mick-seo-eeat-box__dimension-body p {
	margin: 0 0 0.4em;
}

.mick-seo-eeat-box__dimension-body p:last-child {
	margin-bottom: 0;
}

/* =========================================================================
   Credentials list (Expertise section)
   ========================================================================= */

.mick-seo-eeat-box__credential-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mick-seo-eeat-box__credential-list li {
	padding-left: 1.2em;
	position: relative;
	margin-bottom: 0.25em;
}

.mick-seo-eeat-box__credential-list li::before {
	content: '\2713'; /* ✓ */
	position: absolute;
	left: 0;
	color: #2271b1;
	font-size: 0.9em;
}
