@media (min-width: 721px) {
	.site-navigation #site-primary-menu {
		align-items: center;
	}

	.site-navigation #site-primary-menu > .menu-item,
	.site-navigation #site-primary-menu .menu-item-has-children {
		position: relative;
	}

	.site-navigation #site-primary-menu a {
		display: inline-flex;
		gap: var(--lo-space-2);
		align-items: center;
		padding: 6px 8px;
		line-height: var(--lo-line-height-heading);
		border-radius: var(--lo-radius-medium);
	}

	.site-navigation #site-primary-menu a:focus-visible,
	.site-navigation #site-primary-menu .current-menu-parent > a,
	.site-navigation #site-primary-menu .current-menu-ancestor > a,
	.site-navigation #site-primary-menu .current_page_parent > a,
	.site-navigation #site-primary-menu .current_page_ancestor > a {
		color: var(--lo-color-primary);
		font-weight: 500;
	}

	.site-navigation #site-primary-menu > .current-menu-item > a,
	.site-navigation #site-primary-menu > .current_page_item > a,
	.site-navigation #site-primary-menu a[aria-current="page"] {
		color: var(--lo-color-primary);
		font-weight: 600;
		background: var(--lo-color-primary-soft);
		box-shadow: inset 0 0 0 1px rgb(22 163 74 / 14%);
	}

	.site-navigation #site-primary-menu > .menu-item-has-children > a::after {
		display: inline-block;
		margin-left: 6px;
		font-size: 0.62em;
		line-height: 1;
		color: currentColor;
		content: "\25BC";
		opacity: 0.8;
		transform: translateY(-1px);
	}

	.site-navigation #site-primary-menu .sub-menu,
	.site-navigation #site-primary-menu .menu-item-has-children:not(:hover):not(:focus-within) > .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: var(--lo-z-index-dropdown, 20);
		display: none !important;
		min-width: 220px;
		padding: var(--lo-space-2);
		margin: 0;
		list-style: none;
		background: var(--lo-color-surface);
		border: 1px solid var(--lo-color-border);
		border-radius: var(--lo-radius-large);
		box-shadow: var(--lo-shadow-card-hover);
	}

	.site-navigation #site-primary-menu .menu-item-has-children:hover > .sub-menu,
	.site-navigation #site-primary-menu .menu-item-has-children:focus-within > .sub-menu {
		display: block !important;
	}

	.site-navigation #site-primary-menu .sub-menu a {
		display: block;
		width: 100%;
		padding: 10px 14px;
		color: var(--lo-color-text);
		font-weight: inherit;
		line-height: 1.45;
		text-decoration: none;
		white-space: nowrap;
		border: 0;
		border-radius: var(--lo-radius-medium);
	}

	.site-navigation #site-primary-menu .sub-menu a:hover,
	.site-navigation #site-primary-menu .sub-menu a:focus,
	.site-navigation #site-primary-menu .sub-menu a:focus-visible,
	.site-navigation #site-primary-menu .sub-menu .current-menu-item > a,
	.site-navigation #site-primary-menu .sub-menu .current_page_item > a,
	.site-navigation #site-primary-menu .sub-menu a[aria-current="page"] {
		color: var(--lo-color-primary);
		background: rgb(22 163 74 / 10%);
		box-shadow: inset 0 0 0 1px rgb(22 163 74 / 16%);
		outline: none;
	}

	.site-navigation #site-primary-menu .sub-menu .current-menu-parent > a,
	.site-navigation #site-primary-menu .sub-menu .current-menu-ancestor > a,
	.site-navigation #site-primary-menu .sub-menu .current_page_parent > a,
	.site-navigation #site-primary-menu .sub-menu .current_page_ancestor > a {
		color: var(--lo-color-primary);
		font-weight: 600;
	}
}

/* Stage 53: single post view, scoped to native WordPress posts. */
.single-post .lo-single-main {
	width: 100%;
	max-width: none;
	padding: 0 0 72px;
	background: #fbfcfb;
}

.lo-single-page {
	padding-top: 20px;
}

.lo-single-breadcrumbs {
	margin-bottom: 16px;
}

.lo-single-breadcrumbs__nav ol {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	padding: 0;
	margin: 0;
	color: var(--lo-color-muted);
	font-size: 0.78rem;
	list-style: none;
}

.lo-single-breadcrumbs__nav li {
	display: inline-flex;
	gap: 7px;
	align-items: center;
}

.lo-single-breadcrumbs__nav li:not(:last-child)::after {
	color: #9ca3af;
	content: "/";
}

.lo-single-breadcrumbs__nav a {
	color: var(--lo-color-text);
	text-decoration: none;
}

.lo-single-breadcrumbs__nav a:hover,
.lo-single-breadcrumbs__nav a:focus-visible {
	color: var(--lo-color-primary);
}

.lo-single-breadcrumbs__nav [aria-current="page"] {
	color: var(--lo-color-muted);
}

.lo-single-grid {
	display: grid;
	grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
	gap: 28px;
	align-items: start;
}

.lo-single-primary,
.lo-single-sidebar-wrap {
	min-width: 0;
}

.single-post .lo-single {
	padding: 38px 42px;
	overflow: hidden;
	background: var(--lo-color-white);
	border: 1px solid #e7ebea;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgb(15 23 42 / 5%);
}

.single-post .lo-single__header {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}

.single-post .lo-single__date {
	margin: 0;
	color: var(--lo-color-primary);
	font-weight: 700;
	text-transform: uppercase;
}

.single-post .lo-single__title {
	width: 100%;
	max-width: none;
	margin: 0;
	font-size: clamp(2rem, 2.8vw, 2.85rem);
	line-height: 1.07;
	letter-spacing: 0;
}

.single-post .lo-single__lead {
	max-width: 860px;
	color: #374151;
	font-size: 1.08rem;
	line-height: 1.72;
}

.single-post .lo-single__lead p {
	margin: 0;
}

.single-post .lo-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	align-items: center;
	margin-top: 2px;
	color: var(--lo-color-muted);
}

.single-post .lo-single__meta-item {
	position: relative;
}

.single-post .lo-single__meta-item + .lo-single__meta-item::before {
	position: absolute;
	left: -11px;
	color: #c1c7c4;
	content: "•";
}

.single-post .lo-single__categories a {
	color: var(--lo-color-primary-dark);
	font-weight: 600;
	text-decoration: none;
}

.single-post .lo-single__thumbnail {
	position: relative;
	width: 100%;
	margin-bottom: 26px;
	overflow: hidden;
	background: #edf2ef;
	border-radius: 10px;
}

.single-post .lo-single__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 560px;
	object-fit: cover;
	border-radius: 10px;
}

.single-post .lo-single__thumbnail--fallback {
	display: grid;
	min-height: 310px;
	place-items: center;
	background:
		linear-gradient(145deg, rgb(22 163 74 / 12%), transparent 55%),
		#edf3ef;
}

.lo-single__thumbnail-placeholder {
	position: relative;
	display: block;
	width: 82px;
	height: 104px;
	background: rgb(255 255 255 / 88%);
	border: 2px solid rgb(22 163 74 / 54%);
	border-radius: 8px;
	box-shadow: var(--lo-shadow-card);
}

.lo-single__thumbnail-placeholder::before,
.lo-single__thumbnail-placeholder::after,
.lo-single__thumbnail-placeholder span {
	position: absolute;
	left: 17px;
	width: 46px;
	height: 2px;
	background: rgb(22 163 74 / 38%);
	content: "";
}

.lo-single__thumbnail-placeholder::before {
	top: 32px;
}

.lo-single__thumbnail-placeholder::after {
	top: 49px;
}

.lo-single__thumbnail-placeholder span {
	top: 66px;
}

.single-post .lo-single-toc {
	position: static;
	top: auto;
	z-index: auto;
	width: 100%;
	max-width: none;
	max-height: none;
	padding: 24px 26px;
	margin: 0 0 28px;
	overflow: visible;
	background: #f5f9f6;
	border: 1px solid rgb(22 163 74 / 16%);
	border-radius: 10px;
	box-shadow: none;
}

.single-post .lo-single-toc > .lo-caption {
	margin: 0 0 16px;
	color: var(--lo-color-text);
	font-size: 0.95rem;
	font-weight: 750;
	text-transform: none;
}

.single-post .lo-toc-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	counter-reset: lo-toc-h2 lo-toc-h3 lo-toc-h4;
	list-style: none;
}

.single-post .lo-toc-list__item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 4px;
	align-items: start;
	padding: 0;
	margin: 0;
	line-height: 1.5;
	list-style: none;
}

.single-post .lo-toc-list__item::before {
	display: grid;
	width: 34px;
	min-height: 22px;
	place-items: center;
	color: var(--lo-color-primary-dark);
	font-size: 0.72rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	background: rgb(22 163 74 / 10%);
	border-radius: 6px;
}

.single-post .lo-toc-list__item::marker {
	content: "";
}

.single-post .lo-toc-list__item--level-2 {
	counter-increment: lo-toc-h2;
	counter-reset: lo-toc-h3 lo-toc-h4;
}

.single-post .lo-toc-list__item--level-2::before {
	content: counter(lo-toc-h2);
}

.single-post .lo-toc-list__item--level-3 {
	margin-left: 24px;
	counter-increment: lo-toc-h3;
	counter-reset: lo-toc-h4;
}

.single-post .lo-toc-list__item--level-3::before {
	content: counter(lo-toc-h2) "." counter(lo-toc-h3);
}

.single-post .lo-toc-list__item--level-4 {
	margin-left: 48px;
	counter-increment: lo-toc-h4;
}

.single-post .lo-toc-list__item--level-4::before {
	content: counter(lo-toc-h2) "." counter(lo-toc-h3) "." counter(lo-toc-h4);
}

.single-post .lo-toc-list a {
	color: #374151;
	line-height: 1.5;
	text-decoration: none;
}

.single-post .lo-toc-list a:hover,
.single-post .lo-toc-list a:focus-visible {
	color: var(--lo-color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-post .lo-toc-list a[aria-current="location"],
.single-post .lo-toc-list__item.is-active > a {
	color: var(--lo-color-primary-dark);
	font-weight: 700;
}

.single-post .lo-single__content {
	width: 100%;
	max-width: none;
	color: #26312b;
	font-size: 1.0625rem;
	line-height: 1.78;
}

.single-post .lo-single__content > * {
	max-width: 100%;
}

.single-post .lo-single__content p {
	margin-bottom: 1.35em;
}

.single-post .lo-single__content h2 {
	margin: 2.25em 0 0.75em;
	font-size: clamp(1.55rem, 2.2vw, 2rem);
	line-height: 1.25;
	scroll-margin-top: 96px;
}

.single-post .lo-single__content h3 {
	margin: 1.8em 0 0.65em;
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	line-height: 1.3;
	scroll-margin-top: 96px;
}

.single-post .lo-single__content h4,
.single-post .lo-single__content h5,
.single-post .lo-single__content h6 {
	scroll-margin-top: 96px;
}

.single-post .lo-single__content :is(.alignwide, .alignfull) {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
}

.single-post .lo-single__content .lo-ad-slot,
.single-post .lo-single > .lo-ad-slot,
.single-post .lo-single-shell > .lo-ad-slot {
	width: 100%;
	max-width: 100%;
	min-height: 88px;
	margin: 26px 0;
}

.single-post .lo-single > .lo-ad-slot--after-toc {
	margin-top: -14px;
	margin-bottom: 28px;
}

.lo-single__tags,
.lo-single__share {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	padding-top: 24px;
	margin-top: 28px;
	border-top: 1px solid var(--lo-color-border);
}

.lo-single__tags-label,
.lo-single__share-label {
	color: var(--lo-color-text);
	font-weight: 700;
}

.lo-single__tag-list,
.lo-single__share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.lo-single__tag-list a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 11px;
	color: #374151;
	font-size: 0.78rem;
	line-height: 1;
	text-decoration: none;
	background: #f7f9f8;
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius-pill);
}

.lo-single__tag-list a:hover,
.lo-single__tag-list a:focus-visible {
	color: var(--lo-color-primary-dark);
	background: var(--lo-color-primary-soft);
	border-color: rgb(22 163 74 / 30%);
}

.lo-single__share-links > a,
.lo-single__copy-link {
	display: inline-grid;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	color: #374151;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 750;
	text-decoration: none;
	background: #f3f5f4;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: color var(--lo-transition-base), background-color var(--lo-transition-base), transform var(--lo-transition-base);
}

.lo-single__share-links > a:hover,
.lo-single__share-links > a:focus-visible,
.lo-single__copy-link:hover,
.lo-single__copy-link:focus-visible {
	color: #fff;
	background: var(--lo-color-primary);
	transform: translateY(-1px);
}

.lo-single__copy-link:focus-visible {
	outline: var(--lo-focus-ring);
	outline-offset: 2px;
}

.single-post .lo-post-navigation {
	width: 100%;
	margin: 30px 0 0;
	padding-top: 26px;
	border-top: 1px solid var(--lo-color-border);
}

.single-post .lo-post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.single-post .lo-post-navigation .nav-previous,
.single-post .lo-post-navigation .nav-next {
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--lo-color-border);
	border-radius: 9px;
	box-shadow: none;
	transition: border-color var(--lo-transition-base), box-shadow var(--lo-transition-base), transform var(--lo-transition-base);
}

.single-post .lo-post-navigation .nav-previous:hover,
.single-post .lo-post-navigation .nav-next:hover {
	border-color: rgb(22 163 74 / 30%);
	box-shadow: 0 9px 22px rgb(15 23 42 / 7%);
	transform: translateY(-2px);
}

.single-post .lo-post-navigation a {
	display: grid;
	gap: 5px;
	text-decoration: none;
}

.single-post .lo-post-navigation__label {
	color: var(--lo-color-muted);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
}

.single-post .lo-post-navigation__title {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.35;
}

.single-post .lo-single-cta,
.single-post .lo-single-author {
	width: 100%;
	margin: 22px 0 0;
}

.single-post .lo-single-cta .lo-container {
	width: 100%;
}

.single-post .lo-single-cta .lo-cta__inner {
	padding: 28px;
	border-radius: 12px;
}

.single-post .lo-single-author {
	grid-template-columns: auto minmax(0, 1fr);
	padding: 26px;
	border: 1px solid #e7ebea;
	border-radius: 12px;
	box-shadow: 0 7px 22px rgb(15 23 42 / 4%);
}

.single-post .lo-single-author__link {
	width: fit-content;
	color: var(--lo-color-primary-dark);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
}

.single-post .lo-single-author__link:hover,
.single-post .lo-single-author__link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lo-single-sidebar-wrap .lo-single-sidebar {
	position: static;
	display: grid;
	gap: 18px;
}

.lo-single-sidebar > * {
	width: 100%;
	max-width: none;
	margin: 0;
}

.lo-single-sidebar .lo-blog-sidebar__section,
.lo-single-sidebar .lo-blog-sidebar-cta .lo-cta__inner,
.lo-single-sidebar .lo-ad-slot--single_sidebar {
	border: 1px solid #e8ebef;
	border-radius: 12px;
}

.lo-single-sidebar .lo-ad-slot--single_sidebar {
	min-height: 120px;
	padding: 20px;
	margin: 0;
}

.single-post .lo-single-shell > .lo-ad-slot--before-related-posts {
	margin-top: 34px;
	margin-bottom: 0;
}

.single-post .lo-related-posts {
	width: 100%;
	margin: 48px 0 0;
	padding: 0;
	background: transparent;
}

.single-post .lo-related-posts > .lo-container-wide {
	width: 100%;
}

.single-post .lo-related-posts .lo-section__header {
	margin-bottom: 22px;
}

.single-post .lo-related-posts .lo-section__header h2 {
	margin: 0;
	font-size: clamp(1.65rem, 2.3vw, 2.15rem);
}

.single-post .lo-related-posts .lo-template-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.single-post .lo-related-post-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0;
	overflow: hidden;
	border-radius: 12px;
}

.single-post .lo-related-post-card .lo-post-card__media {
	height: 180px;
	min-height: 180px;
	overflow: hidden;
}

.single-post .lo-related-post-card .lo-post-card__image,
.single-post .lo-related-post-card .lo-post-card__image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-post .lo-related-post-card .lo-post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.single-post .lo-related-post-card .lo-post-card__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.single-post .lo-related-post-card .lo-post-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.single-post .lo-related-post-card .lo-post-card__link {
	margin-top: auto;
	white-space: nowrap;
}

.single-post .lo-comments {
	padding: 52px 0 0;
	background: transparent;
	border-top: 0;
}

.single-post .lo-comments > .lo-container-small {
	width: min(100%, var(--lo-content-width));
}

@media (max-width: 1024px) {
	.lo-single-grid {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
		gap: 24px;
	}

	.single-post .lo-single {
		padding: 32px 34px;
	}

	.single-post .lo-single__title {
		font-size: clamp(1.85rem, 3.5vw, 2.35rem);
		line-height: 1.08;
	}

	.lo-single-sidebar .lo-blog-popular-post {
		grid-template-columns: 62px minmax(0, 1fr);
	}
}

@media (max-width: 899px) {
	.lo-single-grid {
		grid-template-columns: 1fr;
	}

	.lo-single-sidebar-wrap {
		margin-top: 8px;
	}

	.lo-single-sidebar-wrap .lo-single-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lo-single-sidebar .lo-blog-sidebar__search,
	.lo-single-sidebar .lo-blog-sidebar-cta,
	.lo-single-sidebar .lo-ad-slot--single_sidebar {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.single-post .lo-single-main {
		padding-bottom: 48px;
	}

	.lo-single-page {
		padding-top: 18px;
	}

	.lo-single-breadcrumbs {
		margin-bottom: 16px;
	}

	.lo-single-breadcrumbs__nav ol {
		font-size: 0.72rem;
	}

	.single-post .lo-single {
		padding: 24px;
		border-radius: 11px;
	}

	.single-post .lo-single__header {
		gap: 13px;
		margin-bottom: 24px;
	}

	.single-post .lo-single__title {
		font-size: clamp(1.65rem, 8vw, 2.1rem);
		line-height: 1.1;
	}

	.single-post .lo-single__lead,
	.single-post .lo-single__content {
		font-size: 1rem;
	}

	.single-post .lo-single__meta-item + .lo-single__meta-item::before {
		display: none;
	}

	.single-post .lo-single__thumbnail {
		margin-bottom: 26px;
	}

	.single-post .lo-single__thumbnail--fallback {
		min-height: 220px;
	}

	.single-post .lo-single-toc {
		width: 100%;
		max-width: 100%;
		padding: 22px;
		overflow: visible;
	}

	.single-post .lo-toc-list__item--level-3 {
		margin-left: 14px;
	}

	.single-post .lo-toc-list__item--level-4 {
		margin-left: 28px;
	}

	.single-post .lo-single__content h2 {
		font-size: 1.55rem;
	}

	.single-post .lo-single__content h3 {
		font-size: 1.25rem;
	}

	.single-post .lo-post-navigation .nav-links,
	.single-post .lo-related-posts .lo-template-grid,
	.lo-single-sidebar-wrap .lo-single-sidebar {
		grid-template-columns: 1fr;
	}

	.single-post .lo-post-navigation .nav-next {
		text-align: left;
	}

	.single-post .lo-single-author {
		grid-template-columns: 1fr;
	}

	.single-post .lo-related-posts {
		margin-top: 38px;
	}

	.single-post .lo-related-post-card .lo-post-card__media {
		height: 210px;
	}
}

@media (max-width: 430px) {
	.single-post .lo-single {
		padding: 20px;
	}

	.single-post .lo-single__title {
		font-size: clamp(1.55rem, 7.8vw, 1.95rem);
	}

	.single-post .lo-single-toc {
		padding: 19px;
	}

	.lo-single__tags,
	.lo-single__share {
		align-items: flex-start;
		flex-direction: column;
	}

	.single-post .lo-single-cta .lo-cta__inner,
	.single-post .lo-single-author {
		padding: 22px;
	}
}

.lo-download-archive__summary:focus-visible,
.lo-faq-card__question:focus-visible {
	background: var(--lo-color-primary-soft);
	box-shadow: inset 0 0 0 2px rgb(22 163 74 / 24%);
}

.entry-content,
.page-content,
.post-content,
.lo-single__content,
.lo-page__content {
	--lo-content-gap: var(--lo-space-5);

	color: var(--lo-color-muted);
	line-height: var(--lo-line-height-relaxed);
}

.entry-content > *,
.page-content > *,
.post-content > *,
.lo-single__content > *,
.lo-page__content > * {
	margin-top: 0;
	margin-bottom: var(--lo-content-gap);
}

.entry-content > :last-child,
.page-content > :last-child,
.post-content > :last-child,
.lo-single__content > :last-child,
.lo-page__content > :last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.lo-single__content h2,
.lo-single__content h3,
.lo-single__content h4,
.lo-single__content h5,
.lo-single__content h6,
.lo-page__content h2,
.lo-page__content h3,
.lo-page__content h4,
.lo-page__content h5,
.lo-page__content h6 {
	margin-top: var(--lo-space-10);
	margin-bottom: var(--lo-space-4);
	color: var(--lo-color-text);
	line-height: var(--lo-line-height-tight);
}

.entry-content h5,
.page-content h5,
.post-content h5,
.lo-single__content h5,
.lo-page__content h5 {
	font-size: var(--lo-font-size-md);
}

.entry-content h6,
.page-content h6,
.post-content h6,
.lo-single__content h6,
.lo-page__content h6 {
	font-size: var(--lo-font-size-base);
	letter-spacing: 0;
	text-transform: uppercase;
}

.entry-content p,
.page-content p,
.post-content p,
.lo-single__content p,
.lo-page__content p {
	line-height: var(--lo-line-height-relaxed);
}

.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol,
.post-content ul,
.post-content ol,
.lo-single__content ul,
.lo-single__content ol,
.lo-page__content ul,
.lo-page__content ol {
	padding-left: var(--lo-space-6);
	margin-top: 0;
	margin-bottom: var(--lo-content-gap);
}

.entry-content li + li,
.page-content li + li,
.post-content li + li,
.lo-single__content li + li,
.lo-page__content li + li {
	margin-top: var(--lo-space-2);
}

.entry-content li > ul,
.entry-content li > ol,
.page-content li > ul,
.page-content li > ol,
.post-content li > ul,
.post-content li > ol,
.lo-single__content li > ul,
.lo-single__content li > ol,
.lo-page__content li > ul,
.lo-page__content li > ol {
	margin-top: var(--lo-space-2);
	margin-bottom: 0;
}

.entry-content a:not(.lo-button):not(.wp-block-button__link),
.page-content a:not(.lo-button):not(.wp-block-button__link),
.post-content a:not(.lo-button):not(.wp-block-button__link),
.lo-single__content a:not(.lo-button):not(.wp-block-button__link),
.lo-page__content a:not(.lo-button):not(.wp-block-button__link) {
	color: var(--lo-color-primary);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

.entry-content a:not(.lo-button):not(.wp-block-button__link):hover,
.page-content a:not(.lo-button):not(.wp-block-button__link):hover,
.post-content a:not(.lo-button):not(.wp-block-button__link):hover,
.lo-single__content a:not(.lo-button):not(.wp-block-button__link):hover,
.lo-page__content a:not(.lo-button):not(.wp-block-button__link):hover {
	color: var(--lo-color-primary-dark);
}

.entry-content a:not(.lo-button):not(.wp-block-button__link):focus-visible,
.page-content a:not(.lo-button):not(.wp-block-button__link):focus-visible,
.post-content a:not(.lo-button):not(.wp-block-button__link):focus-visible,
.lo-single__content a:not(.lo-button):not(.wp-block-button__link):focus-visible,
.lo-page__content a:not(.lo-button):not(.wp-block-button__link):focus-visible {
	border-radius: var(--lo-radius-small);
}

.entry-content figure,
.entry-content .wp-caption,
.page-content figure,
.page-content .wp-caption,
.post-content figure,
.post-content .wp-caption,
.lo-single__content figure,
.lo-single__content .wp-caption,
.lo-page__content figure,
.lo-page__content .wp-caption {
	max-width: 100%;
	margin: var(--lo-space-8) 0;
}

.entry-content figure img,
.entry-content .wp-caption img,
.page-content figure img,
.page-content .wp-caption img,
.post-content figure img,
.post-content .wp-caption img,
.lo-single__content figure img,
.lo-single__content .wp-caption img,
.lo-page__content figure img,
.lo-page__content .wp-caption img {
	display: block;
	max-width: 100%;
	height: auto;
}

.entry-content figcaption,
.entry-content .wp-caption-text,
.page-content figcaption,
.page-content .wp-caption-text,
.post-content figcaption,
.post-content .wp-caption-text,
.lo-single__content figcaption,
.lo-single__content .wp-caption-text,
.lo-page__content figcaption,
.lo-page__content .wp-caption-text {
	margin-top: var(--lo-space-2);
	color: var(--lo-color-muted);
	font-size: var(--lo-font-size-sm);
	line-height: var(--lo-line-height-base);
	text-align: center;
}

.entry-content .aligncenter,
.page-content .aligncenter,
.post-content .aligncenter,
.lo-single__content .aligncenter,
.lo-page__content .aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.entry-content .alignleft,
.page-content .alignleft,
.post-content .alignleft,
.lo-single__content .alignleft,
.lo-page__content .alignleft {
	float: left;
	max-width: min(50%, 320px);
	margin: var(--lo-space-2) var(--lo-space-6) var(--lo-space-4) 0;
}

.entry-content .alignright,
.page-content .alignright,
.post-content .alignright,
.lo-single__content .alignright,
.lo-page__content .alignright {
	float: right;
	max-width: min(50%, 320px);
	margin: var(--lo-space-2) 0 var(--lo-space-4) var(--lo-space-6);
}

.entry-content table,
.page-content table,
.post-content table,
.lo-single__content table,
.lo-page__content table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--lo-font-size-sm);
}

.entry-content th,
.entry-content td,
.page-content th,
.page-content td,
.post-content th,
.post-content td,
.lo-single__content th,
.lo-single__content td,
.lo-page__content th,
.lo-page__content td {
	padding: var(--lo-space-3) var(--lo-space-4);
	text-align: left;
	vertical-align: top;
	border: 1px solid var(--lo-color-border);
}

.entry-content th,
.page-content th,
.post-content th,
.lo-single__content th,
.lo-page__content th {
	color: var(--lo-color-text);
	font-weight: 700;
	background: var(--lo-color-background-light);
}

.entry-content blockquote,
.entry-content .wp-block-quote,
.page-content blockquote,
.page-content .wp-block-quote,
.post-content blockquote,
.post-content .wp-block-quote,
.lo-single__content blockquote,
.lo-single__content .wp-block-quote,
.lo-page__content blockquote,
.lo-page__content .wp-block-quote {
	padding: var(--lo-space-4) 0 var(--lo-space-4) var(--lo-space-5);
	margin: var(--lo-space-8) 0;
	color: var(--lo-color-text);
	border-left: 4px solid var(--lo-color-primary);
}

.entry-content blockquote p:last-child,
.entry-content .wp-block-quote p:last-child,
.page-content blockquote p:last-child,
.page-content .wp-block-quote p:last-child,
.post-content blockquote p:last-child,
.post-content .wp-block-quote p:last-child,
.lo-single__content blockquote p:last-child,
.lo-single__content .wp-block-quote p:last-child,
.lo-page__content blockquote p:last-child,
.lo-page__content .wp-block-quote p:last-child {
	margin-bottom: 0;
}

.entry-content cite,
.page-content cite,
.post-content cite,
.lo-single__content cite,
.lo-page__content cite {
	display: block;
	margin-top: var(--lo-space-3);
	color: var(--lo-color-muted);
	font-size: var(--lo-font-size-sm);
	font-style: normal;
}

.entry-content .wp-block-pullquote,
.page-content .wp-block-pullquote,
.post-content .wp-block-pullquote,
.lo-single__content .wp-block-pullquote,
.lo-page__content .wp-block-pullquote {
	padding: var(--lo-space-8) 0;
	text-align: center;
	border-top: 1px solid var(--lo-color-border);
	border-bottom: 1px solid var(--lo-color-border);
}

.entry-content .wp-block-pullquote blockquote,
.page-content .wp-block-pullquote blockquote,
.post-content .wp-block-pullquote blockquote,
.lo-single__content .wp-block-pullquote blockquote,
.lo-page__content .wp-block-pullquote blockquote {
	padding: 0;
	margin: 0;
	border-left: 0;
}

.entry-content code,
.entry-content kbd,
.entry-content samp,
.page-content code,
.page-content kbd,
.page-content samp,
.post-content code,
.post-content kbd,
.post-content samp,
.lo-single__content code,
.lo-single__content kbd,
.lo-single__content samp,
.lo-page__content code,
.lo-page__content kbd,
.lo-page__content samp {
	padding: 0.15em 0.38em;
	color: var(--lo-color-text);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
	font-size: 0.9em;
	background: var(--lo-color-background-light);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius-small);
}

.entry-content pre,
.entry-content .wp-block-code,
.entry-content .wp-block-preformatted,
.page-content pre,
.page-content .wp-block-code,
.page-content .wp-block-preformatted,
.post-content pre,
.post-content .wp-block-code,
.post-content .wp-block-preformatted,
.lo-single__content pre,
.lo-single__content .wp-block-code,
.lo-single__content .wp-block-preformatted,
.lo-page__content pre,
.lo-page__content .wp-block-code,
.lo-page__content .wp-block-preformatted {
	max-width: 100%;
	padding: var(--lo-space-5);
	overflow-x: auto;
	color: var(--lo-color-text);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
	font-size: var(--lo-font-size-sm);
	line-height: var(--lo-line-height-base);
	background: var(--lo-color-background-light);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius);
}

.entry-content pre code,
.entry-content .wp-block-code code,
.page-content pre code,
.page-content .wp-block-code code,
.post-content pre code,
.post-content .wp-block-code code,
.lo-single__content pre code,
.lo-single__content .wp-block-code code,
.lo-page__content pre code,
.lo-page__content .wp-block-code code {
	padding: 0;
	background: transparent;
	border: 0;
}

.entry-content .wp-block-image,
.entry-content .wp-block-gallery,
.entry-content .wp-block-table,
.entry-content .wp-block-embed,
.entry-content .wp-block-video,
.entry-content .wp-block-audio,
.page-content .wp-block-image,
.page-content .wp-block-gallery,
.page-content .wp-block-table,
.page-content .wp-block-embed,
.page-content .wp-block-video,
.page-content .wp-block-audio,
.post-content .wp-block-image,
.post-content .wp-block-gallery,
.post-content .wp-block-table,
.post-content .wp-block-embed,
.post-content .wp-block-video,
.post-content .wp-block-audio,
.lo-single__content .wp-block-image,
.lo-single__content .wp-block-gallery,
.lo-single__content .wp-block-table,
.lo-single__content .wp-block-embed,
.lo-single__content .wp-block-video,
.lo-single__content .wp-block-audio,
.lo-page__content .wp-block-image,
.lo-page__content .wp-block-gallery,
.lo-page__content .wp-block-table,
.lo-page__content .wp-block-embed,
.lo-page__content .wp-block-video,
.lo-page__content .wp-block-audio {
	margin-top: var(--lo-space-8);
	margin-bottom: var(--lo-space-8);
}

.entry-content .wp-block-gallery,
.page-content .wp-block-gallery,
.post-content .wp-block-gallery,
.lo-single__content .wp-block-gallery,
.lo-page__content .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
	gap: var(--lo-space-4);
}

.entry-content .wp-block-gallery figure,
.page-content .wp-block-gallery figure,
.post-content .wp-block-gallery figure,
.lo-single__content .wp-block-gallery figure,
.lo-page__content .wp-block-gallery figure {
	margin: 0;
}

.entry-content .wp-block-table,
.page-content .wp-block-table,
.post-content .wp-block-table,
.lo-single__content .wp-block-table,
.lo-page__content .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
}

.entry-content .wp-block-table table,
.page-content .wp-block-table table,
.post-content .wp-block-table table,
.lo-single__content .wp-block-table table,
.lo-page__content .wp-block-table table {
	margin-bottom: 0;
}

.entry-content .wp-block-separator,
.page-content .wp-block-separator,
.post-content .wp-block-separator,
.lo-single__content .wp-block-separator,
.lo-page__content .wp-block-separator {
	height: 1px;
	margin: var(--lo-space-10) 0;
	background: var(--lo-color-border);
	border: 0;
}

.entry-content .wp-block-buttons,
.page-content .wp-block-buttons,
.post-content .wp-block-buttons,
.lo-single__content .wp-block-buttons,
.lo-page__content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lo-space-3);
	align-items: center;
}

.entry-content .wp-block-button__link,
.page-content .wp-block-button__link,
.post-content .wp-block-button__link,
.lo-single__content .wp-block-button__link,
.lo-page__content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: var(--lo-space-3) var(--lo-space-5);
	color: var(--lo-color-white);
	font-weight: 700;
	line-height: var(--lo-line-height-heading);
	text-decoration: none;
	background: var(--lo-color-primary);
	border-radius: var(--lo-radius-small);
}

.entry-content .wp-block-button__link:hover,
.page-content .wp-block-button__link:hover,
.post-content .wp-block-button__link:hover,
.lo-single__content .wp-block-button__link:hover,
.lo-page__content .wp-block-button__link:hover {
	color: var(--lo-color-white);
	background: var(--lo-color-primary-dark);
}

.entry-content .wp-block-columns,
.page-content .wp-block-columns,
.post-content .wp-block-columns,
.lo-single__content .wp-block-columns,
.lo-page__content .wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lo-space-6);
}

.entry-content .wp-block-column,
.page-content .wp-block-column,
.post-content .wp-block-column,
.lo-single__content .wp-block-column,
.lo-page__content .wp-block-column {
	flex: 1 1 0;
	min-width: 0;
}

.entry-content .wp-block-file,
.page-content .wp-block-file,
.post-content .wp-block-file,
.lo-single__content .wp-block-file,
.lo-page__content .wp-block-file {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lo-space-3);
	align-items: center;
	padding: var(--lo-space-4);
	background: var(--lo-color-background-light);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius);
}

.entry-content .wp-block-file a:not(.wp-block-file__button),
.page-content .wp-block-file a:not(.wp-block-file__button),
.post-content .wp-block-file a:not(.wp-block-file__button),
.lo-single__content .wp-block-file a:not(.wp-block-file__button),
.lo-page__content .wp-block-file a:not(.wp-block-file__button) {
	overflow-wrap: anywhere;
}

.entry-content .wp-block-file__button,
.page-content .wp-block-file__button,
.post-content .wp-block-file__button,
.lo-single__content .wp-block-file__button,
.lo-page__content .wp-block-file__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: var(--lo-space-2) var(--lo-space-4);
	color: var(--lo-color-white);
	font-weight: 700;
	text-decoration: none;
	background: var(--lo-color-primary);
	border-radius: var(--lo-radius-small);
}

.entry-content .wp-block-embed iframe,
.page-content .wp-block-embed iframe,
.post-content .wp-block-embed iframe,
.lo-single__content .wp-block-embed iframe,
.lo-page__content .wp-block-embed iframe,
.entry-content .wp-block-video video,
.page-content .wp-block-video video,
.post-content .wp-block-video video,
.lo-single__content .wp-block-video video,
.lo-page__content .wp-block-video video,
.entry-content .wp-block-audio audio,
.page-content .wp-block-audio audio,
.post-content .wp-block-audio audio,
.lo-single__content .wp-block-audio audio,
.lo-page__content .wp-block-audio audio {
	width: 100%;
	max-width: 100%;
}

.entry-content details,
.page-content details,
.post-content details,
.lo-single__content details,
.lo-page__content details {
	padding: var(--lo-space-4);
	background: var(--lo-color-white);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius);
}

.entry-content summary,
.page-content summary,
.post-content summary,
.lo-single__content summary,
.lo-page__content summary {
	color: var(--lo-color-text);
	font-weight: 700;
	cursor: pointer;
}

.lo-search-form,
:is(.lo-comments__form, .comment-form, .wpcf7 form, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) {
	width: 100%;
}

:is(.lo-comments__form, .comment-form, .wpcf7 form) {
	display: grid;
	gap: var(--lo-space-4);
}

:is(.comment-form, .wpcf7 form, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) p {
	margin-top: 0;
	margin-bottom: var(--lo-space-4);
}

:is(.comment-form, .wpcf7 form, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) p:last-child {
	margin-bottom: 0;
}

:is(.lo-comments__form, .comment-form, .wpcf7 form, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) label {
	display: inline-block;
	margin-bottom: var(--lo-space-2);
	color: var(--lo-color-text);
	font-weight: 700;
	line-height: var(--lo-line-height-heading);
}

.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

:is(.lo-search-form, .lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]), textarea, select) {
	width: 100%;
	min-height: 48px;
	padding: 11px 14px;
	color: var(--lo-color-text);
	line-height: 1.45;
	background: var(--lo-color-white);
	border: 1px solid var(--lo-color-border-strong);
	border-radius: var(--lo-radius-medium);
	box-shadow: none;
	transition:
		background-color var(--lo-transition-base),
		border-color var(--lo-transition-base),
		box-shadow var(--lo-transition-base),
		color var(--lo-transition-base);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) textarea {
	min-height: 150px;
	resize: vertical;
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) select {
	padding-right: var(--lo-space-10);
	cursor: pointer;
}

:is(.lo-search-form, .lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input, textarea)::placeholder {
	color: rgb(75 85 99 / 70%);
	opacity: 1;
}

:is(.lo-search-form, .lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]), textarea, select):hover {
	border-color: var(--lo-color-text-muted);
}

:is(.lo-search-form, .lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input, textarea, select):focus,
:is(.lo-search-form, .lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input, textarea, select):focus-visible {
	border-color: var(--lo-color-primary);
	outline: var(--lo-focus-ring);
	outline-offset: 0;
	box-shadow: 0 0 0 4px rgb(22 163 74 / 10%);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input, textarea)[readonly] {
	background: var(--lo-color-surface-light);
}

:is(.lo-search-form, .lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input, textarea, select, button):disabled {
	color: var(--lo-color-muted);
	cursor: not-allowed;
	background: var(--lo-color-disabled);
	border-color: var(--lo-color-border);
	opacity: 0.72;
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input, textarea, select)[aria-invalid="true"],
.wpcf7 .wpcf7-not-valid {
	border-color: var(--lo-color-danger);
	box-shadow: 0 0 0 4px rgb(220 38 38 / 10%);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) .is-success,
:is(.lo-comments__form, .comment-form, .wpcf7) input[aria-invalid="false"].is-valid {
	border-color: var(--lo-color-success);
	box-shadow: 0 0 0 4px rgb(22 163 74 / 10%);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input[type="checkbox"], input[type="radio"]) {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	margin: 0 var(--lo-space-2) 0 0;
	accent-color: var(--lo-color-primary);
	cursor: pointer;
}

.wpcf7-list-item,
.comment-form-cookies-consent,
.wpcf7-list-item label,
.comment-form-cookies-consent label {
	display: inline-flex;
	gap: var(--lo-space-2);
	align-items: flex-start;
}

.wpcf7-list-item,
.comment-form-cookies-consent {
	margin: 0 var(--lo-space-4) var(--lo-space-2) 0;
	color: var(--lo-color-muted);
	line-height: var(--lo-line-height-base);
}

.wpcf7-list-item label,
.comment-form-cookies-consent label {
	margin: 0;
	font-weight: 500;
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) input[type="file"] {
	width: 100%;
	padding: var(--lo-space-3);
	color: var(--lo-color-muted);
	background: var(--lo-color-surface-light);
	border: 1px dashed var(--lo-color-border-strong);
	border-radius: var(--lo-radius-medium);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input[type="submit"], button[type="submit"]) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: var(--lo-space-3) var(--lo-space-5);
	color: var(--lo-color-white);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: var(--lo-color-primary);
	border: 1px solid var(--lo-color-primary);
	border-radius: var(--lo-radius-small);
	transition:
		background-color var(--lo-transition-base),
		border-color var(--lo-transition-base),
		box-shadow var(--lo-transition-base),
		color var(--lo-transition-base),
		transform var(--lo-transition-base);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input[type="submit"], button[type="submit"]):hover {
	color: var(--lo-color-white);
	background: var(--lo-color-primary-dark);
	border-color: var(--lo-color-primary-dark);
	box-shadow: var(--lo-shadow-card);
	transform: translateY(-1px);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) :is(input[type="submit"], button[type="submit"]):focus-visible {
	outline: var(--lo-focus-ring);
	outline-offset: var(--lo-space-1);
	box-shadow: 0 0 0 4px rgb(22 163 74 / 18%);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) fieldset {
	padding: var(--lo-space-5);
	margin: 0 0 var(--lo-space-5);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius);
}

:is(.lo-comments__form, .comment-form, .wpcf7, .entry-content form, .page-content form, .post-content form, .lo-single__content form, .lo-page__content form) legend {
	padding: 0 var(--lo-space-2);
	color: var(--lo-color-text);
	font-weight: 700;
}

:is(.wpcf7-not-valid-tip, .lo-form-error, .form-error, .comment-form .error) {
	display: block;
	margin-top: var(--lo-space-2);
	color: var(--lo-color-danger);
	font-size: var(--lo-font-size-sm);
	font-weight: 600;
	line-height: var(--lo-line-height-heading);
}

:is(.wpcf7 form .wpcf7-response-output, .lo-form-message, .lo-form-error-message, .lo-form-success-message) {
	padding: var(--lo-space-4);
	margin: var(--lo-space-4) 0 0;
	color: var(--lo-color-text);
	background: var(--lo-color-surface-light);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius-medium);
}

:is(.wpcf7 form.invalid, .wpcf7 form.unaccepted, .wpcf7 form.payment-required) .wpcf7-response-output,
.lo-form-error-message {
	color: #991b1b;
	background: var(--lo-color-danger-soft);
	border-color: rgb(220 38 38 / 35%);
}

.wpcf7 form.sent .wpcf7-response-output,
.lo-form-success-message {
	color: #14532d;
	background: var(--lo-color-success-soft);
	border-color: rgb(22 163 74 / 35%);
}

.wpcf7-spinner {
	margin: 0 0 0 var(--lo-space-3);
	vertical-align: middle;
}

@media (max-width: 720px) {
	.site-header {
		position: relative;
		z-index: var(--lo-z-index-modal);
		overflow: visible;
	}

	.site-header__inner {
		align-items: center;
		flex-direction: row;
		gap: var(--lo-space-3);
		min-height: 64px;
	}

	.site-header__actions {
		position: static;
		gap: 0;
		flex-shrink: 0;
		margin-left: auto;
	}

	.site-branding {
		min-width: 0;
		max-width: calc(100% - 56px);
	}

	.site-branding .custom-logo-link,
	.site-title {
		max-width: min(62vw, 260px);
		overflow-wrap: anywhere;
	}

	.site-branding .custom-logo {
		max-width: 100%;
	}

	.site-header .site-description,
	.site-header .site-branding__version,
	.site-header .language-switcher {
		display: none;
	}

	.site-navigation-wrap {
		position: static;
	}

	.site-navigation--primary {
		display: none;
	}

	.site-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.site-navigation--mobile {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: var(--lo-z-index-modal);
		display: block;
		width: 100%;
		max-width: 100vw;
		max-height: calc(100vh - 64px);
		box-sizing: border-box;
		padding: var(--lo-space-2) 0 var(--lo-space-3);
		overflow-x: hidden;
		overflow-y: auto;
		background: var(--lo-color-surface);
		border: 1px solid var(--lo-color-border);
		border-right: 0;
		border-left: 0;
		border-radius: 0 0 var(--lo-radius-large) var(--lo-radius-large);
		box-shadow:
			var(--lo-shadow-soft),
			0 100vh 0 100vh rgb(15 23 42 / 25%);
	}

	.site-navigation--mobile[hidden] {
		display: none;
	}

	.site-menu--mobile {
		display: flex;
		flex-direction: column;
		gap: 4px;
		width: 100%;
		padding: var(--lo-space-2) var(--lo-container-gutter-mobile) var(--lo-space-3);
		margin: 0;
		list-style: none;
	}

	.site-menu--mobile .menu-item {
		margin: 0;
	}

	.site-menu--mobile a {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 44px;
		box-sizing: border-box;
		padding: 10px 14px;
		color: var(--lo-color-text);
		font-weight: 600;
		line-height: var(--lo-line-height-heading);
		text-decoration: none;
		border-radius: var(--lo-radius-medium);
		overflow: hidden;
		transition: color 0.2s ease;
	}

	.site-menu--mobile a:hover,
	.site-menu--mobile a:focus,
	.site-menu--mobile a:focus-visible {
		color: var(--lo-color-primary);
		background: transparent;
		box-shadow: none;
	}

	.site-menu--mobile .current-menu-item > a,
	.site-menu--mobile .current_page_item > a,
	.site-menu--mobile a[aria-current="page"] {
		color: var(--lo-color-primary);
		font-weight: 700;
		background: transparent;
		box-shadow: none;
	}

	.site-menu--mobile .current-menu-item > a::before,
	.site-menu--mobile .current_page_item > a::before,
	.site-menu--mobile a[aria-current="page"]::before {
		position: absolute;
		top: 10px;
		bottom: 10px;
		left: 0;
		width: 3px;
		background: var(--lo-color-primary);
		border-radius: var(--lo-radius-pill);
		content: "";
	}

	.site-menu--mobile .current-menu-parent > a,
	.site-menu--mobile .current-menu-ancestor > a,
	.site-menu--mobile .current_page_parent > a,
	.site-menu--mobile .current_page_ancestor > a {
		color: var(--lo-color-primary);
		background: transparent;
	}

	.site-menu--mobile .sub-menu {
		display: flex;
		flex-direction: column;
		gap: var(--lo-space-1);
		padding: var(--lo-space-1) 0 var(--lo-space-1) var(--lo-space-4);
		margin: 0;
		list-style: none;
	}

	.site-menu--mobile .sub-menu a {
		min-height: 40px;
		padding: 9px 12px;
		color: var(--lo-color-muted);
		font-size: var(--lo-font-size-sm);
		font-weight: 500;
	}
}

@media (max-width: 720px) {
	.site-header .language-switcher {
		display: block;
		flex: 0 0 auto;
	}

	.site-header .language-switcher__list {
		gap: 0.25rem;
	}

	.site-header .language-switcher__item:not(.is-current) {
		display: block;
	}

	.site-header .language-switcher__link {
		min-width: 40px;
		min-height: 40px;
		padding-inline: 0.4rem;
	}
}

@media (min-width: 721px) and (max-width: 900px) {
	.lo-grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lo-template-grid,
	.lo-home-blog__grid {
		gap: var(--lo-space-5);
	}
}

@media (min-width: 721px) and (max-width: 1024px) {
	.blog .lo-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.lo-single__layout {
		align-items: start;
	}

	.lo-single__content {
		min-width: 0;
	}

	.lo-single-toc {
		position: static;
		top: auto;
		z-index: auto;
		align-self: start;
		box-sizing: border-box;
		height: auto;
		max-height: none;
		overflow: visible;
	}

	.lo-single-toc .lo-toc-list {
		max-width: 100%;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 899px) {
	.lo-single-toc {
		position: static;
		z-index: auto;
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: none;
		overflow: visible;
	}
}

@media (max-width: 720px) {
	body {
		overflow-x: hidden;
	}

	.entry-content,
	.entry-summary,
	.page-content,
	.post-content,
	.lo-single__content,
	.lo-page__content {
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.blog .lo-template-grid,
	.archive .lo-template-grid,
	.category .lo-template-grid,
	.tag .lo-template-grid,
	.author .lo-template-grid,
	.search .lo-template-grid,
	.blog .lo-blog-grid {
		grid-template-columns: 1fr;
	}

	.blog .lo-post-card,
	.archive .lo-post-card,
	.category .lo-post-card,
	.tag .lo-post-card,
	.author .lo-post-card,
	.search .lo-post-card {
		width: 100%;
		max-width: 100%;
	}

	.entry-content iframe,
	.entry-content video,
	.entry-content embed,
	.entry-content object,
	.page-content iframe,
	.page-content video,
	.page-content embed,
	.page-content object,
	.post-content iframe,
	.post-content video,
	.post-content embed,
	.post-content object,
	.lo-page__content iframe,
	.lo-page__content video,
	.lo-page__content embed,
	.lo-page__content object,
	.lo-single__content iframe,
	.lo-single__content video,
	.lo-single__content embed,
	.lo-single__content object {
		max-width: 100%;
	}

	.entry-content table,
	.page-content table,
	.post-content table,
	.lo-page__content table,
	.lo-single__content table {
		display: block;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
	}

	.entry-content .alignwide,
	.entry-content .alignfull,
	.page-content .alignwide,
	.page-content .alignfull,
	.post-content .alignwide,
	.post-content .alignfull,
	.lo-page__content .alignwide,
	.lo-page__content .alignfull,
	.lo-single__content .alignwide,
	.lo-single__content .alignfull {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.entry-content .alignleft,
	.entry-content .alignright,
	.page-content .alignleft,
	.page-content .alignright,
	.post-content .alignleft,
	.post-content .alignright,
	.lo-single__content .alignleft,
	.lo-single__content .alignright,
	.lo-page__content .alignleft,
	.lo-page__content .alignright {
		float: none;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.entry-content .wp-block-columns,
	.page-content .wp-block-columns,
	.post-content .wp-block-columns,
	.lo-single__content .wp-block-columns,
	.lo-page__content .wp-block-columns {
		flex-direction: column;
		gap: var(--lo-space-5);
	}

	.entry-content .wp-block-button,
	.entry-content .wp-block-button__link,
	.page-content .wp-block-button,
	.page-content .wp-block-button__link,
	.post-content .wp-block-button,
	.post-content .wp-block-button__link,
	.lo-single__content .wp-block-button,
	.lo-single__content .wp-block-button__link,
	.lo-page__content .wp-block-button,
	.lo-page__content .wp-block-button__link {
		width: 100%;
	}

	.entry-content .wp-block-file,
	.page-content .wp-block-file,
	.post-content .wp-block-file,
	.lo-single__content .wp-block-file,
	.lo-page__content .wp-block-file {
		align-items: stretch;
		flex-direction: column;
	}

	.entry-content .wp-block-file__button,
	.page-content .wp-block-file__button,
	.post-content .wp-block-file__button,
	.lo-single__content .wp-block-file__button,
	.lo-page__content .wp-block-file__button {
		width: 100%;
	}

	.lo-search-form,
	.lo-comments__form,
	.comment-form,
	.wpcf7 form,
	.entry-content form,
	.page-content form,
	.post-content form,
	.lo-single__content form,
	.lo-page__content form {
		max-width: 100%;
	}

	.wpcf7-list-item,
	.comment-form-cookies-consent {
		display: flex;
		width: 100%;
		margin-right: 0;
	}

	.lo-comments__form input[type="submit"],
	.lo-comments__form button[type="submit"],
	.comment-form input[type="submit"],
	.comment-form button[type="submit"],
	.wpcf7 input[type="submit"],
	.wpcf7 button[type="submit"],
	.entry-content form input[type="submit"],
	.entry-content form button[type="submit"],
	.page-content form input[type="submit"],
	.page-content form button[type="submit"],
	.post-content form input[type="submit"],
	.post-content form button[type="submit"],
	.lo-single__content form input[type="submit"],
	.lo-single__content form button[type="submit"],
	.lo-page__content form input[type="submit"],
	.lo-page__content form button[type="submit"] {
		width: 100%;
	}

	.lo-button {
		max-width: 100%;
		line-height: var(--lo-line-height-heading);
		white-space: normal;
	}

	.lo-download-platform__actions,
	.lo-version-card__actions,
	.lo-error-card__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.lo-download-platform__actions .lo-button,
	.lo-version-card__actions .lo-button,
	.lo-error-card__actions .lo-button {
		width: 100%;
	}

	.lo-download-platform__variants li,
	.lo-badge,
	.lo-card__badge {
		max-width: 100%;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 430px) {
	.lo-heading-xl {
		font-size: clamp(2rem, 10vw, 2.25rem);
	}

	.lo-heading-lg {
		font-size: clamp(1.75rem, 8.5vw, 2rem);
	}

	.lo-heading-md,
	h2 {
		font-size: clamp(1.375rem, 7vw, 1.5rem);
	}

	.lo-lead {
		font-size: var(--lo-font-size-base);
	}

	.lo-section,
	.lo-hero {
		padding-block: var(--lo-space-10);
	}

	.entry-content figure,
	.entry-content .wp-caption,
	.page-content figure,
	.page-content .wp-caption,
	.post-content figure,
	.post-content .wp-caption,
	.lo-single__content figure,
	.lo-single__content .wp-caption,
	.lo-page__content figure,
	.lo-page__content .wp-caption,
	.entry-content blockquote,
	.entry-content .wp-block-quote,
	.page-content blockquote,
	.page-content .wp-block-quote,
	.post-content blockquote,
	.post-content .wp-block-quote,
	.lo-single__content blockquote,
	.lo-single__content .wp-block-quote,
	.lo-page__content blockquote,
	.lo-page__content .wp-block-quote {
		margin-block: var(--lo-space-6);
	}

	.lo-cta__inner,
	.lo-download-current,
	.lo-download-platform,
	.lo-download-archive__summary {
		padding: var(--lo-space-5);
	}

	.lo-download-archive__content {
		padding: 0 var(--lo-space-5) var(--lo-space-5);
	}
}

/* Etap 50: Homepage mockup implementation. */
.site-header {
	background: rgb(255 255 255 / 96%);
	border-bottom-color: #e8edf2;
}

.site-header__inner {
	width: min(100% - 80px, 1320px);
	min-height: 82px;
	align-items: center;
	padding-block: 0;
}

.site-branding {
	display: flex;
	align-items: center;
	line-height: 1;
}

.site-branding__identity {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
}

.site-branding__version {
	color: var(--lo-color-primary);
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

@media (min-width: 1025px) {
	.site-header .site-branding {
		padding-left: clamp(1.25rem, 1.8vw, 1.75rem);
	}
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.site-branding .custom-logo {
	display: block;
}

.site-title {
	display: inline-flex;
	align-items: center;
	color: #050816;
	font-size: 2rem;
	font-weight: 560;
	line-height: 1;
	letter-spacing: 0;
}

.site-footer__title {
	color: #050816;
	font-size: 2rem;
	font-weight: 650;
	letter-spacing: 0;
}

.site-header__actions {
	flex: 1;
	justify-content: flex-end;
	gap: clamp(0.65rem, 1.2vw, 1.25rem);
}

.site-navigation-wrap {
	flex: 0 1 auto;
	justify-content: flex-end;
}

.site-menu--primary {
	gap: clamp(1rem, 2vw, 2rem);
	align-items: center;
}

@media (min-width: 721px) {
	.site-navigation #site-primary-menu a {
		position: relative;
		padding: 0.55rem 0;
		color: #050816;
		font-size: 0.9375rem;
		font-weight: 500;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
	}

	.site-navigation #site-primary-menu > .current-menu-item > a,
	.site-navigation #site-primary-menu > .current_page_item > a,
	.site-navigation #site-primary-menu a[aria-current="page"] {
		color: #050816;
		background: transparent;
		box-shadow: none;
	}

	.site-navigation #site-primary-menu > .current-menu-item > a::before,
	.site-navigation #site-primary-menu > .current_page_item > a::before,
	.site-navigation #site-primary-menu a[aria-current="page"]::before {
		position: absolute;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 3px;
		background: #050816;
		border-radius: var(--lo-radius-pill);
		content: "";
	}

	.site-navigation #site-primary-menu a:hover,
	.site-navigation #site-primary-menu a:focus-visible {
		color: var(--lo-color-primary);
	}
}

.site-header .language-switcher {
	position: relative;
	flex: 0 0 auto;
}

.site-header .language-switcher__dropdown {
	position: relative;
}

.site-header .language-switcher__current {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: auto;
	min-width: 64px;
	min-height: 40px;
	padding: 0.45rem 0.7rem;
	color: #050816;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
	list-style: none;
	background: #fff;
	border: 1px solid #dfe6ee;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.2s ease;
}

.site-header .language-switcher__current::-webkit-details-marker {
	display: none;
}

.lo-language-flag {
	display: block;
	flex: 0 0 auto;
	width: 22px;
	max-width: none;
	height: auto;
	max-height: 16px;
	object-fit: contain;
	border: 1px solid #d1d5db;
	border-radius: 2px;
}

.site-header .language-switcher__current::after {
	display: none;
	content: none;
}

.site-header .language-switcher__current .language-switcher__code {
	flex: 0 0 auto;
	max-width: none;
	overflow: visible;
	text-overflow: clip;
	white-space: nowrap;
}

.site-header .language-switcher__current:hover,
.site-header .language-switcher__current:focus-visible,
.site-header .language-switcher__dropdown[open] .language-switcher__current {
	color: var(--lo-color-primary);
	background: transparent;
	box-shadow: none;
	outline: none;
}

.site-header .language-switcher__current:focus-visible {
	outline: var(--lo-focus-ring);
	outline-offset: 2px;
}

.site-header .language-switcher__list {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: calc(var(--lo-z-index-dropdown) + 2);
	display: none;
	min-width: 132px;
	max-width: calc(100vw - 2rem);
	margin: 0;
	padding: 0.45rem;
	list-style: none;
	background: #fff;
	border: 1px solid #dfe6ee;
	border-radius: 14px;
	box-shadow: 0 18px 45px rgb(15 23 42 / 14%);
}

.site-header .language-switcher__dropdown[open] > .language-switcher__list,
.site-header .language-switcher__dropdown:hover > .language-switcher__list,
.site-header .language-switcher__dropdown:focus-within > .language-switcher__list {
	display: grid;
	gap: 0.25rem;
}

.site-header .language-switcher__link {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 36px;
	padding: 0.45rem 0.55rem;
	color: #050816;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	border-radius: 10px;
	transition: color 0.2s ease;
}

.site-header .language-switcher__link:hover,
.site-header .language-switcher__link:focus-visible,
.site-header .language-switcher__link.is-current {
	color: var(--lo-color-primary);
	background: transparent;
	outline: none;
}

.lo-homepage-v2 {
	--lo-home-container: 1280px;
	--lo-home-gutter: clamp(1.25rem, 5vw, 4.75rem);
	--lo-home-green: #10a64a;
	--lo-home-text: #050816;
	--lo-home-muted: #475467;
	--lo-home-border: #e4e9ef;
	--lo-home-soft: #f6f8fa;
	--lo-home-shadow: 0 20px 55px rgb(15 23 42 / 8%);
	color: var(--lo-home-text);
	background: #fff;
}

.lo-home-container {
	width: min(100% - var(--lo-home-gutter), var(--lo-home-container));
	margin-inline: auto;
}

.lo-home-section-heading {
	margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.lo-home-section-heading--center {
	max-width: 680px;
	margin-inline: auto;
	text-align: center;
}

.lo-home-section-heading h2 {
	margin: 0;
	color: var(--lo-home-text);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	line-height: 1.16;
}

.lo-home-section-heading p {
	margin: 0.85rem 0 0;
	color: var(--lo-home-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.lo-home-eyebrow {
	margin: 0 0 0.8rem;
	color: var(--lo-home-green);
	font-size: 0.875rem;
	font-weight: 600;
}

.lo-home-button {
	display: inline-flex;
	gap: 0.55rem;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.9rem 1.35rem;
	color: var(--lo-home-text);
	font-size: 0.9375rem;
	font-weight: 560;
	line-height: 1;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 0.72rem;
	transition:
		color var(--lo-transition-base),
		background-color var(--lo-transition-base),
		border-color var(--lo-transition-base),
		box-shadow var(--lo-transition-base),
		transform var(--lo-transition-base);
}

.lo-home-button:hover,
.lo-home-button:focus-visible {
	transform: translateY(-1px);
}

.lo-home-button--dark {
	color: #fff;
	background: #050816;
	border-color: #050816;
	box-shadow: 0 14px 28px rgb(5 8 22 / 18%);
}

.lo-home-button--dark:hover,
.lo-home-button--dark:focus-visible {
	color: #fff;
	background: #111827;
	border-color: #111827;
}

.lo-home-button--outline {
	color: var(--lo-home-text);
	background: #fff;
	border-color: #cfd6df;
}

.lo-home-button--outline:hover,
.lo-home-button--outline:focus-visible {
	color: var(--lo-home-green);
	border-color: rgb(16 166 74 / 45%);
	box-shadow: 0 12px 28px rgb(15 23 42 / 8%);
}

.lo-home-inline-link {
	display: inline-flex;
	gap: 0.35rem;
	align-items: center;
	color: #05883a;
	font-size: 0.9375rem;
	font-weight: 800;
	text-decoration: none;
}

.lo-home-inline-link:hover,
.lo-home-inline-link:focus-visible {
	color: #046c31;
}

.lo-home-check {
	position: relative;
	display: inline-flex;
	width: 1.05rem;
	height: 1.05rem;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	color: var(--lo-home-green);
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.lo-home-check::before {
	width: 0.42rem;
	height: 0.22rem;
	border-bottom: 1.5px solid currentColor;
	border-left: 1.5px solid currentColor;
	content: "";
	transform: rotate(-45deg) translate(1px, -1px);
}

.lo-home-hero-v2 {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 6vw, 5.75rem) 0 clamp(2.25rem, 4vw, 3rem);
	background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.lo-home-hero-v2__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
	gap: clamp(2rem, 3.5vw, 3.5rem);
	align-items: center;
	min-height: 455px;
}

.lo-home-hero-v2__content {
	max-width: 600px;
}

.lo-home-hero-v2__title {
	max-width: 610px;
	margin: 0;
	color: #111827;
	font-size: clamp(2.45rem, 3.8vw, 3.45rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.015em;
}

.lo-home-hero-v2__text {
	max-width: 480px;
	margin-top: 1.45rem;
	color: #1f2937;
	font-size: 0.98rem;
	line-height: 1.72;
}

.lo-home-hero-v2__text p {
	margin: 0;
}

.lo-home-hero-v2__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.35rem;
	margin-top: 2rem;
}

.lo-home-hero-v2__features {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2.4rem;
	padding: 0;
	margin: 2.2rem 0 0;
	color: #344054;
	font-size: 0.9375rem;
	list-style: none;
}

.lo-home-hero-v2__features li {
	display: inline-flex;
	gap: 0.55rem;
	align-items: center;
}

.lo-home-hero-v2__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 440px;
}

.lo-home-hero-v2__orb {
	position: absolute;
	top: -1.6rem;
	right: -2.8rem;
	width: min(40vw, 580px);
	aspect-ratio: 1;
	background: #e2f5e9;
	border-radius: 50%;
}

.lo-home-hero-v2__orb::before {
	display: none;
	content: none;
}

.lo-home-hero-v2__orb::after {
	position: absolute;
	top: 70%;
	left: 7%;
	width: 21%;
	aspect-ratio: 1;
	background: #f0faf3;
	border-radius: 50%;
	content: "";
}

.lo-home-hero-v2__art {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.lo-home-hero-v2__image {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 660px);
	max-width: none;
	height: auto;
	max-height: 590px;
	object-fit: contain;
	border-radius: 0;
	filter: drop-shadow(0 28px 34px rgb(15 23 42 / 20%));
}

.lo-home-device {
	position: relative;
	z-index: 1;
	width: min(100%, 640px);
	margin-inline: auto;
	padding: 1.1rem 1.1rem 0;
	background: linear-gradient(180deg, #f9fafb, #d9dee5);
	border: 1px solid rgb(15 23 42 / 22%);
	border-radius: 1.2rem 1.2rem 0.55rem 0.55rem;
	box-shadow: 0 34px 60px rgb(15 23 42 / 20%);
}

.lo-home-device__screen {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	min-height: 300px;
	overflow: hidden;
	background: #2f3337;
	border: 1px solid rgb(15 23 42 / 20%);
	border-radius: 0.75rem;
}

.lo-home-device__sidebar {
	display: grid;
	gap: 0.7rem;
	align-content: start;
	padding: 1.2rem;
	background: #f4f7f6;
}

.lo-home-device__sidebar span {
	display: block;
	height: 0.7rem;
	background: #d9e2df;
	border-radius: var(--lo-radius-pill);
}

.lo-home-device__canvas {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 1.4rem;
	color: #cfd8dc;
	text-align: center;
}

.lo-home-device__logo {
	width: 92px;
	height: 92px;
	background:
		linear-gradient(135deg, #16a34a 0 50%, #2563eb 50% 100%);
	border-radius: 1.4rem;
	box-shadow: inset 0 0 0 12px rgb(255 255 255 / 30%);
	transform: rotate(12deg);
}

.lo-home-device__canvas p {
	margin: 0;
	font-size: 0.8rem;
}

.lo-home-device__base {
	width: 110%;
	height: 22px;
	margin: 0 -5%;
	background: linear-gradient(180deg, #e9edf1, #b9c0c8);
	border-radius: 0 0 2.2rem 2.2rem;
}

.lo-home-modules-v2 {
	padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.25rem, 3vw, 2rem);
	background: #fff;
}

.lo-home-modules-v2__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(172px, 1fr));
	gap: 0.8rem;
}

.lo-home-module-card {
	display: flex;
	flex-direction: column;
	gap: 0.78rem;
	align-items: center;
	min-height: 252px;
	padding: 1.65rem 1.15rem 1.25rem;
	text-align: center;
	background: #fff;
	border: 1px solid var(--lo-home-border);
	border-radius: 0.9rem;
	box-shadow: 0 12px 30px rgb(15 23 42 / 3%);
	transition:
		border-color var(--lo-transition-base),
		box-shadow var(--lo-transition-base),
		transform var(--lo-transition-base);
}

.lo-home-module-card:hover,
.lo-home-module-card:focus-within {
	border-color: rgb(16 166 74 / 28%);
	box-shadow: var(--lo-home-shadow);
	transform: translateY(-4px);
}

.lo-home-module-card__icon {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	color: var(--lo-home-green);
}

.lo-home-module-card__icon svg {
	display: block;
	width: 42px;
	height: 42px;
}

.lo-home-module--writer .lo-home-module-card__icon { color: #1d76ee; }
.lo-home-module--calc .lo-home-module-card__icon { color: #12a150; }
.lo-home-module--impress .lo-home-module-card__icon { color: #f05a28; }
.lo-home-module--draw .lo-home-module-card__icon { color: #f5a400; }
.lo-home-module--base .lo-home-module-card__icon { color: #7c3aed; }
.lo-home-module--math .lo-home-module-card__icon { color: #00a6b8; }

.lo-home-module-card h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.25;
}

.lo-home-module-card p {
	margin: 0;
	color: var(--lo-home-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.lo-home-module-card a {
	display: inline-flex;
	gap: 0.28rem;
	align-items: center;
	justify-content: center;
	align-self: center;
	justify-self: center;
	margin-top: auto;
	min-width: max-content;
	color: #0878d8;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}

.lo-home-module-card a span {
	flex: 0 0 auto;
}

.lo-home-ad {
	padding: 0 0 clamp(0.25rem, 0.7vw, 0.52rem);
	background: #fff;
}

.lo-home-ad--middle {
	padding-top: 0;
	padding-bottom: clamp(0.3rem, 0.85vw, 0.6rem);
}

.lo-home-ad__placeholder,
.lo-home-ad .lo-ad-slot {
	display: grid;
	min-height: 84px;
	place-items: center;
	align-content: center;
	gap: 0.25rem;
	color: #a3a7ae;
	font-size: clamp(0.95rem, 1.45vw, 1.25rem);
	font-weight: 650;
	text-align: center;
	background: #fff;
	border: 2px dashed #d0d6df;
	border-radius: 0.8rem;
}

.lo-home-ad__placeholder span {
	font-size: 1.25rem;
}

.lo-home-about-v2 {
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4.5rem);
	background: #fff;
}

.lo-home-about-v2__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
	gap: clamp(2rem, 5vw, 4.25rem);
	align-items: stretch;
}

.lo-home-about-v2__content h2 {
	max-width: 520px;
	margin: 0;
	font-size: clamp(1.76rem, 2.9vw, 2.42rem);
	line-height: 1.14;
	letter-spacing: -0.01em;
}

.lo-home-about-v2__content > p:not(.lo-home-eyebrow) {
	margin: 1.65rem 0 0;
	color: var(--lo-home-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.lo-home-check-list {
	display: grid;
	gap: 0.85rem;
	padding: 0;
	margin: 1.6rem 0 0;
	list-style: none;
}

.lo-home-check-list li {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	color: #1f2937;
	font-weight: 400;
	line-height: 1.5;
}

.lo-home-check-list strong {
	font-weight: 700;
}

.lo-home-about-v2__media {
	display: flex;
	overflow: hidden;
	width: min(100%, 560px);
	min-height: 430px;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	justify-self: end;
}

.lo-home-about-v2__image {
	display: block;
	width: 100%;
	max-width: 560px;
	height: auto;
	max-height: 460px;
	object-fit: contain;
	object-position: center;
	border-radius: 1rem;
}

.lo-home-office-scene {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 360px;
	padding: 3rem;
	background:
		linear-gradient(90deg, rgb(255 255 255 / 45%), transparent 30%),
		linear-gradient(135deg, #eef2eb, #d9c5a4 52%, #8b6d4b);
	border-radius: 1rem;
}

.lo-home-office-scene .lo-home-device {
	width: min(80%, 520px);
	transform: scale(0.86);
}

.lo-home-office-scene__plant,
.lo-home-office-scene__cup {
	position: absolute;
	bottom: 2.3rem;
	background: #fff;
	box-shadow: 0 18px 30px rgb(15 23 42 / 16%);
}

.lo-home-office-scene__plant {
	left: 2.5rem;
	width: 80px;
	height: 110px;
	border-radius: 42% 42% 18px 18px;
}

.lo-home-office-scene__plant::before {
	position: absolute;
	top: -35px;
	left: 8px;
	width: 64px;
	height: 64px;
	background: radial-gradient(circle, #2f8f46 0 8px, transparent 9px);
	background-size: 22px 22px;
	content: "";
}

.lo-home-office-scene__cup {
	right: 2.8rem;
	width: 76px;
	height: 78px;
	border-radius: 0 0 28px 28px;
}

.lo-home-device__chart {
	display: flex;
	gap: 0.75rem;
	align-items: end;
}

.lo-home-device__chart span {
	width: 30px;
	background: #16a34a;
	border-radius: 6px 6px 0 0;
}

.lo-home-device__chart span:nth-child(1) { height: 48px; }
.lo-home-device__chart span:nth-child(2) { height: 78px; }
.lo-home-device__chart span:nth-child(3) { height: 112px; }
.lo-home-device__chart span:nth-child(4) { height: 64px; }

.lo-home-device__pie {
	width: 110px;
	height: 110px;
	margin-left: 2rem;
	background: conic-gradient(#16a34a 0 40%, #2563eb 40% 72%, #f59e0b 72% 100%);
	border-radius: 50%;
}

.lo-home-device--about .lo-home-device__screen {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	background: #f8fafc;
}

.lo-home-download-v2 {
	padding: clamp(2.6rem, 4.5vw, 4rem) 0 clamp(3rem, 5vw, 4.25rem);
	background: #fff;
}

.lo-home-download-v2__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.55rem;
	max-width: 1120px;
	margin-inline: auto;
}

.lo-home-download-card {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 0.55rem 1.15rem;
	justify-items: start;
	align-items: center;
	min-height: 230px;
	padding: 2.15rem;
	text-align: left;
	background: #fff;
	border: 1px solid var(--lo-home-border);
	border-radius: 1rem;
	box-shadow: 0 14px 35px rgb(15 23 42 / 4%);
	transition:
		border-color var(--lo-transition-base),
		box-shadow var(--lo-transition-base),
		transform var(--lo-transition-base);
}

.lo-home-download-card:hover,
.lo-home-download-card:focus-within {
	border-color: rgb(16 166 74 / 28%);
	box-shadow: var(--lo-home-shadow);
	transform: translateY(-3px);
}

.lo-home-download-card__icon {
	display: inline-flex;
	grid-row: 1 / 4;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	color: #0f87ff;
	line-height: 1;
}

.lo-home-download-card__icon svg,
.lo-home-download-card__icon img {
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.lo-home-download-card--macos .lo-home-download-card__icon { color: #a7adb6; }
.lo-home-download-card--linux .lo-home-download-card__icon { color: #111827; }

.lo-home-download-card h3 {
	grid-column: 2;
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.2;
}

.lo-home-download-card p {
	grid-column: 2;
	margin: 0;
	color: var(--lo-home-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.lo-home-download-card .lo-home-button {
	grid-column: 2;
	justify-self: start;
	margin-top: 0.25rem;
	border-radius: 0.8rem;
	font-weight: 560;
}

.lo-home-download-v2__all {
	display: flex;
	gap: 0.45rem;
	justify-content: center;
	width: fit-content;
	margin: 1.6rem auto 0;
	color: #050816;
	font-weight: 800;
	text-decoration: none;
}

.lo-home-download-v2__version {
	width: fit-content;
	margin: 1.25rem auto 0;
	padding: 0.7rem 1rem;
	color: #047a38;
	font-size: 0.9rem;
	font-weight: 800;
	background: #ecfdf5;
	border: 1px solid rgb(16 166 74 / 18%);
	border-radius: var(--lo-radius-pill);
}

.lo-home-faq-blog-v2 {
	padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(3rem, 6vw, 4.5rem);
	background: #fff;
}

.lo-home-faq-blog-v2__inner {
	display: grid;
	grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.38fr);
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
	align-items: start;
}

.lo-home-faq-v2__list {
	display: grid;
	gap: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--lo-home-border);
	border-radius: 0.75rem;
}

.lo-home-faq-item {
	border-bottom: 1px solid var(--lo-home-border);
}

.lo-home-faq-item:last-child {
	border-bottom: 0;
}

.lo-home-faq-item summary {
	position: relative;
	padding: 1.05rem 1.25rem;
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.lo-home-faq-item summary::-webkit-details-marker {
	display: none;
}

.lo-home-faq-item summary::after {
	display: none;
	content: none;
}

.lo-home-faq-item[open] summary::after {
	transform: translateY(-50%) rotate(180deg);
}

.lo-home-faq-item div {
	padding: 0 1.25rem 1.1rem;
	color: var(--lo-home-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.lo-home-faq-item div p {
	margin: 0;
}

.lo-home-faq-v2 > .lo-home-inline-link {
	justify-content: flex-end;
	justify-self: stretch;
	width: 100%;
	margin-top: 1.5rem;
	color: #050816;
}

.lo-home-faq-v2 > .lo-home-inline-link:hover,
.lo-home-faq-v2 > .lo-home-inline-link:focus-visible {
	color: #111827;
}

.lo-home-blog-v2__heading {
	display: flex;
	gap: 1rem;
	align-items: start;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.lo-home-blog-v2__heading .lo-home-section-heading {
	margin-bottom: 0;
}

.lo-home-blog-v2__heading > .lo-home-inline-link {
	margin-top: 0.85rem;
	align-self: flex-start;
	white-space: nowrap;
}

.lo-home-blog-v2__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.lo-home-post-card {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--lo-home-border);
	border-radius: 0.85rem;
	box-shadow: 0 15px 35px rgb(15 23 42 / 5%);
	transition:
		box-shadow var(--lo-transition-base),
		transform var(--lo-transition-base);
}

.lo-home-post-card:hover,
.lo-home-post-card:focus-within {
	box-shadow: var(--lo-home-shadow);
	transform: translateY(-3px);
}

.lo-home-post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1.56 / 1;
	overflow: hidden;
	background: #eef2f7;
}

.lo-home-post-card__image,
.lo-home-post-card__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--lo-transition-slow);
}

.lo-home-post-card:hover .lo-home-post-card__image,
.lo-home-post-card:hover .lo-home-post-card__fallback {
	transform: scale(1.035);
}

.lo-home-post-card__fallback {
	background:
		linear-gradient(135deg, rgb(255 255 255 / 55%), transparent),
		linear-gradient(135deg, #dbeafe, #dcfce7);
}

.lo-home-post-card__date {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: grid;
	width: 62px;
	min-height: 72px;
	place-items: center;
	padding: 0.5rem;
	color: #050816;
	text-align: center;
	background: #fff;
	border-radius: 0.45rem;
	box-shadow: 0 14px 25px rgb(15 23 42 / 14%);
}

.lo-home-post-card__date span {
	font-size: 1.4rem;
	font-weight: 850;
	line-height: 1;
}

.lo-home-post-card__date small {
	color: var(--lo-home-muted);
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1.15;
}

.lo-home-post-card__body {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 0.8rem;
	padding: 1.25rem 1.05rem 1.35rem;
}

.lo-home-post-card__body h3 {
	display: -webkit-box;
	min-height: calc(1.04rem * 1.42 * 2);
	max-height: calc(1.04rem * 1.42 * 2);
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 0;
	font-size: 1.04rem;
	font-weight: 720;
	line-height: 1.42;
}

.lo-home-post-card__body h3 a {
	text-decoration: none;
}

.lo-home-post-card__body p {
	display: -webkit-box;
	min-height: calc(0.89rem * 1.62 * 2);
	max-height: calc(0.89rem * 1.62 * 2);
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 0;
	color: #344054;
	font-size: 0.89rem;
	line-height: 1.62;
	text-align: left;
}

.lo-home-post-card__body .lo-home-inline-link {
	width: fit-content;
	min-width: max-content;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}

.site-footer {
	background: #f8fafc;
	border-top-color: #e6ebf1;
}

.lo-ad-slot--footer {
	width: min(100% - 80px, 1280px);
	min-height: 110px;
	margin: clamp(0.25rem, 0.8vw, 0.55rem) auto clamp(0.55rem, 1.2vw, 0.9rem);
	background: #fff;
	border-radius: 0.8rem;
}

.site-footer__inner {
	display: block;
	width: min(100% - 80px, 1280px);
	padding-block: 2.4rem 1.1rem;
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(240px, 1.4fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(220px, 1fr);
	gap: clamp(2rem, 6vw, 5rem);
	padding-bottom: 2.25rem;
}

.site-footer__brand {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.site-footer__brand p {
	max-width: 330px;
	margin: 0;
	color: var(--lo-home-muted, var(--lo-color-muted));
	font-size: 0.95rem;
	line-height: 1.75;
}

.site-footer__social,
.site-footer__language-list,
.site-footer__legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__social a {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	color: #050816;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
	background: #fff;
	border: 1px solid #dfe5ec;
	border-radius: 50%;
}

.site-footer__nav-group h2 {
	margin: 0 0 1.05rem;
	color: #050816;
	font-size: 0.92rem;
	font-weight: 850;
}

.site-footer .footer-menu {
	display: grid;
	gap: 0.52rem;
}

.site-footer .footer-menu a {
	color: #172033;
	font-size: 0.92rem;
	font-weight: 550;
	text-decoration: none;
}

.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus-visible {
	color: var(--lo-color-primary);
}

.site-footer__language-list a {
	display: inline-flex;
	gap: 0.35rem;
	min-width: 30px;
	min-height: 24px;
	align-items: center;
	justify-content: center;
	color: #050816;
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.18rem 0.35rem;
	background: #fff;
	border: 1px solid #dfe5ec;
	border-radius: 999px;
}

.site-footer__language-fallback {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1.5px solid currentColor;
	border-radius: 999px;
	opacity: 0.75;
}

.site-footer__language-code {
	line-height: 1;
}

.site-footer__extra {
	display: grid;
	gap: 1rem;
	padding-block: 0 1rem;
}

.site-footer__notice {
	display: grid;
	gap: 0.35rem;
	max-width: 860px;
	color: var(--lo-home-muted, var(--lo-color-muted));
	font-size: 0.82rem;
	line-height: 1.65;
}

.site-footer__notice p {
	margin: 0;
}

.site-footer__sponsored {
	display: grid;
	gap: 0.75rem;
}

.site-footer__sponsored h2 {
	margin: 0;
	color: #050816;
	font-size: 0.9rem;
	font-weight: 800;
}

.site-footer .footer-menu--sponsored {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
}

.site-footer__bottom {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	color: var(--lo-home-muted, var(--lo-color-muted));
	border-top: 1px solid #e3e8ef;
}

.site-footer__copyright {
	margin: 0;
}

.site-footer__legal a {
	color: #172033;
	font-size: 0.875rem;
	text-decoration: none;
}

.site-footer__legal li + li::before {
	margin-right: 0.75rem;
	color: #98a2b3;
	content: "|";
}

@media (max-width: 1280px) {
	.site-header__inner,
	.site-footer__inner {
		width: min(100% - 48px, 1180px);
	}

	.lo-home-hero-v2__inner {
		grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
	}
}

@media (max-width: 1180px) {
	.lo-home-modules-v2__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.site-header__actions {
		gap: 1.2rem;
	}

	.site-menu--primary {
		gap: 1.35rem;
	}

	.lo-home-hero-v2__inner,
	.lo-home-about-v2__inner,
	.lo-home-faq-blog-v2__inner {
		grid-template-columns: 1fr;
	}

	.lo-home-hero-v2__content {
		max-width: 680px;
	}

	.lo-home-hero-v2__visual {
		min-height: 370px;
	}

	.lo-home-about-v2__media {
		min-height: clamp(320px, 50vw, 420px);
		justify-self: center;
	}

	.lo-home-hero-v2__image {
		max-height: 500px;
	}

	.lo-home-about-v2__image {
		max-height: 420px;
	}

	.lo-home-download-v2__grid,
	.lo-home-blog-v2__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.site-header__inner,
	.site-footer__inner {
		width: min(100% - 32px, 100%);
	}

	.site-title,
	.site-footer__title {
		font-size: 1.55rem;
	}

	.lo-home-hero-v2 {
		padding-top: 3rem;
	}

	.lo-home-hero-v2__title {
		font-size: clamp(2.15rem, 9vw, 3rem);
	}

	.lo-home-hero-v2__actions,
	.lo-home-hero-v2__features {
		align-items: stretch;
		flex-direction: column;
	}

	.lo-home-button,
	.lo-home-hero-v2__actions .lo-home-button {
		width: 100%;
	}

	.lo-home-device__screen {
		grid-template-columns: 92px minmax(0, 1fr);
		min-height: 240px;
	}

	.lo-home-modules-v2__grid,
	.lo-home-download-v2__grid,
	.lo-home-blog-v2__grid {
		grid-template-columns: 1fr;
	}

	.lo-home-about-v2__media {
		order: -1;
		min-height: clamp(280px, 65vw, 360px);
	}

	.lo-ad-slot--footer {
		width: min(100% - 32px, 100%);
	}

	.lo-home-office-scene {
		min-height: 280px;
		padding: 1.5rem;
	}

	.lo-home-office-scene__plant,
	.lo-home-office-scene__cup {
		display: none;
	}

	.lo-home-blog-v2__heading {
		display: grid;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 576px) {
	.lo-homepage-v2 {
		--lo-home-gutter: 1.5rem;
	}

	.lo-home-hero-v2__visual {
		min-height: 270px;
	}

	.lo-home-hero-v2__image {
		max-height: 330px;
	}

	.lo-home-about-v2__media {
		min-height: 260px;
	}

	.lo-home-about-v2__image {
		max-height: 320px;
	}

	.lo-home-device {
		padding: 0.65rem 0.65rem 0;
	}

	.lo-home-device__screen {
		grid-template-columns: 64px minmax(0, 1fr);
		min-height: 190px;
	}

	.lo-home-device__sidebar {
		padding: 0.75rem;
	}

	.lo-home-device__logo {
		width: 66px;
		height: 66px;
	}

	.lo-home-module-card,
	.lo-home-download-card {
		min-height: auto;
		padding: 1.5rem;
	}

	.lo-home-download-card {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 0.4rem 0.85rem;
	}

	.lo-home-download-card__icon {
		width: 50px;
		height: 50px;
	}

	.lo-home-download-card__icon svg,
	.lo-home-download-card__icon img {
		width: 44px;
		height: 44px;
	}

	.lo-home-ad__placeholder,
	.lo-home-ad .lo-ad-slot {
		min-height: 88px;
		padding: 0.9rem;
		font-size: 0.95rem;
	}

	.lo-home-ad__placeholder span {
		font-size: 0.95rem;
	}

	.lo-home-post-card__date {
		width: 56px;
		min-height: 66px;
	}
}

@media (max-width: 360px) {
	.lo-homepage-v2 {
		--lo-home-gutter: 1.15rem;
	}

	.lo-home-hero-v2__title {
		font-size: 2.15rem;
	}

	.lo-home-section-heading h2,
	.lo-home-about-v2__content h2 {
		font-size: 1.65rem;
	}
}

/* Download page v3: scoped reconstruction based on the approved Download mockup. */
.lo-download-page {
	width: min(100% - var(--lo-container-gutter), var(--lo-layout-width));
	max-width: var(--lo-layout-width);
	margin-inline: auto;
	padding-top: 0;
	color: var(--lo-color-text);
	overflow: clip;
}

.lo-download-page .lo-container-wide {
	width: 100%;
	margin-inline: auto;
}

.lo-download-page__hero {
	padding: 36px 0;
}

.lo-download-page__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
	gap: clamp(28px, 4vw, 60px);
	align-items: center;
	min-height: 430px;
	padding: clamp(46px, 4.5vw, 64px);
	background: linear-gradient(120deg, #f8faf9, #f1f6f3);
	border: 1px solid #edf1ef;
	border-radius: 18px;
}

.lo-download-page__hero-content {
	display: grid;
	gap: 18px;
	min-width: 0;
	align-content: center;
	align-self: stretch;
}

.lo-download-page__hero-eyebrow {
	margin: 0;
	color: var(--lo-color-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lo-download-center-v3__heading > p {
	margin: 0 0 12px;
	color: var(--lo-color-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lo-download-page__hero h1 {
	max-width: none;
	margin: 0;
	font-size: clamp(2.5rem, 3.15vw, 3.5rem);
	font-weight: 750;
	line-height: 1.04;
}

.lo-download-page__hero-description {
	max-width: 610px;
	margin: 0;
	color: var(--lo-color-muted);
	font-size: clamp(1rem, 1.25vw, 1.18rem);
	line-height: 1.7;
}

.lo-download-page__hero-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	padding: 0;
	margin: 0;
	color: var(--lo-color-text);
	font-size: 0.9rem;
	list-style: none;
}

.lo-download-page__hero-benefits li {
	display: inline-flex;
	gap: 7px;
	align-items: center;
}

.lo-download-page__hero-benefits li::before {
	display: inline-grid;
	width: 1.05rem;
	height: 1.05rem;
	flex: 0 0 auto;
	place-items: center;
	color: var(--lo-color-primary);
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 1;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	content: "\2713";
}

.lo-download-page__benefits-grid article > span {
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	width: 26px;
	height: 26px;
	color: var(--lo-color-primary);
	background: rgb(22 163 74 / 12%);
	border-radius: 50%;
}

.lo-download-page__hero-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.lo-download-page__hero-image {
	display: block;
	width: min(100%, 620px);
	height: auto;
	object-fit: contain;
}

.lo-download-page__device {
	position: relative;
	width: min(100%, 560px);
	aspect-ratio: 16 / 10;
	background: #fff;
	border: 12px solid #22272b;
	border-radius: 16px 16px 7px 7px;
	box-shadow: 0 25px 60px rgb(15 23 42 / 18%);
}

.lo-download-page__device::before {
	position: absolute;
	inset: 12% 8%;
	background: linear-gradient(90deg, #18a05e 0 22%, #f3f5f4 22% 100%);
	content: "";
}

.lo-download-page__device::after {
	position: absolute;
	top: calc(100% + 12px);
	left: -8%;
	width: 116%;
	height: 14px;
	background: #b9bdc0;
	border-radius: 2px 2px 16px 16px;
	content: "";
}

.lo-download-page__latest {
	display: flex;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	padding: 16px 28px;
	margin-top: 0;
	background: #fff;
	border: 1px solid rgb(22 163 74 / 24%);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgb(15 23 42 / 7%);
}

.lo-download-page__latest a {
	color: var(--lo-color-primary);
}

.lo-download-page__latest > div {
	display: flex;
	gap: 18px;
	align-items: center;
}

.lo-download-page__latest-label {
	padding: 6px 10px;
	color: var(--lo-color-primary);
	font-size: 0.75rem;
	font-weight: 700;
	background: rgb(22 163 74 / 11%);
	border-radius: 999px;
}

.lo-download-page__latest > span,
.lo-download-page__latest > a {
	font-size: 0.88rem;
}

.lo-download-page__ad {
	padding: 20px 0 16px;
}

.lo-download-page__ad:empty {
	display: none;
}

.lo-download-page__ad .lo-ad-slot {
	min-height: 92px;
	margin: 0;
	border-radius: 10px;
}

.lo-download-center-v3 {
	padding: 24px 0 32px;
}

.lo-download-center-v3__heading,
.lo-download-page__section-heading {
	max-width: 720px;
	margin-bottom: 36px;
}

.lo-download-center-v3__heading h2,
.lo-download-page__section-heading h2,
.lo-download-page__faq > h2 {
	margin: 0 0 12px;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.14;
}

.lo-download-center-v3__heading h2 {
	font-size: clamp(1.75rem, 2.4vw, 2.35rem);
	white-space: nowrap;
}

.lo-download-center-v3__heading div,
.lo-download-page__section-heading p {
	color: var(--lo-color-muted);
	font-size: 1.04rem;
}

.lo-download-center-v3__heading div p {
	margin: 0;
}

.lo-download-center-v3__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.lo-download-center-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 490px;
	padding: 34px;
	background: #fff;
	border: 1px solid #e2e8e5;
	border-radius: 14px;
	box-shadow: 0 12px 36px rgb(15 23 42 / 7%);
	transition: transform var(--lo-transition-base), box-shadow var(--lo-transition-base), border-color var(--lo-transition-base);
}

.lo-download-center-card:hover {
	border-color: rgb(22 163 74 / 40%);
	box-shadow: 0 20px 42px rgb(15 23 42 / 11%);
	transform: translateY(-4px);
}

.lo-download-center-card__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 22px;
	color: var(--lo-color-primary);
	background: rgb(22 163 74 / 10%);
	border-radius: 13px;
}

.lo-download-center-card__icon svg {
	width: 38px;
	height: 38px;
}

.lo-download-center-card h3 {
	margin: 0 0 10px;
	font-size: 1.55rem;
}

.lo-download-center-card__description {
	min-height: 54px;
	margin: 0 0 24px;
	color: var(--lo-color-muted);
	line-height: 1.6;
}

.lo-download-center-card label {
	margin-bottom: 7px;
	font-size: 0.8rem;
	font-weight: 700;
}

.lo-download-page .lo-download-center-card__select {
	width: 100%;
	min-height: 48px;
	padding: 0 42px 0 14px;
	color: var(--lo-color-text);
	background-color: #f8faf9;
	border: 1px solid var(--lo-color-border);
	border-radius: 8px;
	accent-color: var(--lo-color-primary);
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lo-download-page .lo-download-center-card__select option {
	color: var(--lo-color-text);
	background-color: #fff;
}

.lo-download-page .lo-download-center-card__select option:checked,
.lo-download-page .lo-download-center-card__select option:hover,
.lo-download-page .lo-download-center-card__select option:focus {
	color: #fff;
	background-color: #16a34a;
}

.lo-download-page .lo-download-center-card__select:hover {
	border-color: #16a34a;
	background-color: #fff;
}

.lo-download-page .lo-download-center-card__select:focus,
.lo-download-page .lo-download-center-card__select:focus-visible {
	border-color: #16a34a;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgb(22 163 74 / 16%);
	outline: 0;
}

@media (min-width: 1025px) {
	.lo-download-page__hero-benefits {
		flex-wrap: nowrap;
		font-size: 0.85rem;
	}
}

.lo-download-center-card__meta {
	display: grid;
	gap: 5px;
	margin: 16px 0 20px;
	color: var(--lo-color-muted);
	font-size: 0.75rem;
}

.lo-download-center-card__meta span {
	overflow-wrap: anywhere;
}

.lo-download-center-card__button,
.lo-download-center-card__empty {
	margin-top: auto;
}

.lo-download-center-card__button {
	width: 100%;
	max-width: 100%;
	min-height: 50px;
	font-weight: 600;
	text-align: center;
	white-space: normal;
	overflow-wrap: anywhere;
	border-radius: 9px;
}

.lo-download-center-card__button span {
	font-size: 1.2em;
}

.lo-download-center-card__empty {
	padding: 14px;
	color: var(--lo-color-muted);
	background: #f7f8f7;
	border-radius: 8px;
}

.lo-download-center-v3__extra-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	justify-content: center;
	margin-top: 28px;
}

.lo-download-center-v3__extra-links a {
	color: var(--lo-color-text);
	font-weight: 600;
}

.lo-download-variants-v3 {
	margin-top: 36px;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--lo-color-border);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgb(15 23 42 / 5%);
}

.lo-download-variants-v3__heading {
	margin-bottom: 22px;
}

.lo-download-variants-v3__heading h3,
.lo-download-variants-v3__heading p {
	margin: 0;
}

.lo-download-variants-v3__heading h3 {
	font-size: 1.55rem;
	line-height: 1.25;
}

.lo-download-variants-v3__heading p {
	margin-top: 7px;
	color: var(--lo-color-muted);
	line-height: 1.6;
}

.lo-download-variants-v3__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.lo-download-variants-v3__filters button {
	min-height: 40px;
	padding: 8px 16px;
	color: var(--lo-color-text);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	background: #fff;
	border: 1px solid var(--lo-color-border);
	border-radius: 8px;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lo-download-variants-v3__filters button:hover {
	color: var(--lo-color-primary);
	border-color: rgb(22 163 74 / 45%);
}

.lo-download-variants-v3__filters button:focus-visible {
	border-color: #16a34a;
	box-shadow: 0 0 0 3px rgb(22 163 74 / 15%);
	outline: 0;
}

.lo-download-variants-v3__filters button[aria-pressed="true"] {
	color: #0f6f35;
	background: #ecfdf5;
	border-color: rgb(22 163 74 / 38%);
}

.lo-download-variants-table-wrap {
	max-width: 100%;
	overflow: hidden;
	border: 1px solid var(--lo-color-border);
	border-radius: 10px;
}

.lo-download-variants-table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	table-layout: auto;
}

.lo-download-variants-table th,
.lo-download-variants-table td {
	padding: 13px 16px;
	vertical-align: middle;
	text-align: left;
	border: 0;
	border-bottom: 1px solid var(--lo-color-border);
	overflow-wrap: anywhere;
}

.lo-download-variants-table th {
	color: #374151;
	font-size: 0.76rem;
	font-weight: 700;
	background: #f7f9f8;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.lo-download-variants-table tbody tr:last-child td {
	border-bottom: 0;
}

.lo-download-variants-table th:last-child,
.lo-download-variants-table td:last-child {
	width: 1%;
	min-width: 210px;
	text-align: right;
	white-space: nowrap;
}

.lo-download-variants-table tr[hidden] {
	display: none;
}

.lo-download-variants-table__button {
	display: inline-flex;
	justify-content: center;
	width: auto;
	max-width: 100%;
	min-height: 38px;
	min-width: 132px;
	padding: 8px 14px;
	box-sizing: border-box;
	font-size: 0.82rem;
	white-space: nowrap;
}

.lo-download-testing-v3 {
	margin-top: 28px;
}

.lo-download-testing-v3 > h3 {
	margin-bottom: 20px;
	font-size: 1.7rem;
}

.lo-download-testing-v3__list {
	display: grid;
	gap: 16px;
}

.lo-download-testing-v3__release {
	overflow: hidden;
	background: #fffbeb;
	border: 1px solid #f6d58b;
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lo-download-testing-v3__release[open] {
	border-color: rgb(217 119 6 / 42%);
	box-shadow: 0 10px 26px rgb(120 53 15 / 7%);
}

.lo-download-testing-v3__summary {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	cursor: pointer;
	list-style: none;
	transition: background-color 0.2s ease;
}

.lo-download-testing-v3__summary:hover {
	background: #fff7dc;
}

.lo-download-testing-v3__summary::-webkit-details-marker {
	display: none;
}

.lo-download-testing-v3__summary:focus-visible {
	box-shadow: inset 0 0 0 2px #16a34a;
	outline: 0;
}

.lo-download-testing-v3__meta {
	display: inline-flex;
	min-width: 0;
	gap: 12px;
	align-items: center;
}

.lo-download-testing-v3__info strong,
.lo-download-testing-v3__info small {
	display: block;
	margin: 0;
}

.lo-download-testing-v3__info strong {
	font-size: 1.15rem;
}

.lo-download-testing-v3__info small {
	margin-top: 2px;
	color: var(--lo-color-muted);
	font-size: 0.85rem;
}

.lo-download-testing-v3__content {
	padding: 0 22px 22px;
	border-top: 1px solid #f6d58b;
}

.lo-download-testing-v3__badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 10px;
	color: #854d0e;
	font-size: 0.75rem;
	font-weight: 700;
	background: #fef3c7;
	border: 1px solid #f5c761;
	border-radius: 999px;
}

.lo-download-testing-v3__empty {
	margin: 0;
	color: var(--lo-color-muted);
}

.lo-download-archive-v3 {
	margin-top: 28px;
}

.lo-download-page__ad--after-platforms {
	padding: 28px 0 0;
}

.lo-download-page__ad--after-platforms + .lo-download-archive-v3 {
	margin-top: 28px;
}

.lo-download-archive-v3 > h3 {
	margin-bottom: 20px;
	font-size: 1.7rem;
}

.lo-download-archive-v3__list {
	display: grid;
	gap: 12px;
}

.lo-download-archive-v3 details {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--lo-color-border);
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lo-download-archive-v3 details[open] {
	border-color: rgb(22 163 74 / 32%);
	box-shadow: 0 10px 26px rgb(15 23 42 / 5%);
}

.lo-download-archive-v3 summary {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	cursor: pointer;
	list-style: none;
	transition: background-color 0.2s ease;
}

.lo-download-archive-v3 summary:hover {
	background: #f8fbf9;
}

.lo-download-archive-v3 summary::-webkit-details-marker {
	display: none;
}

.lo-download-archive-v3__meta,
.lo-download-archive-v3__meta small {
	display: block;
}

.lo-download-archive-v3__meta small {
	margin-top: 3px;
	color: var(--lo-color-muted);
}

.lo-download-archive-v3__action {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 12px;
	align-items: center;
}

.lo-download-archive-v3__action em {
	color: var(--lo-color-primary);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 700;
}

.lo-download-archive-v3__chevron {
	display: block;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentcolor;
	border-bottom: 2px solid currentcolor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s ease;
}

.lo-download-archive-v3 details[open] .lo-download-archive-v3__chevron,
.lo-download-testing-v3 details[open] .lo-download-archive-v3__chevron {
	transform: translateY(2px) rotate(225deg);
}

.lo-download-archive-v3 summary:focus-visible {
	box-shadow: inset 0 0 0 2px #16a34a;
	outline: 0;
}

.lo-download-archive-v3__content {
	padding: 0 22px 22px;
	border-top: 1px solid var(--lo-color-border);
}

.lo-download-release-v3__group {
	padding-top: 20px;
}

.lo-download-release-v3__group + .lo-download-release-v3__group {
	margin-top: 4px;
}

.lo-download-release-v3__group h4 {
	margin: 0 0 10px;
	font-size: 1rem;
}

.lo-download-release-v3__group .lo-download-variants-table-wrap {
	background: #fff;
}

.lo-download-testing-v3__content .lo-download-release-v3__group {
	margin-top: 16px;
	padding: 16px;
	background: #fffefb;
	border: 1px solid #f1d79b;
	border-radius: 10px;
}

.lo-download-testing-v3__content .lo-download-release-v3__group h4 {
	color: #78350f;
}

.lo-download-testing-v3__content .lo-download-variants-table-wrap {
	background: #fff;
	border-color: #edcf89;
}

.lo-download-testing-v3__content .lo-download-variants-table--release th {
	color: #713f12;
	background: #fff7df;
	border-bottom-color: #edcf89;
}

.lo-download-testing-v3__content .lo-download-variants-table--release td {
	background: #fff;
	border-bottom-color: #f3e2ba;
}

.lo-download-variants-table--release th:first-child,
.lo-download-variants-table--release td:first-child {
	width: 34%;
}

.lo-download-page__requirements {
	padding: 32px 0;
	background: transparent;
}

.lo-download-page__requirements > .lo-container-wide {
	padding: 48px;
	background: #f4f7f5;
	border: 1px solid rgb(22 163 74 / 10%);
	border-radius: 14px;
}

.lo-download-page__requirements-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.lo-download-page__requirement-card {
	position: relative;
	min-height: 220px;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--lo-color-border);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgb(15 23 42 / 5%);
	transition: border-color var(--lo-transition-base), box-shadow var(--lo-transition-base), transform var(--lo-transition-base);
}

.lo-download-page__requirement-card:hover {
	border-color: rgb(22 163 74 / 34%);
	box-shadow: 0 15px 32px rgb(15 23 42 / 9%);
	transform: translateY(-3px);
}

.lo-download-page__requirement-icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-bottom: 18px;
	color: var(--lo-color-primary);
	font-weight: 800;
	background: rgb(22 163 74 / 11%);
	border-radius: 10px;
}

.lo-download-page__requirements-grid h3 {
	margin: 0 0 14px;
}

.lo-download-page__requirements-grid p {
	margin: 0 0 6px;
	color: var(--lo-color-muted);
}

.lo-download-page__benefits {
	padding: 40px 0 56px;
}

.lo-download-page__section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.lo-download-page__benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.lo-download-page__benefits-grid article {
	padding: 26px;
	text-align: center;
}

.lo-download-page__benefits-grid article > span {
	width: 42px;
	height: 42px;
	margin: 0 auto 16px;
	font-size: 1.2rem;
}

.lo-download-page__benefits-grid h3 {
	margin: 0 0 10px;
	font-size: 1.1rem;
}

.lo-download-page__benefits-grid p {
	margin: 0;
	color: var(--lo-color-muted);
	line-height: 1.6;
}

.lo-download-page__support {
	padding: 0 0 40px;
}

.lo-download-page__support-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
	gap: 54px;
	align-items: center;
}

.lo-download-page__faq details {
	border-bottom: 1px solid var(--lo-color-border);
}

.lo-download-page__faq summary {
	padding: 19px 4px;
	font-weight: 650;
	cursor: pointer;
}

.lo-download-page__faq summary:focus-visible {
	box-shadow: inset 0 0 0 2px var(--lo-color-primary);
	outline: 0;
}

.lo-download-page__faq details > div {
	padding: 0 4px 20px;
	color: var(--lo-color-muted);
}

.lo-download-page__faq details > div p {
	margin: 0;
}

.lo-download-page__help {
	padding: 36px;
	color: #fff;
	background: #11191a;
	border-radius: 14px;
}

.lo-download-page__help > span {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 24px;
	color: #11191a;
	font-size: 1.4rem;
	font-weight: 800;
	background: #fff;
	border-radius: 50%;
}

.lo-download-page__help h2 {
	margin: 0 0 12px;
	color: #fff;
}

.lo-download-page__help p {
	margin: 0 0 24px;
	color: rgb(255 255 255 / 72%);
	line-height: 1.65;
}

.lo-download-page + .lo-ad-slot--footer {
	width: min(100% - var(--lo-container-gutter), var(--lo-layout-width));
}

@media (max-width: 1024px) {
	.lo-download-page__hero-inner {
		grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
		gap: 28px;
		min-height: 390px;
		padding: 36px;
	}

	.lo-download-page__hero h1 {
		font-size: clamp(2.25rem, 4.1vw, 2.7rem);
	}

	.lo-download-center-v3__grid {
		gap: 16px;
	}

	.lo-download-center-card {
		min-height: 470px;
		padding: 26px;
	}

	.lo-download-page__benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.lo-download-page__hero {
		padding-block: 24px;
	}

	.lo-download-page__hero-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		min-height: 0;
		padding: 36px;
	}

	.lo-download-page__hero-media {
		order: -1;
	}

	.lo-download-page__hero-image,
	.lo-download-page__device {
		width: min(100%, 480px);
	}

	.lo-download-page__latest {
		flex-wrap: wrap;
		gap: 12px 20px;
		margin-inline: auto;
	}

	.lo-download-page__latest > div {
		flex-wrap: wrap;
	}

	.lo-download-center-v3__grid,
	.lo-download-page__requirements-grid {
		grid-template-columns: 1fr;
	}

	.lo-download-center-card {
		min-height: 0;
	}

	.lo-download-page__support-grid {
		grid-template-columns: 1fr;
	}

	.lo-download-center-v3__heading h2 {
		white-space: normal;
	}

	.lo-download-page__requirements > .lo-container-wide {
		padding: 34px;
	}

	.lo-download-variants-v3 {
		padding: 24px;
	}

	.lo-download-variants-table,
	.lo-download-variants-table tbody,
	.lo-download-variants-table tr,
	.lo-download-variants-table td {
		display: block;
		width: 100%;
	}

	.lo-download-variants-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
		border: 0;
	}

	.lo-download-variants-table tbody tr {
		padding: 12px 14px;
		border-bottom: 1px solid var(--lo-color-border);
	}

	.lo-download-variants-table tbody tr:last-child {
		border-bottom: 0;
	}

	.lo-download-variants-table td,
	.lo-download-variants-table th:last-child,
	.lo-download-variants-table td:last-child,
	.lo-download-variants-table--release td:first-child {
		width: 100%;
		text-align: left;
	}

	.lo-download-variants-table td {
		display: grid;
		grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
		gap: 12px;
		padding: 6px 0;
		border-bottom: 0;
	}

	.lo-download-variants-table td::before {
		color: #4b5563;
		font-size: 0.75rem;
		font-weight: 700;
		content: attr(data-label);
	}

	.lo-download-variants-table td:last-child {
		min-width: 0;
		margin-top: 4px;
		white-space: normal;
	}

	.lo-download-variants-table__button {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		justify-self: start;
		white-space: normal;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 430px) {
	.lo-download-page__hero-inner {
		padding: 28px 22px;
		border-radius: 12px;
	}

	.lo-download-page__hero h1 {
		font-size: clamp(2.2rem, 12vw, 3rem);
	}

	.lo-download-page__latest {
		padding: 16px 18px;
		border-radius: 9px;
	}

	.lo-download-page__latest > div {
		gap: 10px;
	}

	.lo-download-center-v3,
	.lo-download-page__requirements,
	.lo-download-page__benefits {
		padding-block: 32px;
	}

	.lo-download-center-card,
	.lo-download-page__help {
		padding: 24px;
	}

	.lo-download-center-v3__grid,
	.lo-download-page__benefits-grid {
		gap: 16px;
	}

	.lo-download-page__benefits-grid {
		grid-template-columns: 1fr;
	}

	.lo-download-archive-v3 summary {
		align-items: flex-start;
		padding: 16px;
	}

	.lo-download-archive-v3__action {
		gap: 8px;
	}

	.lo-download-archive-v3__action em {
		max-width: 100px;
		text-align: right;
	}

	.lo-download-archive-v3__content {
		padding: 0 16px 16px;
	}

	.lo-download-variants-v3 {
		padding: 20px 16px;
	}

	.lo-download-testing-v3__summary {
		align-items: flex-start;
		padding: 16px;
	}

	.lo-download-testing-v3__meta {
		align-items: flex-start;
	}

	.lo-download-testing-v3__content {
		padding: 0 16px 16px;
	}

	.lo-download-testing-v3__content .lo-download-release-v3__group {
		margin-top: 12px;
		padding: 12px;
	}

	.lo-download-variants-v3__filters button {
		flex: 1 1 calc(50% - 4px);
		padding-inline: 10px;
	}

	.lo-download-variants-table td {
		grid-template-columns: minmax(96px, 0.7fr) minmax(0, 1.3fr);
	}

	.lo-download-variants-table__button {
		width: 100%;
		justify-self: stretch;
	}

	.lo-download-page__requirements-grid {
		gap: 26px;
	}

	.lo-download-page__requirements > .lo-container-wide {
		padding: 26px 22px;
	}
}

/* Stage 52: native WordPress Posts Page, scoped to the Blog view. */
.lo-blog-hero-v2 {
	position: relative;
	padding-block: 36px;
	background: var(--lo-color-white);
}

.lo-blog-hero-v2 .lo-hero__inner {
	position: relative;
	isolation: isolate;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
	width: min(100% - var(--lo-container-gutter), var(--lo-layout-width));
	min-height: 300px;
	padding: 50px 56px;
	background: linear-gradient(110deg, #f8f9fb 0%, #f3f5f7 100%);
	border: 1px solid #f1f3f5;
	border-radius: 18px;
}

.lo-blog-hero-v2 .lo-hero__content {
	position: relative;
	z-index: 2;
	gap: 18px;
	max-width: 650px;
}

.lo-blog-hero-v2 .lo-hero__title {
	font-size: clamp(2.45rem, 4vw, 4rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.lo-blog-hero-v2 .lo-hero__text {
	max-width: 610px;
	color: var(--lo-color-muted);
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	line-height: 1.75;
}

.lo-blog-hero-v2 .lo-hero__text p:last-child {
	margin-bottom: 0;
}

.lo-blog-hero-v2 .lo-hero__media {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.lo-blog-hero-v2 .lo-hero__image {
	display: block;
	width: min(100%, 470px);
	max-height: 250px;
	object-fit: contain;
	border-radius: 0;
}

.lo-blog-hero-v2--fallback .lo-hero__inner::before,
.lo-blog-hero-v2--fallback .lo-hero__inner::after {
	position: absolute;
	right: 11%;
	z-index: 0;
	width: 150px;
	height: 106px;
	background: var(--lo-color-white);
	border: 1px solid rgb(17 24 39 / 5%);
	border-radius: 10px;
	box-shadow: 0 18px 35px rgb(15 23 42 / 10%);
	content: "";
}

.lo-blog-hero-v2--fallback .lo-hero__inner::before {
	top: 82px;
	transform: rotate(-8deg);
}

.lo-blog-hero-v2--fallback .lo-hero__inner::after {
	right: 5.5%;
	top: 62px;
	width: 112px;
	height: 76px;
	border-top: 7px solid var(--lo-color-primary);
	transform: rotate(3deg);
}

.blog .lo-blog-page,
.archive .lo-blog-page {
	width: 100%;
	max-width: none;
	padding-block: 0 70px;
}

.lo-blog-page__before-posts {
	margin-bottom: 22px;
}

.lo-blog-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 2.12fr) minmax(280px, 0.88fr);
	gap: 28px;
	align-items: start;
}

.lo-blog-feed,
.lo-blog-list,
.lo-blog-sidebar {
	min-width: 0;
}

.lo-blog-list {
	display: grid;
	gap: 16px;
}

.lo-blog-page .lo-blog-card {
	display: grid;
	grid-template-columns: minmax(220px, 35%) minmax(0, 1fr);
	gap: 0;
	min-height: 220px;
	padding: 0;
	overflow: hidden;
	background: var(--lo-color-white);
	border-color: #e8ebef;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgb(15 23 42 / 4%);
}

.lo-blog-page .lo-blog-card:hover {
	border-color: rgb(22 163 74 / 28%);
	box-shadow: 0 12px 28px rgb(15 23 42 / 8%);
	transform: translateY(-2px);
}

.lo-blog-page .lo-blog-card .lo-post-card__media {
	position: relative;
	min-width: 0;
	height: 100%;
	min-height: 220px;
	overflow: hidden;
	background: #edf1ee;
}

.lo-blog-page .lo-blog-card .lo-post-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.lo-post-card__image-fallback {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: inherit;
	place-items: center;
	background:
		linear-gradient(145deg, rgb(22 163 74 / 11%), transparent 52%),
		linear-gradient(30deg, #f8faf9, #e8efeb);
}

.lo-post-card__image-fallback > span {
	position: relative;
	width: 66px;
	height: 80px;
	background: rgb(255 255 255 / 88%);
	border: 2px solid rgb(22 163 74 / 55%);
	border-radius: 6px;
	box-shadow: var(--lo-shadow-soft);
}

.lo-post-card__image-fallback > span::before,
.lo-post-card__image-fallback > span::after {
	position: absolute;
	left: 14px;
	width: 34px;
	height: 2px;
	background: rgb(22 163 74 / 45%);
	content: "";
}

.lo-post-card__image-fallback > span::before {
	top: 26px;
}

.lo-post-card__image-fallback > span::after {
	top: 39px;
}

.lo-blog-page .lo-blog-card .lo-post-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 28px 30px 26px;
}

.lo-blog-page .lo-blog-card .lo-post-card__date {
	display: block;
	margin: 0;
	color: var(--lo-color-primary);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.lo-blog-page .lo-blog-card .lo-post-card__title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: clamp(1.15rem, 1.55vw, 1.45rem);
	font-weight: 650;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lo-blog-page .lo-blog-card .lo-post-card__title a {
	color: var(--lo-color-text);
}

.lo-blog-page .lo-blog-card .lo-post-card__title a:hover,
.lo-blog-page .lo-blog-card .lo-post-card__title a:focus-visible {
	color: var(--lo-color-primary-dark);
}

.lo-blog-page .lo-blog-card .lo-post-card__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--lo-color-muted);
	font-size: 0.92rem;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lo-blog-page .lo-blog-card .lo-post-card__link {
	align-self: flex-start;
	margin-top: auto;
	padding: 0;
	font-size: 0.9rem;
	font-weight: 650;
	white-space: nowrap;
}

body:is(.blog, .category, .search-results) .lo-blog-page .lo-blog-card .lo-post-card__link {
	min-height: 42px;
	padding: 11px 18px;
	color: var(--lo-color-white);
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	background: var(--lo-color-primary);
	border-color: var(--lo-color-primary);
	border-radius: var(--lo-radius-small);
}

body:is(.blog, .category, .search-results) .lo-blog-page .lo-blog-card .lo-post-card__link::after {
	content: none;
}

body:is(.blog, .category, .search-results) .lo-blog-page .lo-blog-card .lo-post-card__link:hover {
	color: var(--lo-color-white);
	background: var(--lo-color-primary-dark);
	border-color: var(--lo-color-primary-dark);
	box-shadow: var(--lo-shadow-card);
	transform: translateY(-1px);
}

body:is(.blog, .category, .search-results) .lo-blog-page .lo-blog-card .lo-post-card__link:focus-visible {
	color: var(--lo-color-white);
	background: var(--lo-color-primary-dark);
	border-color: var(--lo-color-primary-dark);
	box-shadow: 0 0 0 4px rgb(22 163 74 / 18%);
}

.lo-blog-sidebar {
	display: grid;
	gap: 18px;
}

.lo-blog-sidebar__section {
	height: auto;
	padding: 26px;
	border-color: #e8ebef;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgb(15 23 42 / 4%);
}

.lo-blog-sidebar__section:hover {
	border-color: #e8ebef;
	box-shadow: 0 4px 18px rgb(15 23 42 / 4%);
	transform: none;
}

.lo-blog-sidebar__title {
	margin: 0 0 22px;
	font-size: 1.2rem;
	font-weight: 700;
}

.lo-blog-sidebar__search {
	padding: 12px;
}

.lo-blog-sidebar__search .lo-search-form {
	position: relative;
	gap: 0;
}

.lo-blog-sidebar__search .lo-search-form__field {
	min-height: 50px;
	padding-right: 54px;
	font-size: 0.92rem;
	border-color: #e6e9ed;
	border-radius: 8px;
}

.lo-blog-sidebar__search .lo-search-form__submit {
	position: absolute;
	right: 4px;
	top: 4px;
	width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	color: var(--lo-color-text);
	font-size: 0;
	background: transparent;
	border-color: transparent;
}

.lo-blog-sidebar__search .lo-search-form__submit::before {
	display: block;
	width: 13px;
	height: 13px;
	margin: auto;
	border: 2px solid currentColor;
	border-radius: 50%;
	content: "";
}

.lo-blog-sidebar__search .lo-search-form__submit::after {
	position: absolute;
	right: 11px;
	bottom: 10px;
	width: 7px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	content: "";
}

.lo-blog-sidebar__search .lo-search-form__submit:hover,
.lo-blog-sidebar__search .lo-search-form__submit:focus-visible {
	color: var(--lo-color-primary-dark);
	background: var(--lo-color-primary-soft);
	border-color: transparent;
}

.lo-blog-categories {
	display: grid;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lo-blog-categories a {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	padding: 7px 4px;
	color: var(--lo-color-text);
	font-size: 0.9rem;
	text-decoration: none;
	border-radius: 7px;
}

.lo-blog-categories a:hover,
.lo-blog-categories a:focus-visible {
	color: var(--lo-color-primary-dark);
	background: var(--lo-color-primary-soft);
}

.lo-blog-categories .is-current > a,
.lo-blog-categories a[aria-current="page"] {
	color: var(--lo-color-primary-dark);
	font-weight: 650;
	background: var(--lo-color-primary-soft);
}

.lo-blog-categories__name {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	min-width: 0;
}

.lo-blog-categories__icon {
	position: relative;
	width: 16px;
	height: 19px;
	flex: 0 0 16px;
	border: 2px solid var(--lo-color-primary);
	border-radius: 3px;
}

.lo-blog-categories__icon::after {
	position: absolute;
	right: 2px;
	top: 3px;
	width: 6px;
	height: 2px;
	background: var(--lo-color-primary);
	box-shadow: 0 4px 0 var(--lo-color-primary), 0 8px 0 var(--lo-color-primary);
	content: "";
}

.lo-blog-categories__count {
	flex: 0 0 auto;
	color: var(--lo-color-muted);
	font-size: 0.82rem;
}

.lo-blog-popular-posts {
	display: grid;
	gap: 18px;
}

.lo-blog-popular-post {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.lo-blog-popular-post__media {
	display: block;
	width: 72px;
	height: 58px;
	overflow: hidden;
	background: #edf1ee;
	border-radius: 7px;
}

.lo-blog-popular-post__image,
.lo-blog-popular-post__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lo-blog-popular-post__fallback {
	background: linear-gradient(145deg, rgb(22 163 74 / 14%), #edf1ee);
}

.lo-blog-popular-post__content {
	min-width: 0;
}

.lo-blog-popular-post h3 {
	display: -webkit-box;
	margin: 0 0 5px;
	overflow: hidden;
	font-size: 0.9rem;
	font-weight: 650;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lo-blog-popular-post h3 a {
	color: var(--lo-color-text);
	text-decoration: none;
}

.lo-blog-popular-post h3 a:hover,
.lo-blog-popular-post h3 a:focus-visible {
	color: var(--lo-color-primary-dark);
}

.lo-blog-popular-post time {
	color: var(--lo-color-muted);
	font-size: 0.7rem;
	text-transform: uppercase;
}

.lo-blog-sidebar-cta {
	padding: 0;
}

.lo-blog-sidebar-cta .lo-container {
	width: 100%;
}

.lo-blog-sidebar-cta .lo-cta__inner {
	display: grid;
	gap: 18px;
	padding: 28px;
	background: linear-gradient(145deg, #f2fbf5, #edf8f1);
	border-color: rgb(22 163 74 / 12%);
	border-radius: 12px;
	box-shadow: none;
}

.lo-blog-sidebar-cta .lo-cta__content {
	gap: 10px;
}

.lo-blog-sidebar-cta .lo-cta__title {
	color: var(--lo-color-primary-dark);
	font-size: 1.25rem;
}

.lo-blog-sidebar-cta .lo-cta__text {
	color: var(--lo-color-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.lo-blog-sidebar-cta .lo-cta__actions,
.lo-blog-sidebar-cta .lo-button {
	width: 100%;
}

.lo-blog-sidebar-cta .lo-button {
	font-weight: 600;
}

.lo-ad-slot--blog {
	width: 100%;
	min-height: 72px;
	margin-block: 16px;
	border-radius: 10px;
}

.lo-blog-page__before-posts .lo-ad-slot--blog {
	margin-top: 0;
}

.lo-blog-sidebar .lo-ad-slot--blog-sidebar {
	margin-block: 0;
}

.lo-blog-pagination {
	margin-top: 30px;
}

.lo-blog-pagination .nav-links {
	justify-content: center;
}

.lo-blog-pagination .page-numbers {
	min-width: 42px;
	min-height: 42px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 7px;
}

.lo-blog-empty-state {
	height: auto;
}

@media (max-width: 1024px) {
	.lo-blog-hero-v2 .lo-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
		min-height: 270px;
		padding: 42px;
	}

	.lo-blog-page__layout {
		grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.8fr);
		gap: 22px;
	}

	.lo-blog-page .lo-blog-card {
		grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);
	}

	.lo-blog-page .lo-blog-card .lo-post-card__body {
		padding: 24px;
	}

	.lo-blog-sidebar__section {
		padding: 22px;
	}
}

@media (max-width: 860px) {
	.lo-blog-hero-v2 .lo-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.lo-blog-hero-v2 .lo-hero__media {
		order: -1;
	}

	.lo-blog-hero-v2 .lo-hero__image {
		width: min(100%, 440px);
		max-height: 210px;
	}

	.lo-blog-hero-v2--fallback .lo-hero__inner::before,
	.lo-blog-hero-v2--fallback .lo-hero__inner::after {
		display: none;
	}

	.lo-blog-page__layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.lo-blog-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lo-blog-sidebar__search,
	.lo-blog-sidebar-cta,
	.lo-blog-sidebar .lo-ad-slot--blog-sidebar {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.lo-blog-hero-v2 .lo-hero__inner {
		width: min(100% - var(--lo-container-gutter-mobile), var(--lo-container));
	}
}

@media (max-width: 640px) {
	.lo-blog-hero-v2 {
		padding-block: 22px;
	}

	.lo-blog-hero-v2 .lo-hero__inner {
		gap: 24px;
		padding: 32px 24px;
		border-radius: 12px;
	}

	.lo-blog-hero-v2 .lo-hero__title {
		font-size: clamp(2rem, 11vw, 2.75rem);
	}

	.blog .lo-blog-page,
	.archive .lo-blog-page {
		padding-bottom: 46px;
	}

	.lo-blog-page__before-posts {
		margin-bottom: 14px;
	}

	.lo-blog-page .lo-blog-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.lo-blog-page .lo-blog-card .lo-post-card__media,
	.lo-blog-page .lo-blog-card .lo-post-card__image {
		min-height: 0;
	}

	.lo-blog-page .lo-blog-card .lo-post-card__media {
		aspect-ratio: 16 / 9;
	}

	.lo-blog-page .lo-blog-card .lo-post-card__image {
		height: 100%;
	}

	.lo-blog-page .lo-blog-card .lo-post-card__body {
		padding: 24px 22px;
	}

	.lo-blog-page .lo-blog-card .lo-post-card__title {
		font-size: 1.2rem;
	}

	.lo-blog-sidebar {
		grid-template-columns: 1fr;
	}

	.lo-blog-sidebar__search,
	.lo-blog-sidebar-cta,
	.lo-blog-sidebar .lo-ad-slot--blog-sidebar {
		grid-column: auto;
	}

	.lo-blog-pagination .nav-links {
		gap: 6px;
	}

	.lo-blog-pagination .page-numbers {
		min-width: 38px;
		min-height: 38px;
		padding-inline: 10px;
	}
}

@media (max-width: 390px) {
	.lo-blog-hero-v2 .lo-hero__inner,
	.lo-blog-sidebar__section,
	.lo-blog-sidebar-cta .lo-cta__inner {
		padding: 22px 18px;
	}

	.lo-blog-page .lo-blog-card .lo-post-card__body {
		padding: 22px 18px;
	}

	.lo-blog-pagination .page-numbers.prev,
	.lo-blog-pagination .page-numbers.next {
		width: 100%;
	}
}

.lo-blog-archive-hero-v2 .lo-hero__title {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.category .lo-blog-archive-hero-v2 .lo-hero__image {
	display: block;
	width: min(100%, 320px);
	height: auto;
	max-height: 240px;
	object-fit: contain;
}

@media (max-width: 860px) {
	.category .lo-blog-archive-hero-v2 .lo-hero__media {
		order: initial;
	}

	.category .lo-blog-archive-hero-v2 .lo-hero__image {
		max-height: 200px;
	}
}

@media (max-width: 640px) {
	.category .lo-blog-archive-hero-v2 .lo-hero__image {
		width: min(100%, 260px);
		max-height: 170px;
	}
}

/* Stage 56.5d: search results reuse the native Blog card presentation. */
.search .lo-search-hero {
	background: #f4f7f5;
}

.lo-search-main .lo-search-panel,
.lo-search-main .lo-search-results__list,
.lo-search-main .lo-pagination,
.lo-search-main .lo-empty-state {
	width: 100%;
	max-width: var(--lo-content-width);
	margin-inline: auto;
}

.lo-search-main .lo-search-panel {
	margin-bottom: 28px;
}

/* Stage 56.5e: compact 404 view aligned with the current page heroes. */
.error404 .lo-error-hero {
	padding-block: clamp(48px, 6vw, 72px);
	background: #f4f7f5;
}

.error404 .lo-error-hero .lo-button-outline {
	background: var(--lo-color-white);
}

.error404 .lo-error-main {
	padding-block: 0;
}

.error404 #lo-error-search {
	padding-block: clamp(40px, 6vw, 64px);
}

.error404 .lo-error-card {
	height: auto;
	gap: 14px;
	max-width: 720px;
	padding: 32px;
}

.error404 .lo-error-card:hover {
	border-color: var(--lo-color-border);
	box-shadow: var(--lo-shadow-card);
	transform: none;
}

.error404 .lo-error-card > :is(h2, p) {
	margin: 0;
}

.error404 .lo-error-card .lo-search-form {
	margin-top: 6px;
}

@media (max-width: 720px) {
	.error404 .lo-error-hero {
		padding-block: 44px;
	}

	.error404 .lo-error-hero .lo-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.error404 .lo-error-hero .lo-hero__actions .lo-button {
		width: 100%;
	}

	.error404 #lo-error-search {
		padding-block: 36px;
	}

	.error404 .lo-error-card {
		padding: 24px 20px;
	}
}

.lo-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: var(--lo-z-index-sticky);
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	color: var(--lo-color-white);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	background: var(--lo-color-primary);
	border: 1px solid var(--lo-color-primary-dark);
	border-radius: var(--lo-radius-pill);
	box-shadow: var(--lo-shadow-card-hover);
	transition:
		background-color var(--lo-transition-base),
		box-shadow var(--lo-transition-base),
		transform var(--lo-transition-base);
}

.lo-back-to-top[hidden] {
	display: none;
}

.lo-back-to-top svg {
	display: block;
}

.lo-back-to-top:hover {
	color: var(--lo-color-white);
	background: var(--lo-color-primary-dark);
	box-shadow: var(--lo-shadow-strong);
	transform: translateY(-2px);
}

.lo-back-to-top:focus-visible {
	color: var(--lo-color-white);
	outline: var(--lo-focus-ring);
	outline-offset: 3px;
}

body.admin-bar .lo-back-to-top {
	bottom: 40px;
}

@media (max-width: 600px) {
	.lo-back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}

	body.admin-bar .lo-back-to-top {
		bottom: 62px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.lo-back-to-top {
		transition: none;
	}

	.lo-back-to-top:hover {
		transform: none;
	}
}

.page .lo-about-main {
	width: 100%;
	max-width: none;
	padding: 0 0 72px;
	background: #fbfcfb;
}

.lo-about-hero {
	padding: 36px 0;
	background: #fff;
}

.lo-about-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 48px;
	align-items: center;
	min-height: 430px;
	padding: 58px 64px;
	overflow: hidden;
	background: linear-gradient(120deg, #f8faf9, #f1f6f3);
	border: 1px solid #edf1ef;
	border-radius: 18px;
}

.lo-about-hero__content {
	display: grid;
	gap: 18px;
}

.lo-about-hero__eyebrow {
	margin: 0;
	color: var(--lo-color-primary);
	font-weight: 750;
	letter-spacing: 0.08em;
}

.lo-about-hero h1 {
	margin: 0;
	font-size: clamp(2.8rem, 5vw, 4.75rem);
	line-height: 1.04;
}

.lo-about-hero__description,
.lo-about-hero__description p {
	margin: 0;
}

.lo-about-hero__description {
	color: #374151;
	font-size: clamp(1.05rem, 1.45vw, 1.2rem);
	line-height: 1.75;
}

.lo-about-hero__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 310px;
}

.lo-about-hero__image {
	display: block;
	width: min(100%, 540px);
	max-height: 360px;
	object-fit: contain;
}

.lo-about-hero__fallback {
	position: relative;
	width: min(100%, 430px);
	aspect-ratio: 4 / 3;
}

.lo-about-hero__document {
	position: absolute;
	top: 8%;
	left: 20%;
	width: 57%;
	height: 72%;
	background: #fff;
	border: 2px solid rgb(22 163 74 / 34%);
	border-radius: 14px;
	box-shadow: 0 24px 50px rgb(15 23 42 / 12%);
	transform: rotate(-4deg);
}

.lo-about-hero__document::before,
.lo-about-hero__document::after,
.lo-about-hero__document span {
	position: absolute;
	left: 18%;
	width: 64%;
	height: 5px;
	background: rgb(22 163 74 / 22%);
	border-radius: 5px;
	content: "";
}

.lo-about-hero__document::before { top: 31%; }
.lo-about-hero__document::after { top: 48%; }
.lo-about-hero__document span { top: 65%; }

.lo-about-content {
	display: grid;
	gap: 28px;
	padding-top: 64px;
}

.lo-about-intro-grid,
.lo-about-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.lo-about-section h2 {
	margin: 0 0 16px;
	font-size: clamp(1.55rem, 2.4vw, 2.15rem);
	line-height: 1.2;
}

.lo-about-section p {
	margin: 0;
	color: var(--lo-color-muted);
	line-height: 1.75;
}

.lo-about-section--card,
.lo-about-contact-card {
	padding: 34px;
	background: #fff;
	border: 1px solid #e7ebea;
	border-radius: 12px;
	box-shadow: 0 8px 26px rgb(15 23 42 / 4%);
}

.lo-about-section--origin,
.lo-about-section--trust {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding: 38px 42px;
	background: #f1f8f3;
	border: 1px solid rgb(22 163 74 / 13%);
	border-radius: 14px;
}

.lo-about-section--trust {
	background: #f7f8fa;
}

.lo-about-section__icon {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 800;
	background: var(--lo-color-primary);
	border-radius: 12px;
}

.lo-about-section--find {
	padding: 42px;
	color: #fff;
	background: #111827;
	border-radius: 14px;
}

.lo-about-section--find .lo-about-section__header {
	max-width: 720px;
	margin-bottom: 26px;
}

.lo-about-section--find .lo-caption {
	margin: 0 0 8px;
	color: #86efac;
	font-weight: 700;
}

.lo-about-section--find h2 {
	color: #fff;
}

.lo-about-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 22px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lo-about-feature-list li {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	padding: 15px 17px;
	color: rgb(255 255 255 / 88%);
	background: rgb(255 255 255 / 6%);
	border: 1px solid rgb(255 255 255 / 9%);
	border-radius: 9px;
}

.lo-about-feature-list li span {
	color: #86efac;
	font-weight: 800;
}

.lo-about-admin-card {
	padding: 36px;
	color: #fff;
	background: #111827;
	border-radius: 14px;
}

.lo-about-admin-card .lo-caption,
.lo-about-contact-card .lo-caption {
	margin: 0 0 9px;
	color: var(--lo-color-primary);
	font-weight: 750;
}

.lo-about-admin-card h2,
.lo-about-admin-card h3 {
	color: #fff;
}

.lo-about-admin-card__details {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lo-about-admin-card__details li {
	display: flex;
	gap: 12px;
	align-items: center;
	color: rgb(255 255 255 / 78%);
}

.lo-about-admin-card__details li > span {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	place-items: center;
	color: #86efac;
	background: rgb(255 255 255 / 8%);
	border-radius: 8px;
}

.lo-about-admin-card__details svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lo-about-admin-card__details a {
	color: #fff;
	overflow-wrap: anywhere;
	text-underline-offset: 3px;
}

.lo-about-contact-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lo-about-page__cta {
	width: min(100% - var(--lo-container-gutter), var(--lo-layout-width));
	margin: 28px auto 0;
}

.lo-about-page__cta .lo-container {
	width: 100%;
}

.lo-about-page__cta .lo-cta__inner {
	padding: 38px 42px;
	border-radius: 14px;
}

@media (max-width: 1024px) {
	.lo-about-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
		gap: 32px;
		min-height: 390px;
		padding: 46px;
	}
}

@media (max-width: 768px) {
	.lo-about-hero {
		padding-block: 24px;
	}

	.lo-about-hero__inner,
	.lo-about-intro-grid,
	.lo-about-contact-grid {
		grid-template-columns: 1fr;
	}

	.lo-about-hero__inner {
		gap: 28px;
		padding: 36px;
	}

	.lo-about-hero__media {
		min-height: 250px;
	}

	.lo-about-content {
		padding-top: 42px;
	}
}

@media (max-width: 430px) {
	.page .lo-about-main {
		padding-bottom: 48px;
	}

	.lo-about-hero__inner {
		padding: 28px 22px;
		border-radius: 12px;
	}

	.lo-about-hero h1 {
		font-size: clamp(2.25rem, 13vw, 3rem);
	}

	.lo-about-hero__media {
		min-height: 210px;
	}

	.lo-about-section--card,
	.lo-about-contact-card,
	.lo-about-admin-card,
	.lo-about-section--find {
		padding: 26px 22px;
	}

	.lo-about-section--origin,
	.lo-about-section--trust {
		grid-template-columns: 1fr;
		padding: 26px 22px;
	}

	.lo-about-feature-list {
		grid-template-columns: 1fr;
	}

	.lo-about-page__cta {
		width: min(100% - var(--lo-container-gutter-mobile), var(--lo-container));
	}

	.lo-about-page__cta .lo-cta__inner {
		padding: 28px 22px;
	}
}

/* Stage 55.5: shared visual polish without changing template structure. */
@media (min-width: 769px) {
	:is(.lo-blog-hero-v2, .lo-download-page__hero, .lo-about-hero) {
		padding-block: 36px;
	}

	:is(.lo-blog-hero-v2 .lo-hero__inner, .lo-download-page__hero-inner, .lo-about-hero__inner) {
		box-sizing: border-box;
		height: 350px;
		min-height: 350px;
		padding: 40px clamp(40px, 4vw, 56px);
		background: #ecfdf5;
	}

	:is(.lo-download-page__hero-media, .lo-blog-hero-v2 .lo-hero__media, .lo-about-hero__media) {
		min-height: 0;
		max-height: 270px;
	}

	.lo-download-page__hero-inner {
		height: auto;
		min-height: 380px;
	}

	.lo-download-page__hero-image,
	.lo-about-hero__image {
		max-height: 270px;
	}

	.lo-download-page__device,
	.lo-about-hero__fallback {
		width: min(100%, 400px);
		max-height: 270px;
	}
}

/* Stage 56.4h/56.5c: hero background limited to Download, Posts Page, categories and About. */
:is(
	.lo-download-page__hero-inner,
	.blog .lo-blog-hero-v2 .lo-hero__inner,
	.category .lo-blog-archive-hero-v2 .lo-hero__inner,
	.lo-about-hero__inner
) {
	background: #f4f7f5;
}

@media (min-width: 721px) {
	.site-navigation #site-primary-menu > .menu-item > a {
		transition: color 0.2s ease;
	}

	.site-navigation #site-primary-menu > .menu-item > a:hover,
	.site-navigation #site-primary-menu > .menu-item > a:focus-visible {
		color: var(--lo-color-primary);
		background: transparent;
		box-shadow: none;
	}
}

.site-branding .custom-logo-link,
.site-branding .site-title,
.site-header .language-switcher__current,
.site-header .language-switcher__link,
.site-menu--mobile a {
	transition: color 0.2s ease;
}

.site-branding .custom-logo-link:hover,
.site-branding .custom-logo-link:focus-visible,
.site-branding .site-title:hover,
.site-branding .site-title:focus-visible {
	color: var(--lo-color-primary);
	background: transparent;
	box-shadow: none;
}

.site-header .language-switcher__current:hover,
.site-header .language-switcher__current:focus-visible,
.site-header .language-switcher__dropdown[open] .language-switcher__current,
.site-header .language-switcher__link:hover,
.site-header .language-switcher__link:focus-visible,
.site-menu--mobile a:hover,
.site-menu--mobile a:focus-visible {
	color: var(--lo-color-primary);
	background: transparent;
	box-shadow: none;
}

.site-footer {
	background: #fff;
}

.site-footer .custom-logo-link,
.site-footer__title,
.site-footer__social a,
.site-footer .footer-menu a,
.site-footer__language-list a,
.site-footer__legal a {
	transition: color 0.2s ease;
}

.site-footer .custom-logo-link:hover,
.site-footer .custom-logo-link:focus-visible,
.site-footer__title:hover,
.site-footer__title:focus-visible,
.site-footer__social a:hover,
.site-footer__social a:focus-visible,
.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus-visible,
.site-footer__language-list a:hover,
.site-footer__language-list a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: var(--lo-color-primary);
	background: transparent;
	box-shadow: none;
}

:is(
	.lo-home-module-card,
	.lo-home-download-card,
	.lo-home-post-card,
	.lo-blog-page .lo-blog-card,
	.single-post .lo-related-post-card,
	.lo-download-center-card,
	.lo-download-platform,
	.lo-download-archive-platform
) {
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

:is(
	.lo-home-module-card,
	.lo-home-download-card,
	.lo-home-post-card,
	.lo-blog-page .lo-blog-card,
	.single-post .lo-related-post-card,
	.lo-download-center-card,
	.lo-download-platform,
	.lo-download-archive-platform
):is(:hover, :focus-within) {
	box-shadow: 0 18px 38px rgb(15 23 42 / 10%);
	transform: translateY(-3px);
}

.lo-home-about-v2 {
	padding-bottom: clamp(3.25rem, 6vw, 4.75rem);
}

.lo-home-download-v2 {
	padding-top: clamp(2.9rem, 5vw, 4.3rem);
	padding-bottom: clamp(3.25rem, 5.5vw, 4.5rem);
}

.lo-home-faq-blog-v2 {
	padding-bottom: clamp(3.5rem, 6.5vw, 5rem);
}

.lo-download-page__requirements {
	padding-block: 40px;
}

.lo-download-page__benefits {
	padding-block: 48px 64px;
}

.lo-download-page__support {
	padding-bottom: 56px;
}

.blog .lo-blog-page,
.archive .lo-blog-page {
	padding-bottom: 82px;
}

.lo-ad-slot--filled:not(.lo-floating-ad__slot) {
	box-sizing: border-box;
	max-width: 100%;
	padding: var(--lo-space-2);
	border: 1px solid var(--lo-color-border);
	border-radius: var(--lo-radius-medium);
}

@media (prefers-reduced-motion: reduce) {
	.site-branding .custom-logo-link,
	.site-branding .site-title,
	.site-navigation #site-primary-menu > .menu-item > a,
	.site-header .language-switcher__current,
	.site-header .language-switcher__link,
	.site-menu--mobile a,
	.site-footer a,
	.lo-floating-ad__close,
	:is(
		.lo-home-module-card,
		.lo-home-download-card,
		.lo-home-post-card,
		.lo-blog-page .lo-blog-card,
		.single-post .lo-related-post-card,
		.lo-download-center-card,
		.lo-download-platform,
		.lo-download-archive-platform
	) {
		transition: none;
	}

	:is(
		.lo-home-module-card,
		.lo-home-download-card,
		.lo-home-post-card,
		.lo-blog-page .lo-blog-card,
		.single-post .lo-related-post-card,
		.lo-download-center-card,
		.lo-download-platform,
		.lo-download-archive-platform
	):is(:hover, :focus-within) {
		transform: none;
	}
}
