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: 600;
    font-size: 14px;
    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;
}
.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: 50vh;
    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 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.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-beige-dark);
    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
}
.rc-drilldown-title {
    font-weight: 500;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.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);
}
.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 article.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 40px !important;
        max-width: none;
    }
    main#main .page-header .entry-title {
        font-size: 30px;
    }
    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;
}
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;
}
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;
}
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;
}
@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
    }
}
/* ==================== 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__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);
}
@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 Styles (EXCLUDING form.header-search + EXCLUDING Shield widget)
   Border: var(--color-blue)
   Focus:  var(--color-yellow)
   ========================================================================== */

/* --------------------------------
   Base Inputs (not inside .ost-shield)
--------------------------------- */
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;
}
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: 44px;
  padding: 0 18px;

  border-radius: 10px;
  background: var(--color-blue);
  color: #fff;

  font-weight: 600;
  cursor: pointer;

  transition:
    transform .08s ease,
    border-color .15s ease,
    box-shadow .15s ease,
    background-color .15s ease;
}

form:not(.header-search):not(.ostfriesland-comments__form) button:hover:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="submit"]:hover:not(.ost-shield *),
form:not(.header-search):not(.ostfriesland-comments__form) input[type="button"]:hover:not(.ost-shield *){
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

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;
}
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);
}
/* ==================== Auth ==================== */
.ost-auth__links{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
}

/* make links look like small buttons */
.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;
  }
}
/* ==================== Pagenation ==================== */

/* Pagination */
.ost-pagination{margin-top:18px}
.ost-pagination__inner{display:flex;justify-content:space-between;gap:12px;align-items:center;flex-wrap:wrap}
.ost-pagination__btn{
  display:flex;gap:10px;align-items:center;text-decoration:none;
  background:#fff;border:1px solid var(--color-beige-dark);
  border-radius:12px;padding:10px 12px;font-weight:900;color:var(--color-blue)
}
.ost-pagination__btn.is-disabled{opacity:.45;pointer-events:none}
.ost-pagination__pages{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.ost-pagination__page{
  text-decoration:none;font-weight:900;color:var(--color-blue);
  background:#fff;border:1px solid var(--color-beige-dark);
  border-radius:12px;padding:8px 10px;min-width:40px;text-align:center
}
.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}