/* globe — layout-specific wrapper styling (candidate; fold into style.less if preferred)
   Mirrors the .btnStyle()/.orange_13px() patterns already used elsewhere in the theme,
   values expanded to plain CSS since this file is enqueued as-is, no LESS build. */

.layout-globe {
	padding: 2.5rem 0;
	background-color: #fff;
}
@media screen and (min-width: 1660px) {
	.layout-globe {
		padding: 120px 0;
	}
}

.layout-globe .container {
	display: grid;
	gap: 2.5rem;
}
@media screen and (min-width: 1280px) {
	.layout-globe .container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 80px;
		align-items: center;
	}
}

.layout-globe .globe-visual {
	aspect-ratio: 1 / 1;
	background-color: #F6F4EF;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
}
.layout-globe .globe-visual .wb-globe {
	flex: 1;
}

/* eyebrow: <p><em>Vaargebied</em></p> */
.layout-globe .text p:has(em) {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #ff6c2d;
}
.layout-globe .text p:has(em) em {
	font-style: normal;
}

/* heading */
.layout-globe .text h2 {
	font-weight: 900;
	font-size: clamp(40px, 4.4vw, 64px);
	line-height: 0.98;
	letter-spacing: -0.03em;
	margin: 14px 0 20px;
}

/* body copy */
.layout-globe .text p:not(:has(em)):not(:has(strong)) {
	font-size: 17px;
	line-height: 1.7;
	color: #3a3a3a;
	margin-bottom: 16px;
}

/* pills: <ul><li>Noord-Europa</li>...</ul> */
.layout-globe .text ul {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}
.layout-globe .text ul li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 3rem;
	background-color: #fff;
	border: 1px solid #e4e4e4;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #111;
}
.layout-globe .text ul li::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ff6c2d;
	flex: none;
}

/* cta button: <p><strong><a href="...">Neem contact op</a></strong></p> */
.layout-globe .text p:has(strong a) {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	width: 100%;
	text-align: center;
	padding: 16px 28px;
	border-radius: 3rem;
	color: #fff;
	background-color: #ff6c2d;
	border: 1px solid #ff6c2d;
	transition: all 0.25s ease;
}
@media screen and (min-width: 810px) {
	.layout-globe .text p:has(strong a) {
		width: fit-content;
	}
}
.layout-globe .text p:has(strong a) strong a {
	color: inherit;
	font-weight: 600;
}
.layout-globe .text p:has(strong a)::after {
	content: "";
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url(../../images/chevron-right-white.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	transition: all 0.25s ease;
}
.layout-globe .text p:has(strong a):hover {
	background-color: #cc4209;
}
