:root {
	--odo-primary-color: #0f766e;
	--odo-secondary-color: #111827;
	--odo-text-color: #1f2937;
	--odo-background-color: #ffffff;
	--odo-container-width: 1180px;
	--odo-font-family: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--odo-background-color);
	color: var(--odo-text-color);
	font-family: var(--odo-font-family);
	font-size: 16px;
	line-height: 1.7;
}

a {
	color: var(--odo-primary-color);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--odo-secondary-color);
}

img {
	height: auto;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	left: -999em;
}

.skip-link:focus {
	left: 16px;
	top: 16px;
	z-index: 1000;
	background: #fff;
	padding: 10px 14px;
}

.odo-container {
	width: min(100% - 32px, var(--odo-container-width));
	margin-inline: auto;
}

.odo-layout-boxed {
	background: #f3f4f6;
}

.odo-layout-boxed .site-header,
.odo-layout-boxed .site-main,
.odo-layout-boxed .site-footer {
	width: min(100%, calc(var(--odo-container-width) + 64px));
	margin-inline: auto;
	background: var(--odo-background-color);
}

.site-header {
	border-bottom: 1px solid #e5e7eb;
	background: #fff;
}

.site-header--custom {
	border-bottom: 0;
}

.odo-header-component > * {
	margin-top: 0;
	margin-bottom: 0;
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 88px;
}

.odo-header-centered .site-header__inner {
	flex-direction: column;
	justify-content: center;
	padding: 24px 0;
	text-align: center;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	font-size: 24px;
	color: var(--odo-secondary-color);
}

.site-logo img {
	max-height: 72px;
	width: auto;
}

.site-description {
	margin: 4px 0 0;
	color: #6b7280;
	font-size: 14px;
}

.main-navigation {
	margin-left: auto;
}

.odo-header-centered .main-navigation {
	margin-left: 0;
}

.odo-menu,
.odo-footer-menu,
.social-links {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.odo-menu a {
	color: var(--odo-secondary-color);
	font-weight: 600;
}

.header-search {
	max-width: 220px;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 10px 12px;
}

.search-submit,
button,
input[type="submit"],
.wp-block-button__link {
	border: 0;
	border-radius: 8px;
	background: var(--odo-primary-color);
	color: #fff;
	cursor: pointer;
	padding: 10px 16px;
	font-weight: 700;
}

.site-main {
	min-height: 56vh;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	padding: 48px 0;
}

.page-hero {
	padding: 48px 0 24px;
}

.entry-content > *:not(.alignfull):not(.alignwide),
.page-content > .entry-content > *:not(.alignfull):not(.alignwide) {
	width: min(100% - 32px, var(--odo-container-width));
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignwide {
	width: min(100% - 32px, calc(var(--odo-container-width) + 160px));
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.post-card,
.single-post-content,
.comments-area,
.widget {
	margin-bottom: 32px;
}

.post-card {
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 32px;
}

.entry-title,
.page-title {
	margin: 0 0 16px;
	color: var(--odo-secondary-color);
	line-height: 1.2;
}

.entry-meta {
	margin-bottom: 16px;
	color: #6b7280;
	font-size: 14px;
}

.sidebar {
	border-left: 1px solid #e5e7eb;
	padding-left: 32px;
}

.widget-title {
	margin-top: 0;
	font-size: 20px;
}

.site-footer {
	background: var(--odo-secondary-color);
	color: #fff;
	padding: 40px 0;
}

.site-footer a {
	color: #fff;
}

.site-footer__inner {
	display: grid;
	gap: 24px;
}

.footer-copy {
	color: rgba(255, 255, 255, 0.78);
}

.odo-heading {
	margin: 32px 0;
}

.odo-heading h2 {
	margin: 0 0 8px;
	color: var(--odo-secondary-color);
}

.odo-heading p {
	margin: 0;
	color: #6b7280;
}

.odo-heading-center {
	text-align: center;
}

.odo-heading-right {
	text-align: right;
}

.menu-toggle {
	display: none;
}

@media (max-width: 900px) {
	.site-header__inner,
	.odo-menu {
		align-items: flex-start;
		flex-direction: column;
	}

	.main-navigation,
	.header-search {
		display: none;
		margin-left: 0;
		width: 100%;
	}

	.main-navigation.is-open,
	.header-search.is-open {
		display: block;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.content-layout {
		grid-template-columns: 1fr;
	}

	.sidebar {
		border-left: 0;
		border-top: 1px solid #e5e7eb;
		padding-left: 0;
		padding-top: 32px;
	}
}
