body {
	background: var(--color-beige-light);
	font-family: 'Jost';
	font-size: 17px;
	color: var(--color-blue);
}

body.no-scroll {
	overflow: hidden;
}

.grecaptcha-badge {
	visibility: hidden !important;
}

/* ==================== Allgemein ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'heading';
	font-weight: 400;
	hyphens: auto;
}

h1 {
	font-size: 2.4em;
}

h2 {
	font-size: 1.8em;
}

h3 {
	font-size: 1.6em;
}

h4 {
	font-size: 1.4em;
}

h5 {
	font-size: 1.2em;
}

.title-seperator {
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
}

.title-seperator::before {
	content: "";
	position: absolute;
	left: 50px;
	bottom: 0px;
	width: 4px;
	height: 4px;
	background: var(--color-yellow);
	border-radius: 50%;
	box-shadow: 8px 0 0 var(--color-yellow), 16px 0 0 var(--color-yellow);
}

.title-seperator::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 4px;
	background: var(--color-yellow);
	border-radius: 4px;
}

/* ==================== Header ==================== */
header#head {
	top: 4px;
	left: 0px;
	right: 0px;
	position: fixed;
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 0px;
	box-shadow: none;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
	display: grid;
	grid-template-columns: 1fr 240px 1fr;
	align-items: center;
	z-index: 9999;
	height: 84px;
}

header#head::after {
	content: "";
	position: absolute;
	width: 100%;
	display: block;
	top: -4px;
	left: 0px;
	right: 0px;
	bottom: auto;
	height: 4px;
	display: block;
	background: var(--color-yellow);
	z-index: 10001;
}

header#head::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 80px;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 50%;
	z-index: 9998;
}

header#head .site-header-brand {
	position: relative;
	z-index: 10000;
	width: 240px;
	text-align: center
}

header#head .site-header-brand img.logo-desktop {
	width: 180px;
	display: block;
	margin: 0 auto;
	position: relative;
	top: 4px;
}

header#head .site-header-brand img.logo-mobile {
	width: 90px;
	display: none;
	margin: 0 auto;
}

header#head .site-header-nav-left {
	justify-self: start;
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
	padding: 15px 30px;
}

header#head .site-header-nav-right {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 30px;
}

/* Buttons Rechts */
header#head .site-header-nav-right .icon-btn {
	border-radius: 9px;
	width: 38px;
	height: 38px;
	position: relative;
}

header#head .site-header-nav-right .icon-btn.login:hover,
header#head .site-header-nav-right .icon-btn.search {
	background: var(--color-yellow);
}

header#head .site-header-nav-right .icon-btn.search:hover,
header#head .site-header-nav-right .icon-btn.login {
	background: var(--color-blue);
}

header#head .site-header-nav-right .icon-btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 1.2em;
}

header#head .site-header-nav-right .icon-btn:hover.active,
header#head .site-header-nav-right .icon-btn.active {
	background: var(--color-red);
}

header#head .site-header-nav-right .icon-btn.active i {
	font-size: 0.8em;
}

/* Hamburger Button */
.explore-btn {
	--icon-w: 22px;
	--icon-h: 16px;
	--bar-h: 2px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.explore-text {
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	white-space: nowrap;
	color: var(--color-blue);
	display: inline-block;
	position: relative;
	transform: translateX(0);
	opacity: 1;
	will-change: transform, opacity;
	transition: transform 220ms ease, opacity 220ms ease;
	font-family: 'heading';
}

.explore-text.is-leaving {
	transform: translateX(-10px);
	opacity: 0;
}

.explore-text.is-enter-prep {
	transform: translateX(10px);
	opacity: 0;
}

.explore-text.is-entering {
	transform: translateX(0);
	opacity: 1;
}

.explore-btn .burger {
	position: relative;
	width: var(--icon-w);
	height: var(--icon-h);
	display: inline-block;
	flex: 0 0 auto;
}

.explore-btn .burger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: var(--bar-h);
	border-radius: var(--bar-r);
	background: var(--color-blue);
	transform-origin: center;
	transition: transform .32s ease, opacity .28s ease, width .28s ease;
}

.explore-btn:hover .burger span {
	background: var(--color-yellow);
}

.explore-btn .burger span:nth-child(1) {
	top: 0;
}

.explore-btn .burger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.explore-btn .burger span:nth-child(3) {
	bottom: 0;
}

.explore-btn:hover .burger span:nth-child(2) {
	width: 50%;
}

.explore-btn.active .burger span {
	background: var(--color-red);
}

.explore-btn.active .burger span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.explore-btn.active .burger span:nth-child(2) {
	opacity: 0;
	width: 100%;
	transform: translateY(-50%) scaleX(.2);
}

.explore-btn.active .burger span:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

/* Offcanvas */
.nav-offcanvas-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 45, 94, .5);
	backdrop-filter: blur(10px) saturate(120%);
	-webkit-backdrop-filter: blur(10px) saturate(120%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
	z-index: 9996;
	touch-action: none;
}

.nav-offcanvas {
	position: fixed;
	top: 80px;
	left: 0;
	right: auto;
	bottom: 0px;
	transform: translateX(-100%);
	width: 320px;
	background: var(--color-beige-light) url("../images/muschel-pattern.png");
	transition: transform .3s ease;
	z-index: 9997;
	touch-action: pan-y;
	/* vertikal scrollen im Panel weiterhin möglich */
	will-change: transform;
	overscroll-behavior: contain;
	overflow: auto;
	border-right: 1px solid var(--color-beige-dark);
	padding: 30px 30px;
}

.nav-offcanvas header .about-logo {
	margin-bottom: 20px;
}

.nav-offcanvas header .about-text {
	font-weight: 500;
	font-size: 0.9em;
}

.nav-offcanvas nav.main-nav {
	background: #fff;
	border-radius: 10px;
	margin-top: 20px;
}

.nav-offcanvas.is-open {
	transform: translateX(0);
}

.nav-offcanvas-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.user-offcanvas {
	position: fixed;
	top: 80px;
	right: 0;
	left: auto;
	bottom: 0px;
	transform: translateX(100%);
	width: 320px;
	background: var(--color-beige-light) url("../images/muschel-pattern.png");
	transition: transform .3s ease;
	z-index: 9997;
	overflow: auto;
	touch-action: pan-y;
	will-change: transform;
	overscroll-behavior: contain;
	border-left: 1px solid var(--color-beige-dark);
	padding: 30px 30px;
}

.user-offcanvas.is-open {
	transform: translateX(0);
}

.search-offcanvas {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateY(-100%);
	background: var(--color-beige-light) url("../images/muschel-pattern.png");
	transition: transform .3s ease;
	z-index: 9997;
	will-change: transform;
	overflow: auto;
	overscroll-behavior: contain;
	touch-action: pan-x;
	border-bottom: 1px solid var(--color-beige-dark);
}

.search-offcanvas.is-open {
	transform: translateY(0);
}

.search-offcanvas-wrapper {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	padding: 40px 20px;
}

.header-search {
	margin: 20px 0 35px;
	width: 30%;
}

.header-search-form {
	background: #fff;
	padding: 5px;
	border-radius: 10px;
	display: grid;
	grid-template-columns: auto 40px;
	grid-gap: 10px;
	width: 100%;
}

.header-search-form input {
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	border: 0px;
	width: 100%;
}

.header-search-form button {
	height: 40px;
	line-height: 40px;
	width: 40px;
	border-radius: 10px;
	position: relative;
	color: #fff;
	background: var(--color-yellow);
}

.header-search-form button:hover {
	background: var(--color-blue);
}

.header-search-form button i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
}

/* Slider Menu */
.rc-drilldown {
	position: relative;
	overflow: hidden
}

.rc-drilldown-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 42px;
	padding: 0 15px;
	background: var(--color-blue);
	border-radius: 10px 10px 0px 0px;
}

.rc-drilldown-back {
	display: none;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 0;
	font: inherit;
	line-height: 1;
}

.rc-drilldown-back i {
	font-size: 16px;
	line-height: 1;
	color: var(--color-yellow);
}

.rc-drilldown-title {
	font-weight: 400;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: 'heading';
	color: #fff;
	font-size: 15px;
}

.rc-drilldown.is-sublevel .rc-drilldown-bar {
	cursor: pointer;
}

.rc-drilldown-viewport {
	position: relative;
	width: 100%;
	overflow: hidden
}

.rc-drilldown-panels {
	display: flex;
	width: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 260ms ease;
	will-change: transform
}

.rc-drilldown-panel {
	width: 100%;
	flex: 0 0 100%
}

.rc-drilldown-panel ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.rc-drilldown-panel li {
	margin: 0;
	padding: 0
}

.rc-drilldown-panel a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px;
	text-decoration: none;
	border-bottom: 1px solid var(--color-beige-light);
	font-weight: 600;
	font-size: 15px;
}

.rc-drilldown-panel a:hover {
	color: var(--color-yellow);
}

.rc-drilldown-panel li:last-child>a {
	border-bottom: 0
}

.rc-drilldown-panel[data-level="0"] ul.sub-menu {
	display: none !important
}

.rc-drilldown-has-children>a:after {
	content: '\e922';
	font-family: icomoon;
	color: var(--color-yellow);
}

/* Header Widgets */
header#head .header-widget {}

header#head .header-widget .container {
	padding: 40px 0px 0px;
	max-width: 1280px;
	margin: 0 auto;
}

@media (max-width: 999px) {
	header#head {
		height: 70px;
		grid-template-columns: 1fr 80px 1fr;
	}

	header#head .site-header-nav-left,
	header#head .site-header-nav-right {
		padding: 15px 20px;
		gap: 8px;
	}

	header#head .site-header-brand {
		width: 80px;
		text-align: center;
	}

	header#head .site-header-brand img.logo-desktop {
		display: none;
	}

	header#head .site-header-brand img.logo-mobile {
		width: 50px;
		display: block;
		position: relative;
		margin: 0 auto;
		top: 5px;
	}

	header#head::before {
		width: 90px;
		height: 70px;
		left: 50%;
		bottom: -15px;
	}

	.explore-btn {
		--icon-w: 22px;
		--icon-h: 16px;
		gap: 0px;
	}

	.explore-text {
		display: none;
	}

	header#head .site-header-nav-right .icon-btn {
		width: 35px;
		height: 35px;
	}

	header#head .site-header-nav-right .icon-btn i {
		font-size: 1.08em;
	}

	.nav-offcanvas,
	.user-offcanvas {
		top: 70px;
		padding: 25px 30px;
	}

	.header-search {
		margin: 25px 0;
		width: 80%;
	}
}

/* ==================== Main ==================== */
main#main {
	margin-top: 84px;
}

/* Post Thumbnail */
main#main .post-thumbnail {
	display: block;
	position: relative;
	top: 0px;
}

main#main .post-thumbnail .container-full {
	width: 100%;
	height: 70vH;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: rgba(0, 45, 94, 0.3);
	background-blend-mode: overlay;
}

main#main .post-thumbnail .post-thumbnail-caption {
	position: absolute;
	bottom: 15px;
	right: 15px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.75);
	padding: 4px 8px;
	border-radius: 5px;
	font-size: 0.8em;
}

main#main .post-thumbnail .container-full img {
	display: none;
}

main#main .page-header {
	padding: 50px 40px;
	background: var(--color-blue) url('../images/nordsee-pattern-light.png');
	background-repeat: repeat;
	text-align: center;
}

main#main .entry-container {
	display: grid;
	grid-template-columns: auto 360px;
	grid-gap: 40px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 0;
	position: relative;
}

main#main .entry-container-full {
	display: block;
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 0;
	position: relative;
}

main#main .entry-content-wrapper {
	background: #fff;
	border-radius: 14px;
	padding: 40px;
}

main#main .box-shadow {
	box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.03);
}

main#main .entry-sidebar {
	position: relative;
}

main#main .entry-sidebar .widget {
	background: #fff;
	border-radius: 14px;
	padding: 25px;
	margin-bottom: 30px;
}

main#main .entry-sidebar .widget:last-child {
	margin-bottom: 0px;
}

main#main article.entry-content-wrapper .header-meta {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 10px 0 45px;
}

main#main article.entry-content-wrapper .header-meta .author-meta {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: 56px auto;
	align-items: center;
	font-size: 0.9em;
}

main#main article.entry-content-wrapper .header-meta .author-meta img {
	border-radius: 999px;
}

main#main article.entry-content-wrapper .header-meta .author-meta-name {
	font-weight: 600;
	display: block;
}

main#main article.entry-content-wrapper .header-meta .author-meta-date {
	display: block;
}

main#main article.entry-content-wrapper .header-meta .entry-meta-item i,
main#main article.entry-content-wrapper .header-meta .author-meta-name:hover {
	color: var(--color-yellow);
}

main#main article.entry-content-wrapper .header-meta .entry-meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
}

main#main article.entry-content-wrapper .header-meta .entry-meta-item {
	display: inline-flex;
	align-items: center;
	grid-gap: 5px;
	border-radius: 10px;
	background: var(--color-beige-light);
	padding: 8px 10px;
}

main#main article.entry-content-wrapper .header-meta .entry-meta-item .value {
	font-size: 0.85em;
}

main#main .page-header .entry-title {
	color: #fff;
	font-size: 36px;
	font-weight: 400;
}

main#main .page-header .entry-subtitle {
	margin: 20px 80px 20px;
	font-size: 1em;
	color: var(--color-yellow);
	font-family: 'Jost';
	font-weight: 600;
	line-height: 1.3em;
}

main#main .entry-content-wrapper .entry-title {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--color-beige-dark);
}

main#main .entry-content-wrapper .entry-subtitle {
	margin-bottom: 20px;
	font-size: 1.15em;
	color: var(--color-yellow);
	font-family: 'Jost';
	font-weight: 600;
	line-height: 1.3em;
}

main#main .entry-content {
	display: block;
}

main#main .entry-content-wrapper footer {
	display: block;
}

main#main .entry-content-wrapper footer .entry-tags {
	display: block !important;
}

main#main .entry-content-wrapper footer .entry-tags a {
	font-size: 0.95em;
	margin-right: 8px;
	display: inline-block;
}

main#main .entry-content-wrapper footer .entry-tags a:last-child {
	margin-right: 0px;
}

main#main .entry-content-wrapper footer .entry-tags a.tag-tags:before {
	content: '#';
	color: var(--color-yellow);
	padding-right: 3px;
}

main#main .entry-content-wrapper footer .entry-tags a.category-tags:before {
	content: '\e963';
	font-family: 'icomoon';
	color: var(--color-yellow);
	padding-right: 3px;
}

/* User Actions */
.entry-user-actions {
	border: 1px solid var(--color-beige-dark);
	padding: 0;
	margin-top: 30px;
	border-radius: 10px;
	display: block;
}

.entry-user-actions-stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
}

.entry-user-actions-reactions,
.entry-user-actions-participants {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.reactions-mini {
	display: flex;
	align-items: center;
}

.reaction-mini {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 2px solid var(--color-beige-dark);
	margin-left: -6px;
	background: var(--color-beige-leight);
}

.reactions-mini .reaction-mini:first-child {
	margin-left: 0
}

.reaction-mini.is-like {
	background: #06b6d4
}

.reaction-mini.is-love {
	background: #fb7185
}

.reaction-mini.is-wow {
	background: #facc15
}

.reactions-count {
	font-weight: 700;
	color: #0f172a;
	font-size: 13px;
}

.participants-avatars {
	display: flex;
	align-items: center;
}

.participants-avatars img {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 2px solid #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
	margin-left: -6px;
	object-fit: cover;
}

.participants-avatars img:first-child {
	margin-left: 0
}

.participants-count {
	font-weight: 700;
	color: #0f172a;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: .9;
}

.entry-user-actions-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 14px;
	padding: 14px;
	background: var(--color-beige-light);
	border-radius: 0 0 10px 10px;
}

.action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	line-height: 1.3em;
	border-radius: 9px;
	border: 1px solid var(--color-beige-dark);
	background: #fff;
	font-weight: 800;
	font-size: 13px;
	color: var(--color-blue);
	cursor: pointer;
}

.action-btn i {
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.action-btn:hover {
	opacity: 0.8;
}

.action-btn:hover i {
	color: var(--color-yellow);
	transition: all 0.3s ease-in-out;
}

.action-btn.is-active i {
	color: var(--color-yellow);
}

.reactions-popover {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 6px;
}

.reaction-pill {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .12s ease;
}

.reaction-pill:hover {
	transform: translateY(-2px) scale(1.04);
}

.share-modal {
	padding: 8px 4px 6px;
}

.share-modal-networks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding: 10px 0 14px;
}

.share-net {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--color-beige-dark);
	color: var(--color-blue);
	text-decoration: none;
	transition: transform .12s ease;
}

.share-net i {
	font-size: 18px
}

.share-net:hover {
	transform: translateY(-1px);
}

.share-modal-copy {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--color-blue);
	border-radius: 10px;
	background: #fff;
	padding: 5px 5px 5px 10px;
}

.share-link {
	border: none;
	outline: none;
	width: 100%;
	font-weight: 700;
	font-size: 13px;
	color: var(--color-yellow);
	background: transparent;
}

.share-copy-btn {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	border: none;
	background: var(--color-blue);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .12s ease, background .18s ease;
	color: #fff;
}

.share-copy-btn:hover {
	transform: translateY(-1px);
	background: var(--color-yellow);
}

.share-modal-hint {
	margin: 10px 0 0;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
}

.entry-user-actions .entry-user-actions-buttons .action-btn.action-reactions.has-user-reaction>i,
.entry-user-actions .entry-user-actions-buttons .action-btn.action-bookmark.has-user-reaction>i {
	color: var(--color-yellow) !important;
}

.reactions-popover .reaction-pill.is-selected img {
	outline: 2px solid var(--color-yellow);
	outline-offset: 2px;
	border-radius: 999px;
}

.entry-user-actions .entry-user-actions-stats .reaction-mini,
.entry-user-actions .entry-user-actions-stats .reaction-mini * {
	outline: none !important;
	box-shadow: none !important;
}

.entry-user-actions .entry-user-actions-stats .reaction-mini {
	border: 0 !important;
	background: transparent !important;
}

.entry-user-actions .entry-user-actions-stats .reaction-mini::before,
.entry-user-actions .entry-user-actions-stats .reaction-mini::after {
	content: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

.entry-user-actions .reactions-mini {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.entry-user-actions .reaction-mini {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	cursor: pointer;
}

.entry-user-actions .reaction-mini img {
	width: 22px;
	height: 22px;
	display: block;
}

.entry-user-actions .reactions-count.is-empty {
	opacity: .8;
	font-weight: 800;
}

.ua-reaction-modal {
	padding: 6px 2px;
}

.ua-reaction-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: rgba(255, 255, 255, .72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	margin-bottom: 14px;
}

.ua-reaction-head-left {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.ua-reaction-head-icon {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	display: block;
}

.ua-reaction-head-title {
	font-weight: 900;
	font-size: 16px;
	line-height: 1.1;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ua-reaction-head-sub {
	font-weight: 800;
	font-size: 12px;
	opacity: .72;
	margin-top: 2px;
}

.ua-reaction-head-count {
	text-align: right;
	flex: 0 0 auto;
}

.ua-reaction-head-count .ua-count-num {
	font-weight: 950;
	font-size: 20px;
	line-height: 1;
	display: block;
}

.ua-reaction-head-count .ua-count-label {
	font-weight: 800;
	font-size: 12px;
	opacity: .72;
	display: block;
	margin-top: 3px;
}

.ua-users-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ua-user {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 16px;
	padding: 10px 12px;
	transition: transform .12s ease, box-shadow .12s ease;
}

.ua-user:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.ua-user-avatar {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	overflow: hidden;
	flex: 0 0 34px;
	background: rgba(0, 0, 0, .06);
}

.ua-user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ua-user-name {
	font-weight: 900;
	font-size: 13px;
	line-height: 1.2;
}

.ua-skeleton {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ua-skel-row {
	height: 54px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, .06);
	background: linear-gradient(90deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .09) 40%, rgba(0, 0, 0, .05) 80%);
	background-size: 240% 100%;
	animation: uaShimmer 1.05s ease-in-out infinite;
}

@keyframes uaShimmer {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -50% 0;
	}
}

.ua-empty {
	padding: 14px;
	border: 1px dashed rgba(0, 0, 0, .18);
	border-radius: 16px;
	font-weight: 800;
	opacity: .75;
}

@media (max-width: 999px) {
	main#main {
		margin-top: 74px;
	}

	main#main .post-thumbnail .container-full {
		height: 50vH;
	}

	main#main .entry-container {
		grid-template-columns: 1fr;
		grid-gap: 30px;
		max-width: none;
		padding: 0;
		margin: 25px 10px;
	}

	main#main .entry-container-full {
		margin: 0px;
		padding 25px 10px !important;
		max-width: none;
		margin: 0px 10px;
	}

	main#main .page-header .entry-title {
		font-size: 30px;
	}

	main#main .entry-content-wrapper .entry-title {
		font-size: 30px;
	}

	main#main .entry-content-wrapper .entry-subtitle {
		font-size: 1.05em;
	}

	main#main article.entry-content-wrapper {
		padding: 20px;
	}

	main#main article.entry-content-wrapper .header-meta {
		display: grid;
		grid-template-columns: 1fr;
	}

	main#main article.entry-content-wrapper .header-meta .entry-meta {
		display: flex;
		align-items: center;
		gap: 10px;
		justify-self: start;
		width: 100%;
	}

	main#main article.entry-content-wrapper .header-meta .entry-meta-item {
		display: flex;
		width: 100%;
	}

	.entry-user-actions-buttons {
		grid-template-columns: 1fr;
	}

	.entry-user-actions-stats {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==================== Footer & Top Top ==================== */
/* To Top */
a#top-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 60px, 0) scale(.9);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

a#top-top.is-visible {
	opacity: 1;
	visibility: visible;
	animation: topTopEnter .55s cubic-bezier(.22, .9, .28, 1) forwards, topTopFloat 2.8s ease-in-out infinite .55s;
}

@keyframes topTopEnter {
	from {
		transform: translate3d(0, 60px, 0) scale(.9);
	}

	to {
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes topTopFloat {

	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, 8px, 0);
	}
}

a#top-top.is-hiding {
	animation: topTopExit .45s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes topTopExit {
	from {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		opacity: 0;
		transform: translate3d(0, 60px, 0) scale(.9);
	}
}

a#top-top img {
	width: 58px;
	display: block;
	pointer-events: none;
	user-select: none;
}

a#top-top::after {
	content: attr(data-toptip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 14px);
	transform: translate3d(-50%, 8px, 0);
	background: var(--color-beige-dark);
	color: var(--color-blue);
	font-size: 12px;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 14px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity .16s ease, transform .16s ease;
}

a#top-top::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(100% + 7px);
	transform: translate3d(-50%, 8px, 0);
	border-top: 8px solid var(--color-beige-dark);
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity .16s ease, transform .16s ease;
}

a#top-top:hover::after,
a#top-top:hover::before,
a#top-top:focus-visible::after,
a#top-top:focus-visible::before {
	opacity: 1;
	transform: translate3d(-50%, 0, 0);
}

/* Footer */
footer.main-footer {
	display: block;
	background: var(--color-blue) url("../images/nordsee-pattern-light.png");
	background-repeat: repeat;
	position: relative;
	border-top: 4px solid var(--color-yellow);
}

footer.main-footer .container {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	grid-gap: 40px;
	padding: 60px 0;
	max-width: 1280px;
	margin: 0 auto;
}

footer.main-footer .widget-title {
	color: #fff;
	font-size: 1.1em;
	margin-bottom: 15px;
}

footer.main-footer .widget-about,
footer.main-footer .widget-about .widget-about-logo {
	display: block;
}

footer.main-footer .widget-about .widget-about-logo img {
	max-width: 200px
}

footer.main-footer .widget-about .widget-about-text {
	color: #fff;
	line-height: 1.4em;
	font-size: 0.95em;
	margin-top: 20px;
}

footer.main-footer .widget-menu a {
	display: block;
	color: #fff;
	font-size: 1.05em;
	margin: 4px 0;
	position: relative;
	left: 0px;
}

footer.main-footer .widget-menu a:hover {
	color: var(--color-yellow);
	left: 5px;
}

footer.main-footer .widget-contact {
	margin-top: 5px;
}

footer.main-footer .widget-contact ul li {
	display: grid;
	grid-template-columns: repeat(2, 48px auto);
	grid-gap: 15px;
	align-items: center;
	margin-bottom: 10px;
}

footer.main-footer .widget-contact ul li:last-child {
	margin-bottom: 0px;
}

footer.main-footer .widget-contact ul li i {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background: var(--color-blue-dark);
	border-radius: 50%;
	color: #fff;
	font-weight: 400;
}

footer.main-footer .widget-contact ul li .value {
	font-family: 'Kaushan Script';
	color: #fff;
	font-size: 1.1em;
}

footer.main-footer .copyright {
	display: block;
}

footer.main-footer .copyright .wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 0px;
}

footer.main-footer .copyright .wrapper p {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 0.9em;
}

@media (max-width: 999px) {
	a#top-top {
		bottom: 15px;
		right: 20px;
	}

	a#top-top img {
		width: 48px;
	}

	footer.main-footer .container {
		grid-template-columns: 1fr;
		grid-gap: 40px;
		padding: 40px 30px;
		max-width: none;
	}

	footer.main-footer .copyright .wrapper {
		margin: 20px 0;
		margin: 0px 30px;
		max-width: none;
	}
}

/* =================== WP Stuff ==================== */
main#main .entry-content p.has-drop-cap::first-letter {
	background: var(--color-blue) !important;
	color: #fff !important;
	padding: 1.1rem 1.1rem !important;
	font-size: 2.6rem !important;
	margin-right: 1.3rem !important;
	font-weight: 700 !important;
	border-radius: 5px !important;
	float: left !important;
	display: block !important;
	line-height: 1 !important;
	margin-top: 10px !important
}

main#main .entry-content p {
	margin: 0 0 30px;
	line-height: 1.6em;
	font-size: 1.05em;
	hyphens: auto;
}

main#main .entry-content .wp-block-list {
	margin: 0 0 30px;
	padding-left: 5px;
}

main#main .entry-content .wp-block-list li {
	line-height: 1.6em;
	font-size: 1.05em;
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
	hyphens: auto;
}

main#main .entry-content .wp-block-list li:last-child {
	margin-bottom: 0px;
}

main#main .entry-content .wp-block-list li::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 0.6em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--color-yellow, #f5c400);
}

main#main .entry-content h2.wp-block-heading {
	display: block;
	padding-bottom: 20px;
}

main#main .entry-content h3.wp-block-heading {
	display: block;
	padding-bottom: 20px;
	font-family: 'Jost';
	color: var(--color-yellow);
	font-size: 1.4em;
	font-weight: 600;
}

main#main .entry-content h2.wp-block-heading+h3.wp-block-heading {
	padding-bottom: 15px;
}

main#main .entry-content h2.wp-block-heading:has(+ h3.wp-block-heading) {
	padding-bottom: 10px;
}

/* Images & Gallery */
main#main .entry-content figure.wp-block-image {
	margin-bottom: 30px;
}

main#main .entry-content figure.wp-block-gallery .wp-block-image img,
main#main .entry-content figure.wp-block-image img {
	border-radius: 10px;
}

main#main .entry-content figure.wp-block-image figcaption {
	padding: 10px 20px 0px;
	text-align: center;
	font-size: 0.9em;
}

main#main .entry-content figure.wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	margin-bottom: 30px;
}

/* Table */
main#main .entry-content .wp-block-table {
	--ost-table-border: var(--color-blue);
	--ost-table-accent: var(--color-yellow);
	--ost-table-bg: var(--color-beige-light);
	--ost-table-bg-2: #fff;
	--ost-table-text: inherit;
	--ost-table-radius: 10px;
	--ost-table-gap: 10px;
	margin: 22px 0 30px;
	color: var(--ost-table-text);
}

main#main .entry-content .wp-block-table.alignwide,
main#main .entry-content .wp-block-table.alignfull {
	margin-top: 26px;
	margin-bottom: 34px;
}

main#main .entry-content .wp-block-table table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--ost-table-border);
	background: var(--color-beige-light);
	border-radius: var(--ost-table-radius);
	overflow: hidden;
}

main#main .entry-content .wp-block-table figcaption {
	margin-top: 10px;
	font-size: 0.95em;
	opacity: 0.85;
}

main#main .entry-content .wp-block-table th,
main#main .entry-content .wp-block-table td {
	padding: 14px 14px;
	vertical-align: top;
	border-bottom: 1px solid rgba(0, 45, 94, 0.12);
	border-right: 1px solid rgba(0, 45, 94, 0.10);
	line-height: 1.45;
	background: var(--color-beige-light);
}

main#main .entry-content .wp-block-table td:last-child,
main#main .entry-content .wp-block-table th:last-child {
	border-right: 0;
}

main#main .entry-content .wp-block-table tr:last-child td {
	border-bottom: 0;
}

main#main .entry-content .wp-block-table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--color-blue);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.01em;
}

main#main .entry-content .wp-block-table tbody tr:nth-child(even) td {
	background: var(--ost-table-bg-2);
}

main#main .entry-content .wp-block-table tbody td:first-child {
	font-weight: 600;
	color: var(--ost-table-border);
}

main#main .entry-content .wp-block-table a {
	color: var(--color-yellow);
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease;
}

main#main .entry-content .wp-block-table a:hover {
	color: var(--ost-table-border);
	border-bottom-color: var(--ost-table-accent);
}

main#main .entry-content .wp-block-table .ost-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0, 45, 94, 0.22);
	background: rgba(255, 255, 255, 0.65);
}

main#main .entry-content .wp-block-table td,
main#main .entry-content .wp-block-table th {
	word-break: normal;
	overflow-wrap: anywhere;
}

@media (max-width: 999px) {
	main#main .entry-content p.has-drop-cap::first-letter {
		padding: 0.9rem 1.0rem !important;
		font-size: 2.0rem !important;
		margin-right: 1.1rem !important;
		margin-top: 8px !important
	}

	main#main .entry-content h2.wp-block-heading {
		font-size: 1.4em;
	}

	main#main .entry-content .wp-block-table table {
		border: 0;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
	}

	main#main .entry-content .wp-block-table thead {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	main#main .entry-content .wp-block-table tbody tr {
		display: block;
		margin: 0 0 12px;
		padding: 12px 12px;
		border-radius: 18px;
		background: var(--ost-table-bg);
		border: 1px solid var(--color-blue);
	}

	main#main .entry-content .wp-block-table tbody tr:nth-child(even) td {
		background: transparent;
	}

	main#main .entry-content .wp-block-table tbody td {
		display: grid;
		grid-template-columns: minmax(120px, 42%) 1fr;
		gap: 10px;
		padding: 10px 8px;
		border: 0;
		border-bottom: 1px dashed rgba(0, 45, 94, 0.18);
		background: transparent;
	}

	main#main .entry-content .wp-block-table tbody td:last-child {
		border-bottom: 0;
	}

	main#main .entry-content .wp-block-table tbody td::before {
		content: attr(data-label);
		font-weight: 700;
		color: var(--ost-table-border);
	}

	main#main .entry-content .wp-block-table tbody td:not([data-label])::before {
		content: "";
		display: none;
	}

	main#main .entry-content .wp-block-table tbody td:not([data-label]) {
		grid-template-columns: 1fr;
	}
}

/* ==================== Comments ==================== */
section.comments h2.comments-title {
	margin: 30px 0 0px;
	font-size: 20px;
}

.ostfriesland-comments {
	margin-top: 28px
}

.ostfriesland-comments__list {
	display: flex;
	flex-direction: column;
	gap: 14px
}

.ostfriesland-comments__composerWrap {
	margin-bottom: 18px
}

.ostfriesland-comments__composerBox {
	border: 1px solid var(--color-beige-dark);
	background: var(--color-beige-light);
	border-radius: 16px;
	padding: 12px 14px;
}

.ostfriesland-comments__composerInner {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.ostfriesland-comments__avatarWrap {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	overflow: hidden;
	flex: 0 0 44px
}

.ostfriesland-comments__avatarImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.ostfriesland-comments__avatarImg.is-placeholder {
	border-radius: 0px !important;
}

.ostfriesland-comments__avatarPlaceholder {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .06)
}

.ostfriesland-comments__composerBody {
	flex: 1
}

.ostfriesland-comments__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}

.ostfriesland-comments__field {
	width: 100%;
	min-height: 48px;
	max-height: 140px;
	resize: none;
	border-radius: 14px;
	border: 1px solid var(--color-beige-dark);
	background: #fff;
	padding: 12px 14px;
	font-size: 15px;
	outline: none;
	line-height: 1.35;
}

.ostfriesland-comments__field:focus {
	border-color: var(--color-yellow);
}

.ostfriesland-comments__hiddenSubmit {
	display: none !important
}

.ostfriesland-comments__cancelReply {
	display: none;
	align-self: flex-start;
	border: 0;
	background: #fff;
	padding: 8px 10px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	font-size: 12px;
}

.ostfriesland-comments.is-replying .ostfriesland-comments__cancelReply {
	display: inline-flex;
}

.ostfriesland-comments__cancelReply:hover {
	background: var(--color-beige-dark);
}

.ostfriesland-comments__replySlot .ostfriesland-comments__composerBox {
	background: rgba(0, 0, 0, .03);
	box-shadow: none;
	border-radius: 16px;
}

.ostfriesland-comments__row {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 12px;
	align-items: start;
}

.ostfriesland-comments__main {
	border: 1px solid var(--color-beige-dark);
	border-radius: 16px;
	padding: 12px 14px;
	background: #fff;
}

.ostfriesland-comments__authorLine {
	margin: 0 0 6px
}

.ostfriesland-comments__name {
	font-weight: 700;
	display: block
}

.ostfriesland-comments__textLine {
	margin: 0 0 10px
}

.ostfriesland-comments__text {
	display: block;
	margin: 0;
	line-height: 1.45;
}

.ostfriesland-comments__metaLine {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.ostfriesland-comments__links {
	display: flex;
	gap: 12px;
	align-items: center
}

.ostfriesland-comments__link {
	border: 0;
	background: var(--color-blue);
	color: #fff;
	padding: 6px 12px;
	font-size: 14px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	line-height: 1;
}

.ostfriesland-comments__link:hover {
	background: var(--color-yellow);
	color: #002D5E
}

.ostfriesland-comments__time {
	font-size: 13px;
	color: var(--color-yellow);
}

.ostfriesland-comments__dotsWrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
}

.ostfriesland-comments__dots {
	border: 0;
	background: var(--color-beige-light);
	width: 32px;
	height: 32px;
	border-radius: 999px;
	font-weight: 900;
	cursor: pointer;
	letter-spacing: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	position: relative;
}

.ostfriesland-comments__children .ostfriesland-comments__dots {
	background: #fff;
}

.ostfriesland-comments__dots i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 13px;
}

.ostfriesland-comments__dots:hover {
	background: var(--color-beige-dark);
}

.ostfriesland-comments__replySlot {
	margin-top: 10px
}

.ostfriesland-comments__children {
	margin-top: 12px;
	padding-left: 22px;
}

.ostfriesland-comments__children .ostfriesland-comments__main {
	background: var(--color-beige-light);
}

.ostfriesland-comments__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 18px
}

.ostfriesland-comments__loadmore {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--color-blue);
	font-size: 13px;
	border-radius: 999px;
	padding: 8px 8px 8px 12px;
	cursor: pointer;
	color: #fff;
}

.ostfriesland-comments__loadmoreCount {
	min-width: 34px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #fff;
	color: var(--color-yellow);
	font-weight: 700;
	padding: 0 10px;
	font-size: 13px;
}

.ostfriesland-comments__loadmoreHint {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-yellow);
	text-align: center;
	opacity: .95;
}

.ostfriesland-comments__loader {
	display: inline-flex;
	gap: 6px
}

.ostfriesland-comments__loader span {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-yellow);
	animation: ostDots 1.05s infinite ease-in-out
}

.ostfriesland-comments__loader span:nth-child(2) {
	animation-delay: .10s
}

.ostfriesland-comments__loader span:nth-child(3) {
	animation-delay: .20s
}

.ostfriesland-comments__loader span:nth-child(4) {
	animation-delay: .30s
}

.ostfriesland-comments__loader span:nth-child(5) {
	animation-delay: .40s
}

@keyframes ostDots {

	0%,
	100% {
		transform: translateY(0);
		opacity: .35
	}

	50% {
		transform: translateY(-5px);
		opacity: 1
	}
}

.ostfriesland-comments,
.ostfriesland-comments * {
	box-sizing: border-box;
}

.ostfriesland-comments__main,
.ostfriesland-comments__composerBody,
.ostfriesland-comments__textLine,
.ostfriesland-comments__metaLine,
.ostfriesland-comments__links {
	min-width: 0;
}

.ostfriesland-comments__main,
.ostfriesland-comments__composerBox {
	max-width: 100%;
}

.ostfriesland-comments__text,
.ostfriesland-comments__name {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ostfriesland-comments {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

/* Rating Box */
.ostfriesland-comments__aggregate {
	border: 1px solid var(--color-beige-dark);
	background: var(--color-beige-light);
	border-radius: 16px;
	padding: 12px 14px;
	margin: 0 0 12px;
}

.ostfriesland-comments__aggregateInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.ostfriesland-comments__aggregateLabel {
	font-weight: 800;
	color: var(--color-blue);
	font-size: 13px;
	margin: 0 0 6px;
}

.ostfriesland-comments__aggregateLeft {
	min-width: 0;
}

.ostfriesland-comments__aggregateRight {
	text-align: right;
	flex: 0 0 auto;
}

.ostfriesland-comments__aggregateValue {
	font-weight: 900;
	color: var(--color-blue);
	font-size: 18px;
	line-height: 1;
}

.ostfriesland-comments__aggregateOf {
	font-weight: 800;
	opacity: .75;
	font-size: 14px;
	margin-left: 6px;
}

.ostfriesland-comments__aggregateCount {
	font-size: 12px;
	margin-top: 6px;
	color: rgba(0, 0, 0, .55);
	font-weight: 700;
}

.ostfriesland-comments__aggregateStars {
	position: relative;
	display: inline-block;
	font-size: 26px;
	letter-spacing: 1px;
	line-height: 1;
	--rating-percent: 0%;
}

.ostfriesland-comments__starsBg,
.ostfriesland-comments__starsFill {
	display: block;
	white-space: nowrap;
}

.ostfriesland-comments__starsBg {
	color: rgba(0, 0, 0, .22);
}

.ostfriesland-comments__starsFill {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--rating-percent);
	overflow: hidden;
	color: var(--color-yellow);
}

.ostfriesland-comments__composerRatingRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ostfriesland-comments__composerRating {
	display: flex;
	gap: 8px;
	align-items: center;
	padding-left: 4px;
	margin-top: -2px;
}

.ostfriesland-comments__ratingStar {
	border: 0;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.ostfriesland-comments__ratingStar i {
	font-size: 20px;
	display: inline-block;
	line-height: 1;
	color: var(--color-yellow);
	text-align: center;
}

.ostfriesland-comments__composerRating.is-locked .ostfriesland-comments__ratingStar:hover {
	background: transparent;
	cursor: default;
}

.ostfriesland-comments__composerRatingText {
	font-size: 12px;
	font-weight: 800;
	color: var(--color-blue);
	background: #fff;
	border: 1px solid var(--color-beige-dark);
	border-radius: 999px;
	padding: 6px 10px;
	line-height: 1;
	white-space: nowrap;
}

.ostfriesland-comments__ratedLine {
	display: flex;
	gap: 6px;
	align-items: center;
	margin: 0 0 8px;
}

.ostfriesland-comments__ratedLine i {
	font-size: 16px;
	line-height: 1;
	display: inline-block;
	color: var(--color-yellow);
}

.ostfriesland-comments__loginBtn {
	color: #fff;
	background: var(--color-blue);
	padding: 3px 8px;
	margin-top: 5px;
	border-radius: 999px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
}

.ostfriesland-comments__loginBtn:hover {
	background: var(--color-yellow);
}

@media (max-width: 640px) {
	.ostfriesland-comments {
		padding-left: 0;
		padding-right: 0;
	}

	.ostfriesland-comments__row {
		display: block;
	}

	.ostfriesland-comments__row>.ostfriesland-comments__avatarWrap {
		margin: 0 auto 10px;
		width: 44px;
		height: 44px;
		flex: none;
	}

	.ostfriesland-comments__main {
		width: 100%;
		max-width: 100%;
		padding: 14px 14px;
	}

	.ostfriesland-comments__metaLine {
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.ostfriesland-comments__dotsWrap {
		margin-left: auto;
	}

	.ostfriesland-comments__children {
		margin-top: 14px;
		padding-left: 12px;
		position: relative;
	}

	.ostfriesland-comments__children:before {
		content: "";
		position: absolute;
		left: 4px;
		top: 0;
		bottom: 0;
		width: 2px;
		border-radius: 2px;
		background: rgba(0, 0, 0, .06);
	}

	.ostfriesland-comments__children .ostfriesland-comments__row {
		display: block;
		margin-top: 14px;
	}

	.ostfriesland-comments__children .ostfriesland-comments__row>.ostfriesland-comments__avatarWrap {
		margin: 0 auto 10px;
		width: 38px;
		height: 38px;
	}

	.ostfriesland-comments__children .ostfriesland-comments__main {
		padding: 13px 13px;
		border-radius: 16px;
	}

	.ostfriesland-comments__composerInner {
		display: block;
	}

	.ostfriesland-comments__composerInner .ostfriesland-comments__avatarWrap {
		margin: 0 auto 10px;
	}

	.ostfriesland-comments__field {
		width: 100%;
		max-width: 100%;
		border-radius: 16px;
	}

	.ostfriesland-comments__aggregateInner {
		flex-direction: column;
		align-items: flex-start;
	}

	.ostfriesland-comments__aggregateRight {
		text-align: left;
	}

	.ostfriesland-comments__composerRatingRow {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==================== Formulare ==================== */
form:not(.header-search):not(.ostfriesland-comments__form) input[type="text"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="email"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="url"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="password"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="tel"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="number"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="search"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="date"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="file"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) textarea:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) select:not(.ost-shield *) {
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 0 14px;
	background: #fff;
	color: inherit;
	border: 1px solid var(--color-blue);
	border-radius: 10px;
	font-size: 16px;
	transition:
		border-color .15s ease, outline-color .15s ease, box-shadow .15s ease;
}

form:not(.header-search):not(.ostfriesland-comments__form) textarea:not(.ost-shield *) {
	height: auto;
	min-height: 120px;
	padding: 12px 14px;
	border-radius: 10px;
	line-height: 1.5;
	resize: vertical;
}

.ost-auth__field.required input {
	border-color: var(--color-red)!important;
}

form:not(.header-search):not(.ostfriesland-comments__form) input:not(.ost-shield *)::placeholder,
form:not(.header-search):not(.ostfriesland-comments__form) textarea:not(.ost-shield *)::placeholder {
	opacity: .6;
}

form:not(.header-search):not(.ostfriesland-comments__form) input:focus:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) textarea:focus:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) select:focus:not(.ost-shield *) {
	border-color: var(--color-yellow);
}

form:not(.header-search):not(.ostfriesland-comments__form) input:disabled:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) textarea:disabled:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) select:disabled:not(.ost-shield *) {
	opacity: .6;
	cursor: not-allowed;
}

form:not(.header-search):not(.ostfriesland-comments__form) select:not(.ost-shield *) {
	cursor: pointer;
	padding-right: 44px;
	border-radius: 10px;
	background:
		linear-gradient(45deg, transparent 50%, currentColor 50%) right 18px center/8px 8px no-repeat, linear-gradient(135deg, currentColor 50%, transparent 50%) right 12px center/8px 8px no-repeat, linear-gradient(#fff, #fff) 0 0/100% 100% no-repeat;
}

form:not(.header-search):not(.ostfriesland-comments__form) button:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="submit"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="button"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="reset"]:not(.ost-shield *) {
	-webkit-appearance: none;
	appearance: none;
	height: 38px;
	padding: 0 12px;
	border-radius: 10px;
	background: var(--color-blue);
	color: #fff;
	font-size: 0.9em;
	font-weight: 600;
	cursor: pointer;
	transition:
		transform .08s ease, border-color .15s ease, background-color .15s ease;
}

form:not(.header-search):not(.ostfriesland-comments__form) button:active:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="submit"]:active:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="button"]:active:not(.ost-shield *) {
	transform: translateY(1px);
}

form:not(.header-search):not(.ostfriesland-comments__form) button:focus:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="submit"]:focus:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="button"]:focus:not(.ost-shield *) {
	border-color: var(--color-yellow);
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:not(.ost-shield *) {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	margin: 0 8px 0 0;
	background: #fff;
	border: 1px solid var(--color-blue);
	display: inline-grid;
	place-items: center;
	vertical-align: middle;
	cursor: pointer;
	transition:
		border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:not(.ost-shield *) {
	border-radius: 5px;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:not(.ost-shield *) {
	border-radius: 999px;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:focus:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:focus:not(.ost-shield *) {
	border-color: var(--color-yellow);
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:checked:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:checked:not(.ost-shield *) {
	background: var(--color-blue);
	border-color: var(--color-blue);
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:not(.ost-shield *)::after {
	content: "";
	width: 9px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	margin-top: -1px;
	opacity: 0;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:checked:not(.ost-shield *)::after {
	opacity: 1;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:not(.ost-shield *)::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #fff;
	opacity: 0;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:checked:not(.ost-shield *)::after {
	opacity: 1;
}

form:not(.header-search):not(.ostfriesland-comments__form) input[type="checkbox"]:disabled:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="radio"]:disabled:not(.ost-shield *) {
	opacity: .55;
	cursor: not-allowed;
}

form:not(.header-search):not(.ostfriesland-comments__form) label:not(.ost-shield *) {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 0.9em;
}

form:not(.header-search):not(.ostfriesland-comments__form) .form-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

form:not(.header-search):not(.ostfriesland-comments__form) label {
	color: var(--color-yellow);
}

/* OSF-Select */
select.osf-select,
select.osf-select-search {
	display: none !important;
}

.osf-select-ui {
	position: relative;
	width: 100%;
	overflow: visible !important;
}

.osf-select-ui__btn {
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	width: 100%;
	height: 44px;
	min-height: 44px;
	padding: 0 44px 0 14px;
	background: #fff !important;
	color: inherit !important;
	border: 1px solid var(--color-blue);
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	user-select: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.osf-select-ui.is-disabled .osf-select-ui__btn {
	opacity: .6;
	cursor: not-allowed;
}

.osf-select-ui__btn:focus {
	outline: none;
	border-color: var(--color-yellow);
}

.osf-select-ui__text {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1;
}

.osf-select-ui__icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	pointer-events: none;
}

.osf-select-ui__dropdown {
	position: absolute;
	left: 0;
	top: calc(100% + 6px);
	width: 100%;
	background: #fff !important;
	color: inherit !important;
	border: 1px solid var(--color-blue);
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
	z-index: 999999;
	display: none;
	overflow: hidden;
}

.osf-select-ui.is-open .osf-select-ui__dropdown {
	display: block;
}

.osf-select-ui__search {
	padding: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.osf-select-ui__search input {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--color-blue);
	border-radius: 10px;
	background: #fff;
	color: inherit;
	font-size: 15px;
}

.osf-select-ui__search input:focus {
	outline: none;
	border-color: var(--color-yellow);
}

.osf-select-ui__list {
	list-style: none;
	margin: 0;
	padding: 6px 0;
	max-height: 260px;
	overflow: auto;
}

.osf-select-ui__item,
.osf-select-ui__group,
.osf-select-ui__empty {
	display: block;
	color: inherit !important;
}

.osf-select-ui__group {
	padding: 10px 12px;
	font-weight: 700;
	opacity: .8;
	cursor: default;
}

.osf-select-ui__item {
	margin: 2px 6px;
	padding: 10px 12px;
	min-height: 40px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.osf-select-ui__item:hover {
	background: var(--color-beige-dark);
}

.osf-select-ui__item.is-selected {
	background: var(--color-beige-light);
}

.osf-select-ui__item.is-disabled {
	opacity: .5;
	cursor: not-allowed;
}

.osf-select-ui__empty {
	padding: 12px;
	opacity: .7;
}

/* ==================== Auth ==================== */
.ost-auth__notice {
	border-radius: 10px;
	display: block;
	margin-bottom: 10px;
	border: 1px solid var(--color-beige-dark);
	background: var(--color-beige-light);
	padding: 5px 10px;
}

.ost-auth__notice--bad {
	background: var(--color-red);
	color: #fff;
	border: 1px solid var(--color-red);
}

.ost-auth__notice--ok {
	background: var(--color-green);
	color: #fff;
	border: 1px solid var(--color-green);	
}

.ost-auth__links {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.ost-auth__link,
.ost-auth__link--lostpass {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 10px;
	text-decoration: none;
	font-size: .98em;
	line-height: 1;
	font-weight: 600;
	background: var(--color-beige-light);
}

.ost-auth__link:hover,
.ost-auth__link--lostpass:hover {
	background: var(--color-beige-dark);
	border-color: var(--color-blue);
}

.ost-auth__link:focus {
	outline: none;
}

.ost-auth__link:focus-visible {
	outline: 2px solid var(--color-yellow);
	outline-offset: 3px;
}

.ost-auth__link--register {
	background: var(--color-yellow);
	border-color: rgba(0, 0, 0, .12);
	color: #fff;
}

.ost-auth__link--register:hover {
	background: var(--color-blue);
}

@media (max-width:680px) {
	.ost-auth__links {
		gap: 8px;
	}

	.ost-auth__link {
		width: 100%;
		max-width: 360px;
	}
}

/* ==================== Archive, Categorey, Card Loop ==================== */
.ost-archiveGrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

@media (max-width: 980px) {
	.ost-archiveGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.ost-archiveGrid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

.ost-userStreamGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

@media (max-width:980px) {
	.ost-userStreamGrid {
		grid-template-columns: 1fr
	}
}

.ost-streamCard {
	background: var(--color-beige-light);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--color-beige-dark);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ost-streamCard__media {
	display: block;
	height: 220px;
	background-size: cover;
	background-position: center;
	background-color: #e8e8e8;
	text-decoration: none;
}

@media (max-width:700px) {
	.ost-streamCard__media {
		height: 180px
	}
}

.ost-streamCard__body {
	margin: -10px 10px;
	padding: 16px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid var(--color-beige-dark);
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.ost-streamCard__meta {
	font-weight: 700;
	font-size: 12px;
	color: var(--color-blue);
	letter-spacing: .02em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.ost-streamCard__title {
	display: block;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	color: var(--color-blue);
	text-decoration: none;
	font-family: 'heading';
}

.ost-streamCard__title:hover {
	color: var(--color-yellow)
}

.ost-streamCard__text {
	margin-top: 10px;
	color: var(--color-yellow);
	line-height: 1.6;
	font-weight: 600;
	font-size: 14px;
	flex: 1 1 auto;
	display: flex;
}

.ost-streamCard__text .comment-excerpt {
	background: var(--color-beige-light);
	border-radius: 8px;
	padding: 5px 10px;
	position: relative;
	font-size: 16px;
	font-style: italic;
}

.ost-streamCard__text .comment-excerpt:before {
	content: '\eab4';
	font-family: 'icomoon';
	margin-right: 7px;
	color: var(--color-blue);
	font-weight: 400;
}

/* Review rating view */
.ost-streamCard__ratingView {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ost-streamCard__stars i {
	margin-right: 4px
}

.ost-streamCard__ratingText {
	font-weight: 900;
	color: rgba(0, 0, 0, .70);
}

.ost-streamCard__footer {
	margin: 20px 10px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.ost-streamCard__link {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	background: var(--color-blue);
	padding: 4px 8px;
	font-size: 13px;
	border: 1px solid var(--color-beige-dark);
}

.ost-streamCard__link:hover {
	background: var(--color-yellow);
}

/* Pills */
.ost-streamCard__tools {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ost-streamCard__btn {
	background: var(--color-yellow);
	color: #fff;
	border-radius: 8px;
	height: 34px;
	width: 34px;
	font-weight: 400;
	position: relative;
	cursor: pointer;
}

.ost-streamCard__edit .ost-streamCard__btn {
	display: inline-block;
	width: auto;
	padding: 0 10px;
	line-height: 34px;
}

.ost-streamCard__btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
}

.ost-streamCard__btn:hover {
	background: var(--color-blue);
}

.ost-streamCard__btn.is-danger {
	background: var(--color-red);
}

.ost-streamCard__btn.is-danger:hover {
	background: #990000;
}

/* Status bubble */
.ost-streamCard__status {
	display: none;
	font-size: .92em;
	font-weight: 900;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: rgba(255, 255, 255, .65);
	color: var(--color-blue);
	white-space: nowrap;
}

.ost-streamCard__status.is-loading,
.ost-streamCard__status.is-ok,
.ost-streamCard__status.is-bad,
.ost-streamCard__status.is-warn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ost-streamCard__status.is-loading:before {
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 999px;
	border: 2px solid rgba(0, 0, 0, .15);
	border-top-color: var(--color-yellow);
	animation: ostSpin .7s linear infinite;
}

@keyframes ostSpin {
	to {
		transform: rotate(360deg)
	}
}

/* Edit area */
.ost-streamCard__edit {
	margin-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, .06);
	padding-top: 14px;
}

.ost-streamCard__editLabel {
	display: block;
	font-weight: 900;
	color: var(--color-blue);
	margin: 10px 0 8px;
}

.ost-streamCard__textarea {
	width: 100%;
	border: 1px solid var(--color-beige-dark);
	border-radius: 10px;
	padding: 10px 12px;
	font-weight: 700;
	outline: none;
	background: #fff;
	color: var(--color-blue);
	resize: vertical;
}

.ost-streamCard__textarea:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(250, 185, 0, .18);
}

.ost-streamCard__editActions {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

/* ==================== Pagination ==================== */
.ost-pagination {
	margin-top: 18px;
}

.ost-pagination__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.ost-pagination__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid var(--color-beige-dark);
	background: #fff;
	color: var(--color-blue);
	text-decoration: none;
	font-weight: 900;
	flex: 0 0 auto;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.ost-pagination__nav i {
	font-size: 18px;
	line-height: 1;
}

.ost-pagination__nav.is-disabled {
	opacity: .45;
	pointer-events: none;
}

.ost-pagination__pages {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	max-width: 100%;
}

.ost-pagination__page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 12px;
	border: 1px solid var(--color-beige-dark);
	background: #fff;
	color: var(--color-blue);
	font-weight: 900;
	text-decoration: none;
	text-align: center;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.ost-pagination__page.is-active {
	background: var(--color-blue);
	color: #fff;
	border-color: var(--color-blue);
}

.ost-pagination__dots {
	font-weight: 900;
	color: rgba(0, 0, 0, .45);
	padding: 0 4px;
}

.ost-pagination__page:hover,
.ost-pagination__nav:hover {
	border-color: var(--color-blue);
}

.ost-pagination__page:focus-visible,
.ost-pagination__nav:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(250, 185, 0, .28);
	border-color: var(--color-yellow);
}

@media (max-width: 520px) {
	.ost-pagination__inner {
		gap: 8px;
	}

	.ost-pagination__nav {
		width: 40px;
		height: 40px;
	}

	.ost-pagination__pages {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		padding: 2px 2px;
		max-width: calc(100vw - 120px);
	}

	.ost-pagination__page {
		flex: 0 0 auto;
		scroll-snap-align: center;
	}

	.ost-pagination__dots {
		flex: 0 0 auto;
	}
}
/* ==================== Search ==================== */
/* ==========================================================================
   Offcanvas: Popular Search Terms (Ostfriesland)
   ========================================================================== */

.ost-searchTerms{
	margin-top: 14px;
	padding: 14px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--color-beige-dark);
}

.ost-searchTerms__head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom: 10px;
}

.ost-searchTerms__title{
	display:flex;
	align-items:center;
	gap: 8px;
	font-weight: 400;
	color: var(--color-blue);
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'heading';
}

.ost-searchTerms__title i{
	font-size: 16px;
	color: var(--color-yellow);
}

.ost-searchTerms__list{
	display:flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ost-searchTerms__item {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding: 8px 10px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	text-decoration: none;
	color: var(--color-blue);
	background: #fff;
	border: 1px solid var(--color-yellow);
}

.ost-searchTerms__item:hover{
	border-color: var(--color-blue);
}

.ost-searchTerms__item:focus-visible{
	outline: 2px solid var(--color-yellow);
	outline-offset: 2px;
}

@media (max-width: 999px) {

	.ost-searchTerms {
		margin: 25px 0;
		width: 80%;
	}
	
}
/* Entry Content */
/* ==========================================================
   HERO Overlay (Yelp-style) – scoped
   ========================================================== */
.post-thumbnail--sehen-erleben{
  position: relative;
  margin: 0 0 18px;
}

.post-thumbnail--sehen-erleben .container-full{
  position: relative;
}

.ost-se-heroOverlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.12), rgba(0,0,0,0));
}

.ost-se-heroOverlay__inner{
  max-width: 1100px;
  margin: 0 auto;
}

.ost-se-heroOverlay__title{
  margin: 0 0 10px;
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.2px;
  font-size: clamp(22px, 3.2vw, 42px);
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}

.ost-se-heroOverlay__meta{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.ost-se-heroOverlay__rating{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.ost-se-heroOverlay__rating i{
  color: var(--color-yellow);
  font-size: 16px;
}

.ost-se-heroOverlay__ratingText{
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}

.ost-se-heroOverlay__ratingCount{
  opacity: .85;
  font-weight: 700;
}

.ost-se-heroOverlay__hours{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.ost-se-heroOverlay__hours i{
  color: var(--color-yellow);
}

/* ==========================================================
   Yellowpages Box (über About)
   ========================================================== */
.ost-se-yp{
  margin: 16px 0 20px;
  border: 1px solid var(--color-beige-dark);
  background: var(--color-beige-light);
  border-radius: 14px;
  padding: 16px;
}

.ost-se-yp__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.ost-se-yp__title{
  margin: 0;
  color: var(--color-blue);
  font-weight: 900;
  letter-spacing: -0.15px;
  font-size: 22px;
}

.ost-se-yp__hours{
  margin-top: 6px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: var(--color-blue-dark);
  opacity: .95;
}

.ost-se-rating{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.ost-se-rating__stars i{
  color: var(--color-yellow);
  font-size: 15px;
}

.ost-se-rating__text{
  font-weight: 800;
  color: var(--color-blue);
}

.ost-se-rating__text span{
  font-weight: 700;
  opacity: .85;
}

.ost-se-yp__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px){
  .ost-se-yp__grid{
    grid-template-columns: 1fr;
  }
}

.ost-se-yp__facts{
  display: grid;
  gap: 10px;
}

.ost-se-ypCard{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-beige-dark);
}

.ost-se-ypCard__icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(250,185,0,.15);
  color: var(--color-blue);
}

.ost-se-ypCard__label{
  font-weight: 900;
  color: var(--color-blue);
  margin-bottom: 4px;
}

.ost-se-ypCard__value{
  font-weight: 700;
  color: var(--color-blue-dark);
}

.ost-se-ypCard__value a{
  color: var(--color-blue);
  text-decoration: none;
}
.ost-se-ypCard__value a:hover{
  text-decoration: underline;
}

/* Services */
.ost-se-ypServices{
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-beige-dark);
}

.ost-se-ypServices__label{
  font-weight: 900;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.ost-se-ypServices__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.ost-se-ypServices__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,45,94,.06);
  color: var(--color-blue-dark);
  font-weight: 800;
  font-size: 13px;
}

.ost-se-ypServices__item i{
  color: var(--color-blue);
}

/* Map */
.ost-se-yp__mapCol{
  display: grid;
  gap: 10px;
}

.ost-se-map{
  width: 100%;
  height: 260px;
  border-radius: 14px;
  border: 1px solid var(--color-beige-dark);
  background: #eaeaea;
  overflow: hidden;
}

.ost-se-map.is-empty{
  display: grid;
  place-items: center;
  color: var(--color-blue-dark);
  font-weight: 800;
  padding: 18px;
  background: #fff;
}

.ost-se-mapRoute{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  color: var(--color-blue);
  background: #fff;
  border: 1px solid var(--color-beige-dark);
  padding: 10px 12px;
  border-radius: 12px;
}

/* ==========================================================
   Galerie (Swiper)
   ========================================================== */
.ost-se-gallery{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-beige-dark);
}

.ost-se-gallery__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ost-se-gallery__title{
  margin: 0;
  color: var(--color-blue);
  font-weight: 900;
  font-size: 18px;
}

.ost-se-swiper{
  position: relative;
}

.ost-se-gallery__link{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-beige-dark);
  background: #fff;
}

.ost-se-gallery__img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ost-se-swiper__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--color-beige-dark);
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.ost-se-swiper__prev{ left: 8px; }
.ost-se-swiper__next{ right: 8px; }

.ost-se-swiper__nav i{
  color: var(--color-blue);
  font-size: 18px;
}

.ost-se-swiper__pagination{
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================
   Sidebar Boxes
   ========================================================== */
.entry-sidebar .ost-se-people{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.entry-sidebar .ost-se-people__item{
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--color-beige-dark);
  background: var(--color-beige-light);
}

.entry-sidebar .ost-se-people__name{
  display: block;
  color: var(--color-blue);
  font-weight: 900;
  margin-bottom: 4px;
}

.entry-sidebar .ost-se-people__role{
  font-weight: 700;
  color: var(--color-blue-dark);
  opacity: .9;
  margin-bottom: 8px;
}

.entry-sidebar .ost-se-people__row{
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  color: var(--color-blue-dark);
}
.entry-sidebar .ost-se-people__row a{
  color: var(--color-blue);
  text-decoration: none;
}
.entry-sidebar .ost-se-people__row a:hover{
  text-decoration: underline;
}

.entry-sidebar .ost-se-contactForm p{
  margin: 0 0 10px;
}

.entry-sidebar .ost-se-contactForm input,
.entry-sidebar .ost-se-contactForm textarea{
  width: 100%;
  border: 1px solid var(--color-beige-dark);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  font-weight: 700;
}

.entry-sidebar .ost-se-whatsBtn{
  width: 100%;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.entry-sidebar .ost-se-muted{
  margin-top: 10px;
  opacity: .75;
  font-weight: 700;
}
