/**
 * Roe EUI Blog Theme - Custom Styles (Elementor Edition)
 *
 * Elastic UI-inspired design tokens and layout styles
 * for the classic WordPress + Elementor theme.
 */

/* ============================================
   1. BASE / RESET
   ============================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #343741;
	background: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	margin: 0;
}

/* ============================================
   2. LAYOUT CONTAINERS
   ============================================ */

.euiContainer {
	max-width: 800px;
	margin: 0 auto;
	padding: 48px 24px;
}

.euiContainer--wide {
	max-width: 1200px;
}

.euiSite__content {
	min-height: 60vh;
}

/* ============================================
   3. HEADER
   ============================================ */

.euiHeader {
	background: #FFFFFF;
	border-bottom: 1px solid #D3DAE6;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.euiHeader__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.euiHeader__brand a {
	text-decoration: none;
}

.euiHeader__siteTitle {
	display: inline-block;
	background: #006BB8;
	color: #FFFFFF !important;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none !important;
}

/* Navigation */
.euiNav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.euiNav__list li a {
	display: block;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #343741;
	text-decoration: none;
	transition: background-color 150ms ease-in, color 150ms ease-in;
}

.euiNav__list li a:hover {
	background-color: #F5F7FA;
	color: #006BB8;
}

.euiNav__list li.current-menu-item a,
.euiNav__list li.current_page_item a {
	background-color: rgba(0, 107, 184, 0.08);
	color: #006BB8;
	font-weight: 600;
}

/* Mobile toggle */
.euiNav__toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
}

.euiNav__toggleBar {
	display: block;
	width: 20px;
	height: 2px;
	background: #343741;
	border-radius: 1px;
	transition: transform 150ms ease-in;
}

@media (max-width: 781px) {
	.euiNav__toggle {
		display: flex;
	}

	.euiNav__list {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #FFFFFF;
		border-bottom: 1px solid #D3DAE6;
		padding: 16px 24px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	}

	.euiNav__list.is-open {
		display: flex;
	}

	.euiNav__list li {
		width: 100%;
	}

	.euiNav__list li a {
		width: 100%;
	}
}

/* ============================================
   4. FOOTER
   ============================================ */

.euiFooter {
	background: #F5F7FA;
	border-top: 1px solid #D3DAE6;
	padding: 48px 24px;
}

.euiFooter__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 24px;
}

.euiFooter__brand a {
	font-size: 1rem;
	font-weight: 700;
	color: #1D1E24;
	text-decoration: none;
}

.euiFooter__tagline {
	font-size: 0.8125rem;
	color: #69707D;
	margin: 4px 0 0;
}

.euiFooter__nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
}

.euiFooter__nav a {
	font-size: 0.875rem;
	color: #343741;
	text-decoration: none;
	transition: color 150ms ease-in;
}

.euiFooter__nav a:hover {
	color: #006BB8;
}

.euiFooter__copy {
	font-size: 0.8125rem;
	color: #69707D;
	margin: 8px 0 0;
}

/* ============================================
   5. PAGE HEADERS
   ============================================ */

.euiPageHeader {
	margin-bottom: 32px;
}

.euiPageHeader__title {
	font-family: "Inter", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #1D1E24;
	margin: 0 0 8px;
	line-height: 1.2;
}

.euiPageHeader__desc {
	font-size: 1rem;
	color: #69707D;
	margin: 0;
}

/* ============================================
   6. SECTION HEADER (used on front-page)
   ============================================ */

.euiSection {
	margin-top: 48px;
}

.euiSection__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.euiSection__title {
	font-size: 1.75rem;
	font-weight: 600;
	color: #1D1E24;
	margin: 0;
}

.euiSection__link {
	font-size: 0.875rem;
	font-weight: 500;
	color: #006BB8;
	text-decoration: none;
	transition: color 150ms ease-in;
}

.euiSection__link:hover {
	color: #004A7F;
	text-decoration: underline;
}

/* ============================================
   7. SINGLE POST
   ============================================ */

.euiSingle__metaTop {
	margin-bottom: 12px;
}

.euiSingle__metaTop a {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #017D73;
	text-decoration: none;
}

.euiSingle__title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1D1E24;
	margin: 0 0 16px;
	line-height: 1.2;
}

.euiSingle__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	font-size: 0.875rem;
}

.euiSingle__author {
	font-weight: 500;
	color: #343741;
}

.euiSingle__separator {
	color: #98A2B3;
}

.euiSingle__date {
	color: #69707D;
}

.euiSingle__featuredImage {
	margin-bottom: 32px;
	border-radius: 6px;
	overflow: hidden;
}

.euiSingle__featuredImage img {
	width: 100%;
	height: auto;
	display: block;
}

.euiSingle__content {
	font-size: 1rem;
	line-height: 1.7;
	color: #343741;
}

.euiSingle__content h2,
.euiSingle__content h3,
.euiSingle__content h4 {
	color: #1D1E24;
	margin-top: 2em;
}

.euiSingle__content a {
	color: #006BB8;
	text-decoration: none;
}

.euiSingle__content a:hover {
	text-decoration: underline;
}

.euiSingle__content blockquote {
	border-left: 4px solid #006BB8;
	margin: 1.5em 0;
	padding: 0 0 0 24px;
	font-style: italic;
	color: #69707D;
}

.euiSingle__content pre {
	background: #F5F7FA;
	border: 1px solid #D3DAE6;
	border-radius: 6px;
	padding: 16px;
	overflow-x: auto;
	font-family: "Roboto Mono", monospace;
	font-size: 0.875rem;
}

.euiSingle__content code {
	background: #F5F7FA;
	border: 1px solid #D3DAE6;
	border-radius: 4px;
	padding: 2px 6px;
	font-family: "Roboto Mono", monospace;
	font-size: 0.85em;
}

.euiSingle__content pre code {
	background: none;
	border: none;
	padding: 0;
}

.euiSingle__tags {
	margin: 32px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.euiTag {
	display: inline-block;
	background: #F5F7FA;
	border: 1px solid #D3DAE6;
	border-radius: 4px;
	padding: 4px 10px;
	font-size: 0.8125rem;
	color: #343741;
}

.euiTag a {
	color: inherit;
	text-decoration: none;
}

.euiDivider {
	border: none;
	height: 1px;
	background: #D3DAE6;
	margin: 32px 0;
}

/* ============================================
   8. SEARCH RESULTS
   ============================================ */

.euiSearchCard {
	padding: 16px;
	margin-bottom: 12px;
	background: #FFFFFF;
	border: 1px solid #D3DAE6;
	border-radius: 6px;
	transition: border-color 150ms ease-in;
}

.euiSearchCard:hover {
	border-color: #006BB8;
}

.euiSearchCard__title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 8px;
}

.euiSearchCard__title a {
	color: #1D1E24;
	text-decoration: none;
}

.euiSearchCard__title a:hover {
	color: #006BB8;
}

.euiSearchCard__excerpt {
	font-size: 0.875rem;
	color: #69707D;
	margin: 0 0 8px;
	line-height: 1.5;
}

.euiSearchCard__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	color: #69707D;
}

.euiSearchCard__meta a {
	color: #017D73;
	text-decoration: none;
}

/* Search form */
.euiSearchForm {
	display: flex;
	max-width: 500px;
	margin-top: 16px;
}

.euiSearchForm__input {
	flex: 1;
	border: 1px solid #D3DAE6;
	border-radius: 6px 0 0 6px;
	padding: 10px 16px;
	font-size: 0.875rem;
	font-family: inherit;
	background: #F5F7FA;
	transition: border-color 150ms ease-in, box-shadow 150ms ease-in;
}

.euiSearchForm__input:focus {
	border-color: #006BB8;
	box-shadow: 0 0 0 1px #006BB8;
	outline: none;
	background: #FFFFFF;
}

.euiSearchForm__button {
	background: #006BB8;
	color: #FFFFFF;
	border: 1px solid #006BB8;
	border-radius: 0 6px 6px 0;
	padding: 10px 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: background-color 150ms ease-in;
}

.euiSearchForm__button:hover {
	background: #004A7F;
	border-color: #004A7F;
}

/* ============================================
   9. 404 ERROR PAGE
   ============================================ */

.euiErrorPage {
	text-align: center;
	padding: 80px 32px;
	background: #F5F7FA;
	border: 1px solid #D3DAE6;
	border-radius: 6px;
}

.euiErrorPage__code {
	font-size: 4rem;
	font-weight: 800;
	color: #D3DAE6;
	display: block;
	margin-bottom: 8px;
}

.euiErrorPage__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1D1E24;
	margin: 0 0 8px;
}

.euiErrorPage__desc {
	font-size: 1rem;
	color: #69707D;
	margin: 0 0 24px;
}

/* ============================================
   10. PAGINATION
   ============================================ */

.euiPagination {
	margin-top: 48px;
	text-align: center;
}

.euiPagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.euiPagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #343741;
	text-decoration: none;
	transition: background-color 150ms ease-in, color 150ms ease-in;
}

.euiPagination .page-numbers:hover {
	background-color: #F5F7FA;
}

.euiPagination .page-numbers.current {
	background-color: #006BB8;
	color: #FFFFFF;
}

/* ============================================
   11. EUI COMMENT LIST
   ============================================ */

/* --- Section wrapper --- */

.euiCommentList__section {
	margin-top: 48px;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.euiCommentList__heading {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1D1E24;
	margin: 0 0 24px;
}

/* Closed comments notice */
.euiCommentList__closed {
	font-size: 0.875rem;
	color: #69707D;
	font-style: italic;
	padding: 16px;
	background: #F5F7FA;
	border-radius: 6px;
	border: 1px solid #D3DAE6;
}

/* --- Comment list (ol) --- */

.euiCommentList {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* --- Individual comment --- */

.euiComment {
	display: flex;
	align-items: stretch;
	position: relative;
}

/* --- Timeline column --- */

.euiCommentTimeline {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 40px;
	margin-right: 12px;
}

.euiCommentTimeline__icon {
	flex-shrink: 0;
	z-index: 1;
}

.euiCommentTimeline__line {
	flex: 1;
	width: 2px;
	background-color: #D3DAE6;
	margin-top: 4px;
}

/* Hide the connector on the very last comment at the root level */
.euiCommentList > .euiComment:last-child > .euiCommentTimeline > .euiCommentTimeline__line {
	background-color: transparent;
}

/* But show it again if there are nested replies */
.euiCommentList > .euiComment:last-child:has(.euiCommentList--nested) > .euiCommentTimeline > .euiCommentTimeline__line {
	background-color: #D3DAE6;
}

/* --- Avatar --- */

.euiCommentAvatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.euiCommentAvatar--user {
	background-color: #D3DAE6;
	color: #69707D;
}

.euiCommentAvatar--user img,
.euiCommentAvatar__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}

.euiCommentAvatar--icon {
	background-color: #F5F7FA;
	color: #69707D;
}

.euiCommentAvatar--subdued {
	background-color: #F5F7FA;
	color: #98A2B3;
}

/* Post-author highlight ring */
.euiComment--byPostAuthor > .euiCommentTimeline .euiCommentAvatar--user {
	box-shadow: 0 0 0 2px #006BB8;
}

/* --- Event column (header + body) --- */

.euiCommentEvent {
	flex: 1;
	min-width: 0;
	padding-bottom: 24px;
}

/* Remove bottom padding on the last comment */
.euiCommentList > .euiComment:last-child > .euiCommentEvent {
	padding-bottom: 0;
}

/* --- Header --- */

.euiCommentEvent__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	background-color: #F5F7FA;
	border: 1px solid #D3DAE6;
	border-radius: 6px 6px 0 0;
	padding: 8px 12px;
	font-size: 0.8125rem;
	line-height: 1.5;
}

/* Update-type comments: full border radius, no body follows */
.euiComment--update .euiCommentEvent__header {
	border-radius: 6px;
	background-color: transparent;
	border-color: transparent;
	padding: 4px 0;
}

.euiCommentEvent__headerMain {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 6px;
	min-width: 0;
}

/* Username */
.euiCommentEvent__headerUsername {
	font-weight: 600;
	color: #1D1E24;
}

.euiCommentEvent__headerUsername a {
	color: #1D1E24;
	text-decoration: none;
	transition: color 150ms ease-in;
}

.euiCommentEvent__headerUsername a:hover {
	color: #006BB8;
	text-decoration: underline;
}

/* Author badge */
.euiCommentEvent__headerBadge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 1px 6px;
	border-radius: 4px;
	background-color: #006BB8;
	color: #FFFFFF;
	line-height: 1.4;
}

/* Event text */
.euiCommentEvent__headerEvent {
	color: #69707D;
}

/* Timestamp */
.euiCommentEvent__headerTimestamp {
	color: #98A2B3;
	white-space: nowrap;
}

/* --- Actions --- */

.euiCommentEvent__headerActions {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
}

.euiCommentAction {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #69707D;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 150ms ease-in, color 150ms ease-in;
	border: none;
	background: none;
	line-height: 1;
}

.euiCommentAction:hover {
	background-color: rgba(0, 107, 184, 0.08);
	color: #006BB8;
}

.euiCommentAction a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: inherit;
	text-decoration: none;
}

.euiCommentAction a:hover {
	color: #006BB8;
}

/* WordPress reply link inherits action styles */
.euiCommentAction--reply .comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: inherit;
	text-decoration: none;
	font-size: inherit;
	font-weight: inherit;
}

.euiCommentAction--reply .comment-reply-link:hover {
	color: #006BB8;
}

/* --- Pending alert --- */

.euiCommentEvent__alert {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background-color: rgba(245, 167, 0, 0.08);
	border-left: 1px solid #D3DAE6;
	border-right: 1px solid #D3DAE6;
	font-size: 0.8125rem;
	color: #69707D;
}

.euiCommentEvent__alert svg {
	color: #F5A700;
	flex-shrink: 0;
}

/* --- Body --- */

.euiCommentEvent__body {
	padding: 12px 16px;
	border: 1px solid #D3DAE6;
	border-top: none;
	border-radius: 0 0 6px 6px;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #343741;
	background-color: #FFFFFF;
}

.euiCommentEvent__body p:first-child {
	margin-top: 0;
}

.euiCommentEvent__body p:last-child {
	margin-bottom: 0;
}

.euiCommentEvent__body a {
	color: #006BB8;
	text-decoration: none;
	transition: color 150ms ease-in;
}

.euiCommentEvent__body a:hover {
	text-decoration: underline;
}

.euiCommentEvent__body blockquote {
	margin: 12px 0;
	padding: 8px 16px;
	border-left: 3px solid #D3DAE6;
	color: #69707D;
	font-style: italic;
}

.euiCommentEvent__body code {
	font-family: "Roboto Mono", "Courier New", Courier, monospace;
	font-size: 0.8125rem;
	background-color: #F5F7FA;
	padding: 2px 6px;
	border-radius: 4px;
}

.euiCommentEvent__body pre {
	background-color: #F5F7FA;
	border: 1px solid #D3DAE6;
	border-radius: 6px;
	padding: 12px 16px;
	overflow-x: auto;
}

.euiCommentEvent__body pre code {
	background: none;
	padding: 0;
}

.euiCommentEvent__body img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

/* --- Pending comment faded --- */

.euiComment--pending .euiCommentEvent__body {
	opacity: 0.65;
}

/* --- Nested / threaded replies --- */

.euiCommentList--nested {
	list-style: none;
	padding: 0;
	margin: 0 0 0 20px;
}

.euiCommentList--nested .euiComment {
	margin-top: 0;
}

/* Increase indent per depth level */
.euiCommentList--depth-2 { margin-left: 20px; }
.euiCommentList--depth-3 { margin-left: 16px; }
.euiCommentList--depth-4 { margin-left: 12px; }
.euiCommentList--depth-5 { margin-left: 8px; }

/* --- Comment pagination --- */

.euiCommentList__pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #D3DAE6;
}

.euiCommentList__pagination a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #006BB8;
	text-decoration: none;
	transition: background-color 150ms ease-in;
}

.euiCommentList__pagination a:hover {
	background-color: rgba(0, 107, 184, 0.08);
}

.euiCommentList__paginationNext {
	margin-left: auto;
}

/* ============================================
   EUI COMMENT FORM
   ============================================ */

.euiCommentForm {
	margin-top: 32px;
}

#reply-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1D1E24;
	margin: 0 0 4px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.euiCommentForm__cancel a {
	font-size: 0.8125rem;
	font-weight: 500;
	color: #69707D;
	text-decoration: none;
	transition: color 150ms ease-in;
}

.euiCommentForm__cancel a:hover {
	color: #BD271E;
}

.euiCommentForm__notes {
	font-size: 0.8125rem;
	color: #69707D;
	margin: 0 0 16px;
}

/* Logged-in message */
.euiCommentForm .logged-in-as {
	font-size: 0.8125rem;
	color: #69707D;
	margin-bottom: 16px;
}

.euiCommentForm .logged-in-as a {
	color: #006BB8;
	text-decoration: none;
}

.euiCommentForm .logged-in-as a:hover {
	text-decoration: underline;
}

/* Form fields */
.euiCommentForm label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #343741;
	margin-bottom: 4px;
}

.euiCommentForm .comment-form-comment,
.euiCommentForm .comment-form-author,
.euiCommentForm .comment-form-email,
.euiCommentForm .comment-form-url,
.euiCommentForm .comment-form-cookies-consent {
	margin-bottom: 16px;
}

.euiCommentForm input[type="text"],
.euiCommentForm input[type="email"],
.euiCommentForm input[type="url"],
.euiCommentForm textarea {
	display: block;
	width: 100%;
	border: 1px solid #D3DAE6;
	border-radius: 6px;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #343741;
	background-color: #FFFFFF;
	transition: border-color 150ms ease-in, box-shadow 150ms ease-in;
}

.euiCommentForm input[type="text"]:focus,
.euiCommentForm input[type="email"]:focus,
.euiCommentForm input[type="url"]:focus,
.euiCommentForm textarea:focus {
	border-color: #006BB8;
	box-shadow: 0 0 0 1px #006BB8;
	outline: none;
}

.euiCommentForm textarea {
	min-height: 120px;
	resize: vertical;
}

/* Cookies consent */
.euiCommentForm .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
}

.euiCommentForm .comment-form-cookies-consent input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #006BB8;
}

.euiCommentForm .comment-form-cookies-consent label {
	font-weight: 400;
	margin-bottom: 0;
}

/* Submit area */
.euiCommentForm .form-submit {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.euiCommentForm__submit {
	padding: 10px 24px;
	font-size: 0.875rem;
}

/* --- Responsive --- */

@media (max-width: 600px) {
	.euiCommentTimeline {
		width: 32px;
		margin-right: 8px;
	}

	.euiCommentAvatar {
		width: 28px;
		height: 28px;
	}

	.euiCommentEvent__header {
		flex-direction: column;
		gap: 4px;
	}

	.euiCommentEvent__headerActions {
		align-self: flex-start;
	}

	.euiCommentList--nested {
		margin-left: 12px;
	}

	.euiCommentList--depth-2,
	.euiCommentList--depth-3,
	.euiCommentList--depth-4,
	.euiCommentList--depth-5 {
		margin-left: 8px;
	}
}

/* ============================================
   12. SIDEBAR WIDGETS
   ============================================ */

.euiSidebarWidget {
	margin-bottom: 24px;
	padding: 16px;
	background: #FFFFFF;
	border: 1px solid #D3DAE6;
	border-radius: 6px;
}

.euiWidgetTitle {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #69707D;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #D3DAE6;
}

/* ============================================
   13. LINKS & FOCUS (Accessibility)
   ============================================ */

a {
	color: #006BB8;
	text-decoration: none;
	transition: color 150ms ease-in;
}

a:hover {
	color: #004A7F;
	text-decoration: underline;
}

:focus-visible {
	outline: 2px solid #006BB8;
	outline-offset: 2px;
}

a:focus:not(:focus-visible) {
	outline: none;
}

::selection {
	background-color: rgba(0, 107, 184, 0.15);
	color: #1D1E24;
}

/* ============================================
   14. HEADINGS
   ============================================ */

h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", sans-serif;
	color: #1D1E24;
	line-height: 1.2;
}

/* ============================================
   15. SMOOTH SCROLL
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* ============================================
   16. ELEMENTOR FULL WIDTH / CANVAS
   ============================================ */

.euiFullWidth {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.euiCanvas {
	margin: 0;
	padding: 0;
}

/* ============================================
   17. ELEMENTOR OVERRIDES & COMPATIBILITY
   ============================================ */

/* Let Elementor sections go full-width on Elementor-built pages */
.roe-eui-elementor-page .euiSite__content {
	max-width: 100%;
	padding: 0;
}

/* Ensure Elementor sections stretch properly */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1200px;
}

/* Typography consistency inside Elementor widgets */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
	font-family: "Inter", sans-serif;
}

.elementor-widget-text-editor {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: #343741;
}

/* Elementor buttons should match EUI styling by default */
.elementor-widget-button .elementor-button {
	font-family: "Inter", sans-serif;
	font-weight: 500;
	border-radius: 6px;
	transition: background-color 150ms ease-in, transform 150ms ease-in;
}

.elementor-widget-button .elementor-button:hover {
	transform: translateY(-1px);
}

/* Elementor form inputs match EUI form styling */
.elementor-form .elementor-field {
	border: 1px solid #D3DAE6;
	border-radius: 6px;
	padding: 10px 12px;
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	transition: border-color 150ms ease-in, box-shadow 150ms ease-in;
}

.elementor-form .elementor-field:focus {
	border-color: #006BB8;
	box-shadow: 0 0 0 1px #006BB8;
	outline: none;
}

/* Elementor image widget — rounded corners */
.elementor-widget-image img {
	border-radius: 6px;
}

/* Elementor divider match */
.elementor-widget-divider .elementor-divider-separator {
	border-color: #D3DAE6;
}

/* WP Admin bar offset for sticky header */
.admin-bar .euiHeader {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .euiHeader {
		top: 46px;
	}
}
