@charset "UTF-8";

.file-weltweit-detail {
	--content-detail-accent: #203a1d;
	--content-detail-accent-soft: #79ad4b;
	--content-detail-muted: #5c6b58;
	--content-detail-surface: #f8f6f1;
	--content-detail-border: rgba(32, 58, 29, 0.12);
	--content-detail-radius: 12px;
	--ww-chip-yes-bg: rgba(121, 173, 75, 0.14);
	--ww-chip-yes-border: rgba(121, 173, 75, 0.45);
	--ww-chip-no-bg: #fff;
	--ww-chip-no-border: rgba(32, 58, 29, 0.16);
}

.file-weltweit-detail .content-detail-article {
	max-width: 48rem;
	margin: 0 auto;
}

.file-weltweit-detail .weltweit-detail-map {
	margin-bottom: 2.5rem;
}

.file-weltweit-detail .weltweit-detail-intro {
	font-size: 1.05rem;
	line-height: 1.55;
	margin: 0 0 1.5rem;
	color: var(--content-detail-muted);
}

.ww-world-map {
	margin-bottom: 2rem;
}

.ww-world-map__title {
	margin-bottom: 0.75rem;
	line-height: 1.35;
}

.ww-world-map__lead {
	margin: 0 0 1rem;
	line-height: 1.55;
	color: var(--content-detail-muted, #5c6b58);
}

.ww-map-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.25rem;
	margin: 0 0 1rem;
	font-size: 0.92rem;
	color: var(--content-detail-muted, #5c6b58);
}

.ww-map-legend__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.ww-map-legend__swatch {
	width: 0.95rem;
	height: 0.95rem;
	border-radius: 3px;
	border: 1px solid rgba(32, 58, 29, 0.18);
	flex-shrink: 0;
}

.ww-map-legend__item--yes .ww-map-legend__swatch {
	background: #79ad4b;
}

.ww-map-legend__item--no .ww-map-legend__swatch {
	background: #f5f5f5;
}

.ww-world-map__canvas,
.file-weltweit-detail #regions_div,
.file-weltweit-detail .belieferte-laender-map__chart {
	width: 100%;
	min-height: 400px;
	aspect-ratio: 2 / 1;
}

.jvm-belieferte-laender-map,
.file-weltweit-detail .jvm-belieferte-laender-map {
	background: var(--content-detail-surface, #f8f6f1);
	border: 1px solid var(--content-detail-border, rgba(32, 58, 29, 0.12));
	border-radius: var(--content-detail-radius, 12px);
	overflow: hidden;
}

.jvm-belieferte-laender-map .jvm-zoom-btn,
.file-weltweit-detail .jvm-belieferte-laender-map .jvm-zoom-btn {
	background: #fff;
	border: 1px solid #b8bec6;
	color: #203a1d;
}

.jvm-belieferte-laender-map .jvm-zoom-btn:hover,
.file-weltweit-detail .jvm-belieferte-laender-map .jvm-zoom-btn:hover {
	background: #eef0f3;
}

.ww-country-section {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--content-detail-border, rgba(32, 58, 29, 0.12));
}

.ww-country-section__title {
	margin: 0 0 0.85rem;
	font-size: 1.05rem;
}

.ww-country-section__headline {
	margin: 0 0 0.75rem;
}

.ww-country-section__copy {
	margin-bottom: 1rem;
	line-height: 1.55;
	color: var(--content-detail-muted, #5c6b58);
}

.ww-country-section__copy p {
	margin: 0 0 0.75rem;
}

.ww-country-section__copy p:last-child {
	margin-bottom: 0;
}

.ww-country-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.ww-country-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	font-size: 0.92rem;
	line-height: 1.3;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ww-country-chip:hover,
.ww-country-chip:focus-visible {
	text-decoration: none;
	transform: translateY(-1px);
}

.ww-country-chip--yes {
	background: var(--ww-chip-yes-bg);
	border-color: var(--ww-chip-yes-border);
	color: #203a1d;
}

.ww-country-chip--yes:hover,
.ww-country-chip--yes:focus-visible {
	background: rgba(121, 173, 75, 0.22);
}

.ww-country-chip--no {
	background: var(--ww-chip-no-bg);
	border-color: var(--ww-chip-no-border);
	color: #3d4a3a;
}

.ww-country-chip--no:hover,
.ww-country-chip--no:focus-visible {
	border-color: rgba(121, 173, 75, 0.45);
	color: #203a1d;
}

.ww-continent-list .ww-continent-panel {
	margin-bottom: 0.75rem;
	border: 1px solid var(--content-detail-border, rgba(32, 58, 29, 0.12));
	border-radius: var(--content-detail-radius, 12px);
	overflow: hidden;
	background: #fff;
}

.ww-continent-panel__head {
	font-weight: 600;
}

.ww-continent-panel__body {
	padding: 0.85rem 0.95rem 1rem;
	background: var(--content-detail-surface, #f8f6f1);
}

.ww-country-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}

@media (min-width: 576px) {
	.ww-country-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.ww-country-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ww-country-card {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.75rem 0.85rem;
	border-radius: 10px;
	border: 1px solid var(--content-detail-border, rgba(32, 58, 29, 0.12));
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	min-height: 100%;
}

.ww-country-card:hover,
.ww-country-card:focus-visible {
	text-decoration: none;
	border-color: rgba(121, 173, 75, 0.55);
	box-shadow: 0 4px 14px rgba(32, 58, 29, 0.08);
	transform: translateY(-1px);
	color: inherit;
}

.ww-country-card__flag {
	margin-bottom: 0.15rem;
}

.ww-country-card__name {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	color: #203a1d;
}

.ww-country-card__teaser {
	font-size: 0.85rem;
	line-height: 1.4;
	color: var(--content-detail-muted, #5c6b58);
}

.file-weltweit-detail .toggle-bg {
	margin-bottom: 0;
}

.ww-map-toolbar {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.ww-continent-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.ww-continent-filter__btn {
	border: 1px solid var(--content-detail-border, rgba(32, 58, 29, 0.16));
	background: #fff;
	color: #203a1d;
	border-radius: 999px;
	padding: 0.3rem 0.75rem;
	font-size: 0.88rem;
	line-height: 1.3;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ww-continent-filter__btn:hover,
.ww-continent-filter__btn:focus-visible {
	border-color: rgba(121, 173, 75, 0.55);
	background: rgba(121, 173, 75, 0.08);
}

.ww-continent-filter__btn.is-active {
	background: #203a1d;
	border-color: #203a1d;
	color: #fff;
}

.ww-country-search {
	margin: 0;
}

.ww-country-search__input {
	max-width: 280px;
	width: 100%;
}

.ww-country-chip {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 0.5rem 0.75rem;
	border-radius: 10px;
	min-width: 9rem;
}

.ww-country-chip__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem;
	width: 100%;
}

.ww-country-chip__name {
	flex: 1;
	min-width: 0;
	font-weight: 600;
	line-height: 1.25;
}

.ww-country-chip__flag {
	flex-shrink: 0;
	display: inline-block;
	opacity: 0.92;
}

.ww-country-chip__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
}

.ww-country-chip__link {
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 999px;
	padding: 0.12rem 0.55rem;
	border: 1px solid transparent;
}

.ww-country-chip__link--shop {
	background: #203a1d;
	color: #fff;
}

.ww-country-chip__link--shop:hover,
.ww-country-chip__link--shop:focus-visible {
	background: #2f5a29;
	color: #fff;
	text-decoration: none;
}

.ww-country-chip__link--portal {
	background: #fff;
	border-color: rgba(32, 58, 29, 0.2);
	color: #203a1d;
}

.ww-country-chip__link--portal:hover,
.ww-country-chip__link--portal:focus-visible {
	border-color: rgba(121, 173, 75, 0.55);
	color: #203a1d;
	text-decoration: none;
}

.ww-country-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	margin: 0.15rem 0 0.2rem;
}

.ww-country-card__link {
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 999px;
	padding: 0.15rem 0.55rem;
	border: 1px solid transparent;
}

.ww-country-card__link--shop {
	background: #203a1d;
	color: #fff;
}

.ww-country-card__link--shop:hover,
.ww-country-card__link--shop:focus-visible {
	background: #2f5a29;
	color: #fff;
	text-decoration: none;
}

.ww-country-card__link--portal {
	background: #fff;
	border-color: rgba(32, 58, 29, 0.2);
	color: #203a1d;
}

.ww-country-card__link--portal:hover,
.ww-country-card__link--portal:focus-visible {
	border-color: rgba(121, 173, 75, 0.55);
	text-decoration: none;
	color: #203a1d;
}

.ww-country-chip.is-hidden,
.ww-country-card.is-hidden {
	display: none !important;
}

@media (min-width: 768px) {
	.ww-map-toolbar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
