/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: "custom";
  src: url("assets/fonts/custom1.eot");
  src: url("assets/fonts/custom1.eot?#iefix") format("embedded-opentype"),
       url("assets/fonts/custom1.woff") format("woff"),
       url("assets/fonts/custom1.ttf") format("truetype"),
       url("assets/fonts/custom1.svg#custom") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Manrope', sans-serif !important;
}

:root {
  --bs-body-font-size: 14px;
}

/* ==========================================================================
   Icon font
   ========================================================================== */

[data-icon]:before,
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "custom" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[data-icon]:before             { content: attr(data-icon); }
.icon-bluesky-logo:before      { content: "\e801"; }
.icon-mastodon-logo:before     { content: "\e802"; }
.icon-letterboxd-logo:before   { content: "\e803"; }

/* ==========================================================================
   Gradients
   ========================================================================== */

.bottom-gradient-black {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
}

.bottom-gradient-grey {
  background: linear-gradient(180deg, rgba(0,174,255,0) 0%, rgba(0,0,0,0) 30%, rgba(33,37,41,1) 100%);
}

.multiple-gradient-grey {
  background:
    linear-gradient(to top,   rgba(33,37,41,1) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(to right, rgba(33,37,41,1) 0%, rgba(0,0,0,0) 20%),
    linear-gradient(to left,  rgba(33,37,41,1) 0%, rgba(0,0,0,0) 20%),
    linear-gradient(180deg,   rgba(0,174,255,0) 0%, rgba(0,0,0,0) 40%, rgba(33,37,41,1) 100%);
}

.multiple-gradient-black {
  background:
    linear-gradient(to top,   rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 20%),
    linear-gradient(to left,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 20%);
}

/* ==========================================================================
   Utility classes
   ========================================================================== */

.fs-7          { font-size: .8rem !important; }
.top-70px      { top: 70px; }
.mt-52px       { margin-top: 52px; }
.z-10          { z-index: 10 !important; }
.transparency-0 { color: rgba(0,0,0,0) !important; }
.usheru-logo a { color: #fff !important; }

.h-30  { height: 30% !important; }
.h-80  { height: 80% !important; }
.h-90  { height: 90% !important; }
.w-60  { width: 60%; }
.w-70  { width: 70%; }
.w-80  { width: 80%; }
.w-140px { width: 140px; }
.h-140px { height: 140px; }

.bg-grey       { background: #161616; }
.bg-light-grey { background: #181818; }

/* ==========================================================================
   Links
   ========================================================================== */

a {
  transition: color 0.3s ease-out, background 0.3s ease-out, border 0.3s ease-out;
  color: #fff;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

.page-id-31749 .wrap {
  background: rgb(248,249,250);
}

.wrap.bg-light a {
  color: #000;
}

.wrap.bg-light a:hover,
.wrap.bg-light a:focus,
.wrap.bg-light a:active {
  color: #666;
}

/* ==========================================================================
   Lazy loading
   ========================================================================== */

.lazy-bg {
  background: #eaeaea url('/path/to/placeholder.jpg') no-repeat center center;
  background-size: cover;
  min-height: 200px;
}

.lazyload  { opacity: 0; transition: opacity 0.5s ease; }
.lazyloaded { opacity: 1; }

/* ========================================================================== */
/* Media click player - Desktop interactive video */
/* ========================================================================== */

.media-click {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: default;
}

.media-click.has-video {
    cursor: pointer;
}

.media-click.has-video .media-iframe,
.media-click.has-video .media-video,
.media-click.has-video .play-overlay,
.media-click.has-video .media-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.media-click.has-video .media-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Play overlay & button */
.media-click.has-video .play-overlay {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}

.media-click.has-video:hover .play-overlay {
    background: rgba(0,0,0,0.45);
}

.media-click.has-video .play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.media-click.has-video .play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #000;
    margin-left: 4px;
}

.media-click.has-video:hover .play-button {
    transform: scale(1.1);
    background: #fff;
}

/* Hide media until active */
.media-click.has-video .media-iframe,
.media-click.has-video .media-video {
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.media-click.has-video.is-playing .media-iframe,
.media-click.has-video.is-playing .media-video {
    opacity: 1;
    pointer-events: auto;
}

.media-click.has-video.is-playing .media-image,
.media-click.has-video.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Close button */
.media-click.has-video .media-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 80px;
    left: 60px;
    z-index: 10;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.3s ease;
    font-size: 1.2rem;
}

.media-click.has-video:hover .media-close {
    transform: scale(1.1);
    background: rgba(255,255,255,1);
}

.media-click.has-video.is-playing .media-close {
    opacity: 1;
    pointer-events: auto;
}

/* ========================================================================== */
/* Mobile trailer */
/* @media (max-width: 767.98px) {
    .mobile-trailer-container,
    .embed-container {
        position: relative;
        width: 100%;
        padding-top: 42.857%; /* 21:9 aspect ratio → 9/21*100% */
        overflow: hidden;
    }

    .mobile-trailer,
    .mobile-trailer video,
    .embed-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* ensures MP4 video fills container without distortion */
    }
} */

/* ==========================================================================
   Misc components
   ========================================================================== */

.carousel-control-prev-icon,
.carousel-control-next-icon { display: none; }

.card-img-wrapper {
  height: 270px;
  overflow: hidden;
}

#wrapper-404      { height: 600px; }
#confirmation-wrapper { background: rgba(0,0,0,0.8); }

/* ==========================================================================
   Archive + Search cards
   ========================================================================== */

.archiv.card,
.suche.card {
  border: 1px solid transparent;
  transition: background 0.3s ease-out, transform 0.3s ease-out, border 0.3s ease-out, box-shadow 0.3s ease-out;
  &:hover {
    transform: scale(1.02);
  }
}

.archiv.card:hover,
.suche.card:hover {
  background: #000;
  border: 1px solid rgba(54,0,51,.3);
  box-shadow: 0px 62px 55px -74px rgba(0,0,0,1);
  color: #fff !important;
}

.wrap.bg-light .archiv.card a:hover,
.wrap.bg-light .suche.card a:hover {
  color: #fff !important;
}

.wrap.bg-black .archiv.card .card-body {
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

.wrap.bg-black .archiv.card a:hover .card-body {
  background: #fff !important;
  color: #000;
}

.wrap.bg-black .archiv.card a:hover {
  color: #fff !important;
}

/* ==========================================================================
   Archive columns (old paginated list)
   ========================================================================== */

.archiv .letter-items {
  column-count: 1;
  column-gap: 1rem;
}

.archiv .letter-items li {
  break-inside: avoid;
  position: relative;
}

.archiv .letter-items .position-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: #eee;
  color: #555;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
}

.archiv .letter-section:last-child {
  flex-grow: 1;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

.archiv .letter-section:last-child .letter-items {
  flex-grow: 1;
  margin-bottom: 0 !important;
}

.archiv .item .film-container:hover {
  text-decoration: underline !important;
}

@media (min-width: 768px)  { .archiv .letter-items { column-count: 2; } }
@media (min-width: 992px)  { .archiv .letter-items { column-count: 4; } }
@media (min-width: 1200px) { .archiv .letter-items { column-count: 5; } }

/* ==========================================================================
   Archive A-Z index
   ========================================================================== */

#archiv-filter-bar { padding: 8px 0; }

#archiv-filter-bar.is-sticky {
  position: sticky;
  top: 70px;
  z-index: 101;
  background-color: #fff;
}

#archiv-az-bar {
  position: sticky;
  top: 70px;
  z-index: 100;
  padding: 8px 0;
}

.archiv-az-btn.active {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}

.archiv-az-section { scroll-margin-top: 130px; }

.archiv-az-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0 16px;
}

.archiv-az-item:hover a {
  color: #fff !important;
  background-color: #000 !important;
}

@media (min-width: 576px) {
  .w-sm-auto { width: auto !important; }
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.page-link       { color: #000; }
.page-link:hover { color: #000; }
.page-link:focus { color: #fff; }

.active > .page-link,
.page-link.active {
  background: #000;
  border-color: #fff;
  color: #fff !important;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar-toggler {
  width: 60px;
  height: 50px;
  z-index: 999;
  transition: background 0.3s ease-out, top 0.3s ease-out;
}

.navbar-toggler:hover,
.navbar-toggler:active {
  background: #00a2ff;
  color: #fff;
}

.navbar-toggler:focus {
  background: #00a2ff;
  box-shadow: 0 0 0;
  color: #fff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.fix .navbar-toggler { background: #fff !important; }
.fix .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

#nav-home { display: none; }

.navbar.header-nav {
  min-height: 70px;
  height: 70px;
  transition: background 0.3s ease-out, top 0.3s ease-out, margin 0.3s ease-out;
}

.navbar.y-toggled { top: 98px !important; }

.navbar.y-toggled   .search-top .bi-search { display: none !important; }
.navbar.y-toggled   .search-top .bi-x-lg   { display: block !important; }
.navbar.y-untoggled .search-top .bi-search { display: block !important; }
.navbar.y-untoggled .search-top .bi-x-lg   { display: none !important; }

.navbar.fix .search-top   { background: #fff !important; }
.navbar.fix .search-top i { color: #000 !important; }

.navbar .main-nav li a     { color: #000; }
.navbar.fix .main-nav li a { color: #fff; }

#container {
  transition: margin 0.3s ease-out, top 0.3s ease-out;
  margin-top: 0;
  top: 0;
}

#container.y-toggled              { top: 98px !important; }
#container.y-toggled #search-form { top: 0; }

.nav > li > a:focus          { background: none; }
.main-nav .input-group-btn   { line-height: normal; }

.main-nav li {
  height: 50px;
  line-height: 50px;
}

.main-nav li a,
.footer-nav li a {
  transition: background 0.3s ease-out;
}

.navbar.fix .main-nav a.active,
.navbar.fix .main-nav a:hover {
  color: #000;
  background: #fff;
}

.navbar .main-nav li a.active,
.navbar .main-nav li a:hover,
.navbar .main-nav li a:active,
.navbar .main-nav li a:focus {
  background: #000;
  color: #fff;
}

.navbar .main-nav li a.active:hover       { color: #000; background: #fff; }
#navbar-wrapper.fix .main-nav a.active:hover {background: #000;color: #fff; }

/* Brand */
a.brand-top {
  width: 150px;
  height: 50px;
  transition: background 0.3s ease-out;
}

a.brand-top svg { width: 120px; }

a.brand-top .cls-1 {
  fill: #000;
  transition: fill 0.3s ease-out;
}

.nav.fix a.brand-top .cls-1 { fill: #fff; }

a.brand-top:hover,
a.brand-top:focus,
a.brand-top:active { background: #000; }

a.brand-top:hover .cls-1,
a.brand-top:focus .cls-1,
a.brand-top:active .cls-1 { fill: #fff; }

.nav.fix a.brand-top:hover,
.nav.fix a.brand-top:focus,
.nav.fix a.brand-top:active { background: #fff; }

.nav.fix a.brand-top:hover .cls-1,
.nav.fix a.brand-top:focus .cls-1,
.nav.fix a.brand-top:active .cls-1 { fill: #000; }

/* ==========================================================================
   Search bar
   ========================================================================== */

.search-top {
  height: 50px;
  width: 50px;
  cursor: pointer;
}

.search-top i {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease-out, line-height 0.3s ease-out;
}

.search-top:hover i,
.search-top:focus i { color: #fff; }

.y-toggled .search-top         { background: #000; }
.y-toggled .search-top i       { color: #fff; }
.y-toggled .search-top:hover   { background: #fff; }
.y-toggled .search-top:hover i { color: #fff; }

/* Consolidated from three scattered #search-form declarations */
#search-form {
  position: fixed;
  height: 98px;
  top: -98px;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 30px 0;
  transition: top 0.3s ease-out;
}

#search-form .search-form { padding: 30px 5px; }
.search-top .search-form   { margin: 0 10px 0 60px; }
.search-form input         { padding: 0 .5em; margin: 8px 0 0 0; }

#search             { display: block; margin-right: 60px; position: absolute; }
#small-navi-wrapper { position: absolute; }

.ui-menu                          { padding: 0; border: 1px solid #ddd; }
.ui-menu .ui-menu-item            { padding: 0; }
.ui-state-active,
.ui-widget-content .ui-state-active { background: #ffc107; color: #000; margin: 0; }
.ui-menu .ui-menu-item-wrapper    { padding: 8px 12px; border: 0 !important; }

/* ==========================================================================
   Awesomplete
   ========================================================================== */

.input-group .awesomplete        { display: flex; flex: 1 1 auto; }
.input-group .awesomplete > input { flex: 1 1 auto; width: auto; }

.awesomplete > ul {
  margin-top: 38px;
  padding: 4px 0;
  background: #fff;
  border: 0;
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  z-index: 9999;
}

.awesomplete li,
.awesomplete > ul > li { list-style: none; }

.awesomplete > ul > li {
  padding: 8px 20px !important;
  line-height: 24px !important;
  display: block !important;
  cursor: pointer !important;
  background: none !important;
  color: #000 !important;
  font-weight: 500 !important;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

/* Merged two conflicting aria-selected declarations; using rgb(51,51,61) */
.awesomplete > ul > li:hover,
.awesomplete > ul > li[aria-selected="true"] {
  color: #fff !important;
  background: rgb(51,51,61) !important;
  font-weight: 600 !important;
  padding-left: 17px !important;
}

.kino-label {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 2px 5px;
  margin-right: 5px;
  font-size: 0.75rem;
}

/* ==========================================================================
   Slider / Carousel
   ========================================================================== */

.carousel-wrapper { width: 100%; overflow: hidden; }

.feature-link-wrapper {
  color: #fff !important;
  transition: color 0.3s ease-out;
}

.feature-link-wrapper:hover,
.feature-link-wrapper:focus,
.feature-link-wrapper:active { color: #fff !important; }

.feature-link-sentence {
  color: #fff !important;
  transition: color 0.3s ease-out, text-decoration 0.3s ease-out !important;
}

.feature-link-wrapper:hover .feature-link-sentence,
.feature-link-wrapper:focus .feature-link-sentence,
.feature-link-wrapper:active .feature-link-sentence { color: #fff !important; }

.link-animate {
  position: relative;
  display: inline-block;
}

.link-animate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

h1.link-animate::after,
h5.link-animate::after { background: #fff; }

a:hover .link-animate::after { width: 100%; }

.feature-link-wrapper .lower-third {
  margin-top: auto;
  margin-bottom: 10%;
}

.feature-link-wrapper div.container-fluid { padding: 0 15%; }

#highlightsliderlider {
  height: 100vh;
  min-height: 700px;
  max-height: 1050px;
}

#home-entertainmentslider .carousel-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 1;
}

#home-entertainmentslider .carousel-item:hover .carousel-bg { transform: scale(1.05); }

/* ==========================================================================
   Film list
   ========================================================================== */

.film-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.film-list .item { width: 177px; }

.film-list .item .img-wrapper {
  height: 263px;
  width: 177px;
}

.item-holder { flex: 0 0 150px; width: 150px; }

.movie-wrapper {
  transition: color 0.3s ease-out, background 0.3s ease-out, transform 0.3s ease-out;
}

.movie-wrapper .thumb { transition: transform 0.3s ease-out; }

.movie-wrapper:hover { color: #acacac !important; }

.movie-wrapper:hover .thumb {
  transform: translate(-50%, -50%) scale(1.2) !important;
}

.custom-popover .popover-body {
  background-color: #fff;
  color: #000;
  max-width: 250px;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  padding: 0.75rem;
}

/* ==========================================================================
   Single / media items
   ========================================================================== */

#single-medien .item {
  margin: 2em 0;
  width: 250px;
  padding-bottom: 2em;
  list-style-type: none;
}

#single-medien .item-holder img { width: 150px; height: auto; }

#such-medien .item {
  margin: 2em 0;
  width: 150px;
  padding-bottom: 2em;
  list-style-type: none;
}

#such-medien .item-holder,
#such-medien .item-holder img { height: 150px; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

#single .single-bilder {
  width: 100%;
  margin: 1rem auto 0;
  display: grid;
  grid-gap: 10px;
  text-align: center;
  grid-template-columns: repeat(2, 1fr);
}

#single-page .impressum p { padding: 0 0 1em; }

#kino .search-top { opacity: 1; }

/* ==========================================================================
   Search masonry
   ========================================================================== */

.search-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.search-masonry .card { height: 100%; }

/* ==========================================================================
   Masonry columns
   ========================================================================== */

.masonry-columns { column-count: 1; column-gap: 1rem; }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
}

.masonry-item img { width: 100%; display: block; height: auto; }

.masonry-image-wrapper:hover img          { transform: scale(1.05); }
.masonry-image-wrapper:hover .masonry-caption { opacity: 1; }

/* ==========================================================================
   Kino / Typeahead
   ========================================================================== */

.twitter-typeahead           { flex: 1; width: 100%; }
.typeahead.form-control      { transition: box-shadow 0.3s ease-out; }
.tt-query                    { box-shadow: inset 0 1px 1px rgba(0,0,0,.075); }
.tt-hint                     { color: #999; }

.tt-menu {
  width: 100%;
  margin-top: 4px;
  padding: 4px 0;
  background: #fff;
  border: 1px solid #ccc;
}

.tt-suggestion { padding: 3px 20px; line-height: 24px; display: block; }

.tt-suggestion.tt-cursor,
.tt-suggestion:hover { color: #000; background: #fff; }

.tt-suggestion p { margin: 0; }
a.tt-suggestion  { color: #000; }

/* ==========================================================================
   Footer logo
   ========================================================================== */

#capelight_pictures_footer         { height: 35px; }
#capelight_pictures_footer .cls-1  { fill: #6c757d; transition: fill 0.3s ease-out; }
#capelight_pictures_footer:hover .cls-1 { fill: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */

.cem { height: 38px; }

#footer a {
  color: #fff;
  transition: color 0.3s ease-out, background 0.3s ease-out;
}

#footer nav a:hover,
#footer nav a:focus,
#footer nav a:active,
#footer nav a.active {
  color: #000 !important;
  background: #fff;
}

#footer ul li a:hover,
#footer ul li a:focus,
#footer ul li a:active { color: #000 !important; }

/* Base social link — height/line-height set once */
#footer ul.social li a,
#footer ul.social li a.social-link {
  transition: color 0.3s ease-out, background 0.3s ease-out;
  height: 50px;
  line-height: 50px;
}

#footer ul.social li a.social-link i { font-size: 1.7rem; }

#footer ul.social li a:hover,
#footer ul.social li a:focus,
#footer ul.social li a:active {
  color: #000 !important;
  background: #fff !important;
}

ul.social.contact li a {
  transition: color 0.3s ease-out, background 0.3s ease-out;
  height: 50px;
  line-height: 50px;
}

ul.social.contact li a:hover,
ul.social.contact li a:focus,
ul.social.contact li a:active {
  color: #fff !important;
  background: #000 !important;
}

nav.y-toggled #navbarOffcanvasLg.show { margin-top: 98px; }

/* ==========================================================================
   Media queries
   ========================================================================== */

/* max-width: 767.98px
   Covers both the former 200–575px and 576–767px blocks (identical content)
   plus mobile nav and footer overrides.
   ------------------------------------------------------------------ */
@media screen and (max-width: 767.98px) {
  #home-entertainmentslider {
    height: 100vh;
    min-height: 410px;
    max-height: 500px;
  }

  #home-entertainmentslider .carousel-inner,
  #home-entertainmentslider .carousel-item {
    height: 100vh;
    overflow: hidden;
    max-height: 500px;
  }

  #home-entertainmentslider .feature-link-wrapper {
    height: 100vh;
    overflow: hidden;
    max-height: 50px;
  }

  #capelight_pictures_footer { height: 45px; }
  .cem                        { height: 32px; }

  .feature-link-wrapper .lower-third { margin-bottom: 8%; }

  .no-border-below-md { border-right: 0 !important; }

  #footer div { border: 0 !important; }

  .main-nav { padding-right: 0; }

  .main-nav li {
    position: relative;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    height: auto;
  }

  .main-nav li.nav-line:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 0;
    background: #000;
    transition: width 0.3s ease-out;
  }

  .main-nav li.nav-line:hover:before,
  .main-nav li.open:hover:before { width: 100%; }

  .navbar.fix .main-nav li a { color: #000; }

  .main-nav li a {
    text-align: right;
    color: #000;
    display: block;
    line-height: 50px;
    width: 100%;
    transition: color 0.3s ease-out, background 0.3s ease-out;
  }

  .main-nav li a:hover,
  .main-nav li a:active,
  .main-nav li a:focus,
  .main-nav li.open a:hover,
  .main-nav li.open a:active,
  .main-nav li.open a:focus {
    color: #fff;
    text-decoration: none;
    background: transparent;
  }

  .search-top              { position: absolute; right: 80px; }
  #single-medien .item-holder img { width: 120px; }
  .item-holder             { flex: 0 0 120px; width: 120px; }
}
@media (max-width: 767.98px) {
    .media-click.has-video {
        pointer-events: none;
        cursor: default;
    }
    .media-click.has-video.is-playing .media-image {opacity:1;}
}
@media (hover: hover) {
    .media-click.has-video:hover .play-overlay {
        background: rgba(0,0,0,0.45);
    }
}
/* 768–991.98px */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  #capelight_pictures_footer { height: 28px; }
  .cem                        { height: 27px; }

  #home-entertainmentslider {
    height: 100vh;
    min-height: 510px;
    max-height: 600px;
  }

  #home-entertainmentslider .carousel-inner,
  #home-entertainmentslider .carousel-item,
  #home-entertainmentslider .feature-link-wrapper {
    height: 100vh;
    overflow: hidden;
    max-height: 600px;
  }

  #footer ul.social li a.social-link {
    height: 30px !important;
    padding: 0 4px !important;
  }

  #footer ul.social li a.social-link i { font-size: 1.20rem !important; }

  #single-medien .item-holder img { width: 140px; }
  .item-holder { flex: 0 0 140px; width: 140px; }
}

/* min-width: 768px */
@media (min-width: 768px) {
  .search-masonry  { grid-template-columns: repeat(2, 1fr); }
  .masonry-columns { column-count: 2; }
}

/* max-width: 991.98px */
@media screen and (max-width: 991.98px) {
  #highlightsliderlider { height: 600px; }
  .feature-link-wrapper:hover .link-animate::after { width: 0%; }
  #single-medien { display: block; padding: 0; }

  .film-list { grid-template-columns: none; display: block; }

  .film-list .item .img-wrapper {
    flex: 0 0 130px;
    width: 130px !important;
    height: 166px;
  }

  .img-wrapper .thumb {
    flex: 0 0 130px !important;
    width: 130px !important;
    height: auto !important;
  }
}

/* 992–1199.98px */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  #capelight_pictures_footer { height: 28px; }

  #home-entertainmentslider {
    height: 100vh;
    min-height: 610px;
    max-height: 700px;
  }

  #home-entertainmentslider .carousel-inner,
  #home-entertainmentslider .carousel-item,
  #home-entertainmentslider .feature-link-wrapper {
    height: 100vh;
    overflow: hidden;
    max-height: 700px;
  }

  .film-list { grid-template-columns: repeat(4, 1fr); }
}

/* min-width: 992px */
@media (min-width: 992px) {
  .search-masonry { grid-template-columns: repeat(3, 1fr); }

  .footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, max-content);
    column-gap: 0.45rem;
    row-gap: 0.25rem;
  }
}

/* 1200–1399.98px */
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  #home-entertainmentslider {
    height: 100vh;
    min-height: 670px;
    max-height: 760px;
  }

  #home-entertainmentslider .carousel-inner,
  #home-entertainmentslider .carousel-item,
  #home-entertainmentslider .feature-link-wrapper {
    height: 100vh;
    overflow: hidden;
    max-height: 760px;
  }

  .film-list { grid-template-columns: repeat(5, 1fr); }
}

/* 1400–1799.98px */
@media screen and (min-width: 1400px) and (max-width: 1799.98px) {
  #home-entertainmentslider {
    height: 100vh;
    min-height: 710px;
    max-height: 800px;
  }

  #home-entertainmentslider .carousel-inner,
  #home-entertainmentslider .carousel-item,
  #home-entertainmentslider .feature-link-wrapper {
    height: 100vh;
    overflow: hidden;
    max-height: 800px;
  }
}

/* 1800px+ */
@media screen and (min-width: 1800px) {
  #home-entertainmentslider {
    height: 100vh;
    min-height: 810px;
    max-height: 1300px;
  }

  #home-entertainmentslider .carousel-inner,
  #home-entertainmentslider .carousel-item,
  #home-entertainmentslider .feature-link-wrapper {
    height: 100vh;
    overflow: hidden;
    max-height: 1300px;
  }
}

@media screen and (max-width: 400px) {
  #single-medien .item,
  #single-medien .item-holder { width: 100%; }
}

@media screen and (max-width: 900px) {
  .nav .open > a,
  .nav .open > a:hover,
  .nav .open > a:focus { background: transparent; }
}