:root {
	--greenland-navy: #002337;
	--greenland-green: #3bb554;
	--greenland-blue: #23b5e9;
}

.greenland-cta {
	border-radius: 5px;
	min-height: var(--greenland-cta-height, 500px);
	overflow: hidden;
	position: relative;
}

.greenland-cta .elementor-cta__bg-wrapper,
.greenland-cta .elementor-cta__bg,
.greenland-cta .elementor-cta__bg-overlay {
	inset: 0;
	position: absolute;
}

.greenland-cta .elementor-cta__bg {
	background-position: center;
	background-size: cover;
	transition: transform .6s ease;
}

.greenland-cta .elementor-cta__bg-overlay {
	background: var(--greenland-cta-overlay, #00233780);
	transition: background .3s ease;
}

.greenland-cta:hover .elementor-cta__bg {
	transform: scale(1.1);
}

.greenland-cta:hover .elementor-cta__bg-overlay {
	background: var(--greenland-cta-overlay-hover, #002337cc);
}

.greenland-cta .elementor-cta__content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	inset: auto 0 0;
	padding: 3em;
	position: absolute;
	z-index: 1;
}

.greenland-cta .elementor-cta__description,
.greenland-cta .elementor-cta__title {
	color: #fff;
}

.greenland-cta .elementor-cta__description {
	font-size: var(--greenland-cta-font, 24px);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 35px;
}

.greenland-cta .elementor-cta__button {
	background: var(--greenland-green);
	border: 3px solid #fff;
	color: #fff;
}

.greenland-posts {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.greenland-post-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 14px rgb(0 35 55 / 10%);
	overflow: hidden;
}

.greenland-post-image {
	aspect-ratio: 16 / 10;
	display: block;
	overflow: hidden;
}

.greenland-post-image img {
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
	width: 100%;
}

.greenland-post-card:hover img {
	transform: scale(1.04);
}

.greenland-post-content {
	display: flex;
	flex-direction: column;
	padding: 16px;
}

.greenland-post-content time {
	color: #67737a;
	font-size: 12px;
	margin-top: 20px;
	order: 4;
}

.elementor .greenland-post-content h3 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 12px;
}

.greenland-post-content h3 a {
	color: var(--greenland-navy);
}

.greenland-read-more {
	color: var(--greenland-navy);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.greenland-post-content p {
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 14px;
}

.greenland-pagination ul {
	display: flex;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

.greenland-pagination a,
.greenland-pagination span {
	border: 1px solid #d7dde0;
	display: block;
	padding: 8px 12px;
}

.greenland-blockquote {
	background: #fff;
	border-radius: 5px;
	margin: 0;
	padding: 32px;
	text-align: center;
}

.greenland-blockquote .elementor-blockquote__content {
	color: var(--greenland-navy);
	font-size: 1.3rem;
	font-weight: 600;
}

.greenland-blockquote .elementor-blockquote__author {
	color: var(--greenland-green);
	margin-top: 12px;
}

.greenland-accordion-item {
	border-bottom: 1px solid #d2d2d2;
}

.greenland-accordion-button {
	appearance: none;
	align-items: center;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #212529 !important;
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 18px;
	font-weight: 500;
	justify-content: space-between;
	padding: 28px 0;
	text-align: left;
	width: 100%;
}

.greenland-accordion-icon::before {
	content: "⌄";
	display: block;
	font-size: 18px;
	line-height: 1;
}

.greenland-accordion-item.is-open .greenland-accordion-button {
	color: var(--greenland-navy) !important;
}

.greenland-accordion-item.is-open .greenland-accordion-icon::before {
	content: "⌃";
}

.greenland-accordion-content {
	display: none;
	padding: 0 0 28px;
}

.greenland-accordion-item.is-open .greenland-accordion-content {
	display: block;
}

.greenland-team-card {
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.greenland-team-card > img {
	aspect-ratio: 4 / 5;
	display: block;
	object-fit: cover;
	width: 100%;
}

.greenland-team-overlay {
	background: linear-gradient(transparent, rgb(0 35 55 / 92%));
	bottom: 0;
	color: #fff;
	inset-inline: 0;
	padding: 70px 24px 24px;
	position: absolute;
	transform: translateY(52px);
	transition: transform .3s ease;
}

.greenland-team-card:hover .greenland-team-overlay {
	transform: translateY(0);
}

.greenland-team-overlay h3,
.greenland-team-overlay p {
	color: inherit;
	margin: 0 0 6px;
}

.greenland-team-social {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.greenland-team-social a {
	align-items: center;
	background: var(--greenland-green);
	border-radius: 5px;
	color: #fff;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.greenland-nav {
	position: relative;
}

.greenland-menu {
	align-items: center;
	display: flex;
	gap: 35px;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.greenland-nav-left .greenland-menu {
	justify-content: flex-start;
}

.greenland-nav-center .greenland-menu {
	justify-content: center;
}

.greenland-menu li {
	position: relative;
}

.greenland-menu a {
	color: var(--greenland-navy);
	display: block;
	padding: 16px 0;
}

.greenland-menu a:hover,
.greenland-menu .current-menu-item > a {
	color: var(--greenland-green);
}

.greenland-menu .sub-menu {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 30px rgb(0 0 0 / 5%);
	display: none;
	left: 0;
	list-style: none;
	min-width: 210px;
	padding: 10px 20px;
	position: absolute;
	top: 100%;
	z-index: 100;
}

.greenland-menu li:hover > .sub-menu,
.greenland-menu li:focus-within > .sub-menu {
	display: block;
}

.greenland-menu-toggle {
	background: #fff;
	border: 0;
	display: none !important;
	margin-left: auto;
	padding: 10px;
}

.greenland-menu-toggle > span:not(.screen-reader-text) {
	background: var(--greenland-navy);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 28px;
}

.greenland-form-fields {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

.greenland-form-fields label:first-of-type {
	grid-column: 1 / -1;
}

.greenland-form-fields input {
	background: #fff;
	border: 1px solid rgb(0 0 0 / 25%);
	border-radius: 3px;
	min-height: 48px;
	padding: 10px 14px;
	width: 100%;
}

.greenland-form-fields button {
	background: var(--greenland-green);
	border: 1px solid #fff;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	grid-column: 1 / -1;
	min-height: 48px;
}

.greenland-honeypot {
	left: -9999px !important;
	position: absolute !important;
}

.greenland-form-message {
	margin-bottom: 12px;
	padding: 10px 14px;
}

.greenland-form-success {
	background: #e9f8ec;
	color: #175c25;
}

.greenland-form-error {
	background: #fdecec;
	color: #842029;
}

@media (max-width: 1024px) {
	.greenland-posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.greenland-cta .elementor-cta__description {
		font-size: var(--greenland-cta-font-tablet, 24px);
	}
}

@media (max-width: 767px) {
	.greenland-cta {
		min-height: 300px;
	}

	.greenland-cta .elementor-cta__content {
		padding: 2em;
	}

	.greenland-cta .elementor-cta__description {
		font-size: var(--greenland-cta-font-mobile, 24px);
	}

	.greenland-posts,
	.greenland-form-fields {
		grid-template-columns: 1fr;
	}

	.greenland-menu-toggle {
		display: block !important;
	}

	.greenland-menu {
		align-items: stretch;
		background: #fff;
		box-shadow: 0 15px 30px rgb(0 35 55 / 10%);
		display: none;
		flex-direction: column;
		gap: 0;
		inset: 100% 0 auto;
		padding: 10px 20px;
		position: absolute;
		z-index: 1000;
	}

	.greenland-menu.is-open {
		display: flex;
	}

	.greenland-menu .sub-menu {
		box-shadow: none;
		display: block;
		padding-left: 20px;
		position: static;
	}

	.greenland-form-fields label,
	.greenland-form-fields button {
		grid-column: auto;
	}

	.greenland-accordion-button {
		font-size: 14px;
		padding: 20px 0;
	}
}
