/*
Theme Name: Odon Solar
Description: A custom block theme.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: odon-solar
Tags: full-site-editing, block-patterns, block-styles, wide-blocks, accessibility-ready, style-variations
*/

/* WordPress inserts margin-block-start: var(--wp--style--block-gap) between the
   template's top-level sections (header part, main, footer part) — a gap that
   exists even when no markup asks for it. Zero it so sections butt edge-to-edge
   and own their vertical rhythm via padding; this does not affect block gaps
   inside nested layouts. */
.wp-site-blocks > * + * {
	margin-block-start: 0;
}

/* === variables === */
:root {
	--os-orange: var(--wp--preset--color--primary-orange);
	--os-orange-dark: var(--wp--preset--color--primary-orange-dark);
	--os-green: var(--wp--preset--color--accent-green);
	--os-green-dark: var(--wp--preset--color--accent-green-dark);
	--os-deep-green: var(--wp--preset--color--deep-green);
	--os-deep-green-darker: var(--wp--preset--color--deep-green-darker);
	--os-yellow: var(--wp--preset--color--accent-yellow);
	--os-cream: var(--wp--preset--color--cream);
	--os-gray: var(--wp--preset--color--gray);
}

/* === base === */
body {
	background: var(--os-cream);
}

h1, h2, h3, h4, h5, h6 {
	letter-spacing: -0.01em;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	font-size: 0.8125rem;
}

/* === header === */
.site-header {
	position: relative;
	z-index: 40;
}

.site-header__brand {
	gap: 12px;
}

.site-header__title a {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--os-deep-green-darker);
	text-decoration: none;
	line-height: 1.1;
	white-space: nowrap;
}

.site-header__tagline {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--os-green-dark);
	margin: 0;
}

.site-header__nav {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600;
	font-size: 0.9375rem;
	flex-wrap: nowrap !important;
	flex-shrink: 1;
}

.site-header__nav .wp-block-navigation__container {
	flex-wrap: nowrap;
}

.site-header__nav .wp-block-navigation-item > a,
.site-header__nav .wp-block-navigation-item > .wp-block-navigation-item__content {
	color: var(--os-deep-green-darker);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	padding: 8px 10px;
	white-space: nowrap;
}

.site-header__nav .wp-block-navigation-item > a:hover {
	color: var(--os-green-dark);
}

.site-header__cta {
	flex-shrink: 0;
}

.site-header__cta .wp-element-button {
	background: var(--os-yellow);
	color: var(--os-deep-green-darker);
	font-family: var(--wp--preset--font-family--heading);
	text-transform: uppercase;
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	padding: 10px 26px;
	white-space: nowrap;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-header__cta .wp-element-button:hover {
	background: var(--os-orange);
	transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
	.site-header__cta .wp-element-button {
		transition: none;
	}
}

/* === buttons === */
.wp-block-button .wp-element-button {
	padding: 14px 30px;
	font-family: var(--wp--preset--font-family--heading);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wp-block-button.is-style-fill .wp-element-button {
	background: var(--os-yellow);
	color: var(--os-deep-green-darker);
}

.wp-block-button.is-style-fill .wp-element-button:hover {
	background: var(--os-orange);
	transform: translateY(-1px);
}

.wp-block-button.is-style-outline .wp-element-button {
	background: transparent;
	color: var(--os-deep-green-darker);
	box-shadow: inset 0 0 0 2px var(--os-deep-green-darker);
}

.wp-block-button.is-style-outline .wp-element-button:hover {
	background: var(--os-deep-green-darker);
	color: var(--wp--preset--color--base);
}

.wp-block-button.is-style-dark .wp-element-button {
	background: var(--os-deep-green-darker);
	color: var(--wp--preset--color--base);
}

.wp-block-button.is-style-dark .wp-element-button:hover {
	background: var(--os-deep-green);
}

@media (prefers-reduced-motion: reduce) {
	.wp-block-button .wp-element-button {
		transition: none;
	}
}

/* === hero === */
.hero__row {
	gap: 48px;
	align-items: center;
}

.hero__title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.05;
	color: var(--os-deep-green-darker);
	margin-bottom: 20px;
}

.hero__title-orange {
	color: var(--os-orange);
}

.hero__lead {
	font-size: 1.125rem;
	color: var(--os-gray);
	max-width: 32em;
	margin-bottom: 28px;
}

.hero__buttons {
	gap: 16px;
}

.hero__image img {
	border-radius: 20px;
}

/* === sections === */
.eyebrow {
	color: var(--os-green-dark);
}

.funders {
	text-align: center;
}

.funders__label {
	color: var(--os-green);
	margin-bottom: 16px;
}

.funders__row {
	gap: 8px 40px;
}

.funders__item {
	color: rgba(255,255,255,0.85);
	font-weight: 600;
	font-size: 0.9375rem;
	margin: 0;
}

.project__row,
.about__row {
	gap: 56px;
	align-items: center;
}

.project__title,
.about__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--os-deep-green-darker);
	margin: 12px 0 20px;
}

.project__lead,
.about__lead {
	color: var(--os-gray);
	font-size: 1.0625rem;
	margin-bottom: 20px;
}

.project__steps {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.project__steps li {
	color: var(--os-deep-green-darker);
}

.project__steps strong {
	color: var(--os-orange-dark);
	margin-right: 6px;
}

.project__link a,
.about__link a {
	color: var(--os-green-dark);
	font-weight: 700;
	text-decoration: none;
}

.project__link a:hover,
.about__link a:hover {
	color: var(--os-deep-green-darker);
}

.project__image img,
.about__image img {
	border-radius: 20px;
}

.why__title {
	color: var(--os-deep-green-darker);
	margin-bottom: 40px;
}

.why__row {
	gap: 32px;
}

.why__icon {
	margin-bottom: 12px;
}

.why__icon .icon-container {
	color: var(--os-orange-dark);
}

.why__item-title {
	color: var(--os-deep-green-darker);
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.why__item p:last-child {
	color: rgba(22,26,22,0.7);
	font-size: 0.9375rem;
}
/* === cards === */
/* === cta === */
.cta-band {
	text-align: center;
}

.cta-band__title {
	color: var(--wp--preset--color--base);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 12px;
}

.cta-band__lead {
	color: rgba(255,255,255,0.9);
	max-width: 34em;
	margin: 0 auto 28px;
}

/* === footer === */
.site-footer__top {
	margin-bottom: 48px;
}

.site-footer__title a {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--wp--preset--color--base);
	text-decoration: none;
}

.site-footer__tagline {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--os-green);
	margin: 0;
}

.site-footer__desc {
	margin-top: 16px;
	color: rgba(255,255,255,0.75);
	max-width: 26em;
}

.site-footer__nav .wp-block-navigation-item > a {
	color: rgba(255,255,255,0.85);
	padding: 4px 0;
	font-size: 0.9375rem;
}

.site-footer__nav .wp-block-navigation-item > a:hover {
	color: var(--os-yellow);
}

.site-footer__label {
	color: var(--os-green);
	margin-bottom: 8px;
}

.site-footer__label:nth-of-type(2) {
	margin-top: 24px;
}

.site-footer__email-row {
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
}

.site-footer__email-icon .icon-container {
	background: var(--wp--preset--color--base);
	color: var(--os-deep-green-darker);
	border-radius: 999px;
	padding: 8px !important;
	box-sizing: content-box !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-footer__email a {
	color: rgba(255,255,255,0.9);
}

.site-footer__social {
	margin-top: 4px;
}

.site-footer__social .wp-block-social-link {
	background: rgba(255,255,255,0.12);
}

.site-footer__social .wp-block-social-link:hover {
	background: var(--os-green);
}

.site-footer__legal {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 24px;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.site-footer__copy,
.site-footer__copy a {
	color: rgba(255,255,255,0.6);
	font-size: 0.8125rem;
	margin: 0;
}

/* === news single === */
.single-hero {
	align-items: flex-end;
}

.single-hero__back a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}

.single-hero__back a:hover {
	color: var(--os-orange);
}

.single-meta__pills {
	margin-bottom: 16px;
}

.single-meta__pills a {
	display: inline-block;
	background: var(--os-cream);
	color: var(--os-orange-dark);
	border: 1px solid var(--os-orange);
	border-radius: 999px;
	padding: 4px 14px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	margin: 0 6px 6px 0;
}

.single-meta__row {
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.single-meta__eyebrow {
	color: var(--os-green-dark);
	margin: 0;
}

.single-meta__dot {
	color: var(--os-gray);
	margin: 0;
}

.single-meta__date {
	color: var(--os-gray);
	font-size: 0.875rem;
}

.single-meta__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--os-deep-green-darker);
	margin: 0 0 16px;
}

.single-meta__lead {
	font-size: 1.125rem;
	color: var(--os-deep-green-darker);
	font-weight: 500;
}

.single-meta__divider {
	max-width: 120px;
	margin: 32px auto 0;
}

.single-post__content {
	padding-top: 48px;
	padding-bottom: 64px;
}

.single-post__content p {
	color: var(--os-gray);
	font-size: 1.0625rem;
}

.single-post__content h2 {
	margin-top: 2em;
	color: var(--os-deep-green-darker);
}

.single-post__content img {
	border-radius: 12px;
}

.related__divider {
	margin-bottom: 32px;
}

.related__title {
	margin-bottom: 32px;
}

.related__grid {
	gap: 32px;
}

.related__card {
	border: 1px solid rgba(22,26,22,0.1);
	border-radius: 12px;
	overflow: hidden;
	padding-bottom: 20px;
}

.related__image img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.related__category {
	margin: 16px 20px 8px;
	color: var(--os-green-dark);
}

.related__category a {
	text-decoration: none;
}

.related__card-title {
	margin: 0 20px;
	font-size: 1.125rem;
}

.related__card-title a {
	color: var(--os-deep-green-darker);
	text-decoration: none;
}

.news-cta__title {
	color: var(--os-deep-green-darker);
	margin-bottom: 12px;
}

.news-cta__lead {
	text-align: center;
	color: var(--os-deep-green-darker);
	max-width: 560px;
	margin: 0 auto 32px;
}

.news-cta__form-row {
	flex-wrap: wrap;
	width: 100%;
}

.news-cta__form {
	width: 100%;
	max-width: 420px;
	box-sizing: border-box;
}

.news-cta__form .wp-block-search__inside-wrapper {
	border-radius: 999px;
	overflow: hidden;
	gap: 12px;
	width: 100%;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.news-cta__form .wp-block-search__input {
	border: none;
	border-radius: 999px;
	padding: 14px 22px;
	flex: 1 1 300px;
	width: auto;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.news-cta__form .wp-block-search__button {
	background: var(--os-deep-green-darker);
	color: #fff;
	border-radius: 999px;
	padding: 14px 26px;
	text-transform: uppercase;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	font-weight: 700;
	border: none;
	flex-shrink: 0;
	white-space: nowrap;
}

.news-cta__form .wp-block-search__button:hover {
	background: var(--os-deep-green);
}

/* === forms === */
.contact-hero__eyebrow {
	color: var(--os-green);
}

.contact-hero__title {
	color: var(--wp--preset--color--base);
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-top: 12px;
}

.contact__title {
	color: var(--os-deep-green-darker);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	max-width: 12em;
	margin-bottom: 32px;
}

.contact__address {
	border-left: 3px solid var(--os-green);
	padding-left: 20px;
}

.contact__label {
	color: var(--os-orange-dark);
	margin-bottom: 8px;
}

.contact__place {
	color: var(--os-deep-green-darker);
	font-weight: 700;
	font-size: 1.25rem;
	margin: 0;
}

.contact__region {
	color: var(--os-green-dark);
	font-weight: 700;
	font-size: 1.25rem;
	margin: 0;
}

.contact__form {
	border: 1px solid var(--os-green);
	border-radius: 4px;
	padding: 32px;
}

.contact__form {
	width: 100%;
	box-sizing: border-box;
	flex-direction: column;
	border: none !important;
	padding: 0 !important;
}

.jetpack-contact-form-container {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--os-green);
	border-radius: 4px;
	padding: 32px;
}

.contact-form {
	width: 100%;
}

.contact-submit {
	margin: 24px 0 0;
}

.contact__form .grunion-field-label {
	color: var(--os-gray);
	font-weight: 600;
	font-size: 0.9375rem;
	margin-bottom: 8px;
}

.contact__form .grunion-label-required {
	font-weight: 400;
	color: rgba(22,26,22,0.45);
	font-size: 0.8125rem;
	margin-left: 4px;
}

.contact__form input.grunion-field,
.contact__form textarea.grunion-field {
	border: none !important;
	border-bottom: 1px solid rgba(22,26,22,0.2) !important;
	border-radius: 0 !important;
	padding: 8px 0;
	width: 100%;
	background: transparent;
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	color: var(--os-deep-green-darker);
}

.contact__form textarea.grunion-field {
	min-height: 96px;
	resize: vertical;
}

.contact__form input.grunion-field:focus,
.contact__form textarea.grunion-field:focus {
	outline: none;
	border-bottom-color: var(--os-green) !important;
}

.contact__form .contact-submit {
	margin: 0;
}

.pushbutton-wide {
	background: var(--os-orange);
	color: var(--os-deep-green-darker);
	font-family: var(--wp--preset--font-family--heading);
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	border: none;
	border-radius: 999px;
	padding: 16px 32px;
	width: 100%;
	box-sizing: border-box;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.pushbutton-wide:hover {
	background: var(--os-orange-dark);
	transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
	.pushbutton-wide {
		transition: none;
	}
}

/* === news hero === */
.news-hero__eyebrow {
	color: var(--os-green);
}

.news-hero__title {
	color: var(--wp--preset--color--base);
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-top: 12px;
}

/* === news filters === */
.news-filters__row {
	gap: 16px 24px;
	align-items: center;
}

.news-filters__pills {
	gap: 10px;
}

.news-filters__pill .wp-element-button {
	padding: 10px 22px;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.news-filters__pill.is-style-outline .wp-element-button {
	box-shadow: inset 0 0 0 1px rgba(22,26,22,0.2);
	color: var(--os-gray);
}

.news-filters__pill.is-style-outline .wp-element-button:hover {
	background: var(--os-cream);
	color: var(--os-deep-green-darker);
}

.news-filters__search {
	flex-grow: 0;
	box-sizing: border-box;
	max-width: 100%;
}

.news-filters__search .wp-block-search__inside-wrapper {
	box-sizing: border-box;
	max-width: 100%;
}

.news-filters__search .wp-block-search__input {
	border-radius: 999px;
	border-color: rgba(22,26,22,0.2);
	padding: 10px 20px;
	width: 260px;
	max-width: 100%;
	box-sizing: border-box;
}

.news-filters__search .wp-block-search__button {
	border-radius: 999px;
	background: transparent;
	color: var(--os-deep-green-darker);
	fill: var(--os-deep-green-darker);
	margin-right: 4px;
}

/* === news list === */
.news-list__grid {
	gap: 48px 56px;
}

.news-card__meta {
	align-items: baseline;
	margin-bottom: 12px;
}

.news-card__category {
	color: var(--os-green-dark);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
}

.news-card__date {
	color: rgba(22,26,22,0.5);
	font-size: 0.875rem;
}

.news-card__divider {
	border-top: 1px solid rgba(22,26,22,0.12);
	margin-bottom: 24px;
}

.news-card__row {
	gap: 24px;
}

.news-card__title {
	color: var(--os-deep-green-darker);
	font-size: 1.375rem;
	line-height: 1.25;
	margin-bottom: 12px;
}

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

.news-card__title a:hover {
	color: var(--os-green-dark);
}

.news-card__excerpt {
	color: var(--os-gray);
	font-size: 0.9375rem;
	margin-bottom: 16px;
}

.news-card__link a {
	color: var(--os-orange-dark);
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
}

.news-card__link a:hover {
	color: var(--os-orange);
}

.news-card__image img {
	border-radius: 12px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
}

/* === participa hero === */
.participa-hero__eyebrow {
	color: var(--os-green);
}

.participa-hero__title {
	color: var(--wp--preset--color--base);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	margin: 12px 0 16px;
}

.participa-hero__lead {
	color: rgba(255,255,255,0.85);
	max-width: 32em;
	margin-bottom: 24px;
}

/* === benefits === */
.benefits__title {
	color: var(--os-deep-green-darker);
	margin-bottom: 40px;
}

.benefits__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
}

.benefits__list > .benefits__item {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.benefits__item {
	gap: 16px;
	align-items: flex-start;
}

.benefits__arrow-icon {
	margin-top: 4px;
}

.benefits__arrow-icon .icon-container {
	color: var(--os-orange);
}

.benefits__item p:last-child {
	color: var(--os-deep-green-darker);
	font-size: 1.0625rem;
	margin: 0;
}

/* === faq === */
.faq__title {
	color: var(--os-deep-green-darker);
	margin-bottom: 40px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__item {
	border: 1px solid rgba(22,26,22,0.12);
	border-radius: 12px;
	padding: 16px 20px;
}

.faq__item summary {
	font-weight: 700;
	color: var(--os-deep-green-darker);
	cursor: pointer;
}

.faq__item p {
	color: var(--os-gray);
	margin-top: 12px;
}

/* === pilot === */
.pilot__badge {
	display: inline-block;
	background: rgba(255,255,255,0.4);
	color: var(--os-deep-green-darker);
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.pilot__title {
	color: var(--os-deep-green-darker);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	max-width: 24em;
	margin-bottom: 16px;
}

.pilot__lead {
	color: rgba(22,26,22,0.75);
	max-width: 42em;
	margin-bottom: 40px;
	font-size: 1.0625rem;
}

.pilot__flow {
	gap: 24px;
}

.pilot__flow-item {
	background: rgba(255,255,255,0.5);
	border-radius: 16px;
	padding: 24px;
}

.pilot__flow-number {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--os-deep-green-darker);
	margin-bottom: 4px;
}

.pilot__flow-title {
	color: var(--os-deep-green-darker);
	font-size: 1.0625rem;
	margin-bottom: 8px;
}

.pilot__flow-item p:last-child {
	color: rgba(22,26,22,0.75);
	font-size: 0.9375rem;
}

/* === install === */
.install__row {
	gap: 56px;
}

.install__title {
	color: var(--os-deep-green-darker);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 20px;
}

.install__lead {
	color: var(--os-gray);
	font-size: 1.0625rem;
}

.install__image img {
	border-radius: 20px;
}

/* === lines === */
.lines__eyebrow {
	margin-bottom: 32px;
}

.lines__list {
	display: flex;
	flex-direction: column;
}

.lines__row {
	align-items: flex-start;
	gap: 24px;
	padding: 32px 0;
	border-bottom: 1px solid rgba(22,26,22,0.08);
	width: 100%;
}

.lines__row:first-child {
	border-top: 1px solid rgba(22,26,22,0.08);
}

.lines__dash {
	margin: 20px 0 0;
	color: var(--os-green);
	flex-shrink: 0;
	width: 32px;
}

.lines__content {
	flex-grow: 1;
}

.lines__name {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	margin: 0 0 12px;
	color: var(--os-green);
}

.lines__desc {
	color: var(--os-green-dark);
	text-transform: uppercase;
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	margin: 0;
	max-width: 520px;
}

.lines__status {
	flex-shrink: 0;
	width: 200px;
	margin: 24px 0 0;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--os-green);
}

.lines__row--progress .lines__dash,
.lines__row--progress .lines__name {
	color: var(--os-deep-green-darker);
}

.lines__row--progress .lines__desc {
	color: var(--os-gray);
	text-transform: none;
	font-size: 1rem;
	letter-spacing: normal;
}

.lines__row--progress .lines__status {
	color: var(--os-deep-green-darker);
}

.lines__row--inactive .lines__dash,
.lines__row--inactive .lines__name {
	color: var(--os-gray);
}

.lines__row--inactive .lines__desc {
	color: var(--os-gray);
	text-transform: none;
	font-size: 1rem;
	letter-spacing: normal;
}

.lines__row--inactive .lines__status {
	color: var(--os-gray);
}

.lines__row--started .lines__desc {
	color: var(--os-green);
}

@media (max-width: 600px) {
	.lines__row {
		flex-wrap: wrap;
	}

	.lines__status {
		width: 100%;
		margin-top: 4px;
	}
}

/* === area === */
.area__title {
	color: var(--os-deep-green-darker);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 16px;
}

.area__lead {
	color: rgba(22,26,22,0.75);
	margin-bottom: 24px;
}

.area__image img {
	border-radius: 20px;
}

/* === page hero === */
.page-hero__eyebrow {
	color: var(--os-green);
}

.page-hero__title {
	color: var(--wp--preset--color--base);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	margin-top: 12px;
}

/* === history === */
.history__row {
	gap: 56px;
}

.history__title {
	color: var(--os-deep-green-darker);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 20px;
}

.history__text {
	color: var(--os-gray);
	font-size: 1.0625rem;
	margin-bottom: 16px;
}

.history__image img {
	border-radius: 20px;
}

/* === values === */
.values__title {
	margin-bottom: 40px;
}

.values__row {
	gap: 32px;
	margin-bottom: 16px;
}

.values__item-title {
	font-size: 1.125rem;
	margin-bottom: 8px;
	color: var(--wp--preset--color--base);
}

.values__icon {
	margin-bottom: 12px;
}

.values__icon .icon-container {
	color: var(--os-green);
}

.values__item p:last-child {
	color: rgba(255,255,255,0.75);
	font-size: 0.9375rem;
}

/* === org === */
.org__title {
	color: var(--os-deep-green-darker);
	margin-bottom: 40px;
}

.org__row {
	gap: 32px;
}

.org__item {
	border-left: 3px solid var(--os-green);
	padding-left: 20px;
}

.org__item-title {
	color: var(--os-deep-green-darker);
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.org__item p:last-child {
	color: var(--os-gray);
	font-size: 0.9375rem;
}

/* === docs === */
.docs__title {
	margin-bottom: 8px;
}

.docs__lead {
	color: rgba(255,255,255,0.75);
	margin-bottom: 40px;
}

.docs__list {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.docs__item {
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 12px;
	padding: 20px 24px;
	align-items: center;
}

.docs__item-title {
	font-weight: 700;
	margin: 0;
}

.docs__item-label {
	gap: 12px;
	align-items: center;
}

.docs__icon .icon-container {
	color: var(--os-green);
}

.is-style-outline-light .wp-element-button {
	background: transparent;
	color: var(--wp--preset--color--base);
	box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
	padding: 8px 20px;
	font-size: 0.8125rem;
}

.is-style-outline-light .wp-element-button:hover {
	background: var(--wp--preset--color--base);
	color: var(--os-deep-green-darker);
	box-shadow: inset 0 0 0 2px var(--wp--preset--color--base);
}

/* === responsive === */
