/* =========================================================
   UNSERE-NEWS – News cards 
========================================================= */

/* GRID */
.unsere-news #content .container#position{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 420px;
  gap: 24px;
  margin-top: 20px;
}

/* RESET */
.unsere-news #content .container#position > .collection_list.col_news{
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* CARD */
.unsere-news #content .container#position 
> .collection_list.col_news 
.collection_container{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: transparent;
  overflow: hidden;
  border-radius: var(--br-keyfact);
}

/* IMAGE */
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-bild{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-bild img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.unsere-news #content .container#position 
> .collection_list.col_news 
.collection_container::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    var(--overlay-dark) 35%,
    var(--overlay-mid) 65%,
    transparent 100%
  );
  z-index: 2;
}

/* TEXT LAYER */
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-title,
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-text{
  position: relative;
  z-index: 3;
  color: var(--fc-white);
}

/* TITLE – 2 LINES */
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-title{
  font-family: var(--ff-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-news-title);
  line-height: 1.3;
  padding: 0 var(--p-news-right) 0 var(--p-news-left);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(1.3em * 2);
  overflow: hidden;
  margin-bottom: var(--space-title-text-first);
}

/* TEXT – VISIBLE FOR ALL */
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-text{
  display: block;
  font-size: var(--fs-body);
  line-height: 1.5;
  padding: 0 var(--p-news-right) var(--p-news-bottom) var(--p-news-left);
}

/* CLEAN LINK */
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-text a{
  color: inherit;
  text-decoration: none;
  display: block;
}

/* TEXT – 3 LINES */
.unsere-news #content .container#position 
> .collection_list.col_news 
.col-news-text .textcontent{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(1.5em * 3);
  overflow: hidden;
  color: var(--fc-white);
}

/* WHOLE CARD CLICKABLE */
.unsere-news #content .container#position 
> .collection_list.col_news 
.collection_link a.button{
  position: absolute;
  inset: 0;
  z-index: 5;
  text-indent: -9999px;
  background: transparent;
  border: 0;
}

/* ARROW */
.unsere-news #content .container#position 
> .collection_list.col_news 
.collection_container::after{
  content: "";
  position: absolute;
  right: var(--space-arrow-right);
  bottom: var(--space-arrow-bottom);
  width: var(--size-arrow);
  height: var(--size-arrow);
  z-index: 4;
  transform: rotate(-90deg);
  background-color: var(--clr-accent);
  -webkit-mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat;
  mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 994px){
  .unsere-news #content .container#position{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 420px;
  }
}

@media (max-width: 640px){
  .unsere-news #content .container#position{
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }
}





/* =========================================================
   UNSERE-NEWS — Banner 
========================================================= */

.unsere-news #area-2.main-screen.grey{
  background: var(--clr-primary-white, #ffffff);
  padding: 1rem 0 !important;
  position: relative;
}

.unsere-news #content{
  padding-bottom: 2rem !important;
}

.unsere-news .main-screen.grey > .container{
  /* max-width: 100%; */
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.unsere-news .collection_list.col-prod-det-ban{
  width: 100%;
  float: none;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}

/* host wrapper */
.unsere-news .col-prod-det-ban,
.unsere-news .collection_list.col-prod-det-ban{
  position: relative;
}

.unsere-news .collection_list.col-prod-det-ban .collection_container{
  position: relative;
  width: 100%;
  min-height: 260px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* background image */
.unsere-news .col-prod-det-ban-bild{
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: var(
    --banner-clip-path,
    polygon(0 10%, 100% 0, 100% 90%, 0 100%)
  ) !important;
}

.unsere-news .col-prod-det-ban-bild img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unsere-news .col-prod-det-ban-bild::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark, rgba(0,0,0,.65));
}

/* wrapper (content layout) */
.unsere-news .col-prod-det-ban-wrapper{
  position: relative;
  z-index: 1;
  max-width: var(--banner-max-width, 1380px);
  margin: 0 auto;
  padding: 90px 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.unsere-news .col-prod-det-ban-left{
  max-width: 620px;
}

.unsere-news .col-prod-det-ban-right{
  flex: 0 0 auto;
}

.unsere-news .col-prod-det-ban-title{
  margin: 0 0 18px 0;
  color: var(--fc-white, #fff);
  font-family: var(--ff-heading, 'Raleway', sans-serif);
  font-size: 34px;
  line-height: 1.2;
  font-weight: var(--fw-bold, 700);
}

.unsere-news .col-prod-det-ban-title::after{
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--clr-accent, #339933);
  margin-top: 14px;
}

.unsere-news .col-prod-det-ban-text{
  margin: 0;
  color: var(--fc-white, #fff);
  opacity: .9;
  font-family: var(--ff-body, 'Raleway', sans-serif);
  font-size: 16px;
  line-height: 1.6;
}

.unsere-news .col-prod-det-ban-link a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: var(--p-button, 10px 15px);
  background: var(--clr-primary-white, #fff);
  color: var(--clr-accent, #339933);
  font-size: var(--fs-400, 14px);
  font-weight: 500;
  border-radius: var(--br-keyfact) !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease;
}

.unsere-news .col-prod-det-ban-link a:hover{
  background: #f2f2f2;
}

.unsere-news 
#area-3{
  display: none !important;
}

.unsere-news 
#area-4 {
  display: none !important;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .unsere-news .col-prod-det-ban-wrapper{
    padding: 70px 18px 50px;
    gap: 20px;
  }

  .unsere-news .col-prod-det-ban-title{
    font-size: 28px;
  }

  .unsere-news .col-prod-det-ban-link a{
    min-width: 200px;
  }
}

@media (max-width: 640px){
  .unsere-news .col-prod-det-ban-wrapper{
    padding: 60px 14px 42px;
    flex-direction: column;
    align-items: flex-start;
  }

  .unsere-news .col-prod-det-ban-link{
    width: 100%;
    margin-top: 10px;
  }

  .unsere-news .col-prod-det-ban-link a{
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 576px){
  .unsere-news #area-2 .col-prod-det-ban-wrapper{
    padding: 65px 16px 50px;
  }

  .unsere-news #area-2 .col-prod-det-ban-title{
    font-size: 26px;
  }

  .unsere-news #area-2 .col-prod-det-ban-bild{
    clip-path: none !important;
  }
}

@media (max-width: 991px){
  .unsere-news #area-2 .col-prod-det-ban-wrapper{
    padding: 70px 20px 55px;
    flex-direction: column;
    align-items: flex-start;
  }

  .unsere-news #area-2 .col-prod-det-ban-title{
    font-size: 28px;
  }
}



.unsere-news #area-9,
.unsere-news #area-9 .main-screen{
  padding: 2rem 0;
  position: relative;
  float: left;
  width: 100%;
}





/* =========================================================
   UNSERE-NEWS – DETAIL (FULL PREVIEW)
   Scope: body.mt.unsere-news.about-us.full_preview
========================================================= */

/* ==============================
   BASE / VISIBILITY
============================== */

body.mt.unsere-news.about-us.full_preview #content .container#position{
  display: block !important;
}

body.mt.unsere-news.about-us.full_preview #content .news-extra{
  display: none !important;
}

body.mt.unsere-news.about-us.full_preview #area-2{
  display: none !important;
}

body.mt.unsere-news.about-us.full_preview #area-9{
  display: none !important;
}

body.mt.unsere-news.about-us.full_preview #area-3,
body.mt.unsere-news.about-us.full_preview #area-4 {
  display: block !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 {
  background-color: #ffffff !important;
}


/* ==============================
   DETAIL 70/30 LAYOUT
============================== */

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-layout{
  display: grid !important;
  grid-template-columns: minmax(0, 70%) minmax(0, 30%) !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-left{
  min-width: 0 !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.col-news-datum{
  display: none !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-left .col-news-title{
  font-family: var(--ff-primary) !important;
  font-weight: var(--fw-bold) !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  margin: 0 0 16px 0 !important;
  padding-bottom: 14px !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-left .col-news-title::after{
  content: "" !important;
  display: block !important;
  width: 80px !important;
  height: 4px !important;
  background: var(--clr-accent) !important;
  margin-top: 12px !important;
  border-radius: var(--br-keyfact) !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-left .col-news-text{
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #333333 !important;
  margin: 0 !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-right{
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-right .col-news-bild{
  width: 100% !important;
  min-height: 420px !important;
  overflow: hidden !important;
  border-radius: var(--br-keyfact) !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-right .col-news-bild img{
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  object-fit: cover !important;
  display: block !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-right a.stc-more-info{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 16px !important;
  padding: 10px 16px !important;
  background: var(--clr-accent) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: var(--br-keyfact) !important;
  text-align: center !important;
  transition: opacity .2s ease !important;
}

body.mt.unsere-news.about-us.full_preview
.collection_full.col_news
.two-col-right a.stc-more-info:hover{
  opacity: .9 !important;
}

/* =========================================================
   AREA-3 – INSIGHTS SLIDER
========================================================= */

body.mt.unsere-news.about-us.full_preview #area-3.main-screen{
  background-color: var(--clr-primary-light) !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 > .container{
  max-width: var(--banner-max-width, 1380px) !important;
  width: 100% !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .two-col-below{
  width: 100% !important;
  padding: 20px 0 10px !important;
  position: relative !important;
  box-sizing: border-box !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .two-col-below .col-news-slider{
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .two-col-below .gallery-item .MagicZoom{
  padding: 0 !important;
  margin: 0 !important;
}

/* ==============================
   OWL BASE
============================== */

body.mt.unsere-news.about-us.full_preview #area-3 .owl-carousel{
  width: 100% !important;
  padding: 0 38px !important;
  box-sizing: border-box !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-stage-outer{
  overflow: hidden !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-stage{
  padding: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-item{
  padding: 0 !important;
  box-sizing: border-box !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-item > *{
  width: 100% !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item{
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item .MagicZoom{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item img,
body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item .MagicZoom img{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: var(--br-keyfact) !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .gallery-caption{
  padding: 12px 0 0 !important;
  margin: 0 !important;
  font-size: var(--fs-400, 14px) !important;
  line-height: 1.45 !important;
  color: rgba(34,34,34,.72) !important;
}

/* ==============================
   OWL NAV
============================== */

body.mt.unsere-news.about-us.full_preview #area-3 .owl-nav{
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  width: 100% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  justify-content: space-between !important;
  pointer-events: none !important;
  margin: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-nav button{
  pointer-events: auto !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-prev{
  margin-left: 14px !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-next{
  margin-right: 14px !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .ps-arrow{
  display: inline-block !important;
  width: 44px !important;
  height: 44px !important;
  position: relative !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .ps-arrow::before{
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 16px !important;
  height: 16px !important;
  border-right: 2px solid var(--clr-accent, #339933) !important;
  border-bottom: 2px solid var(--clr-accent, #339933) !important;
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .ps-arrow.ps-arrow-left::before{
  transform: translate(-50%, -50%) rotate(135deg) !important;
}

body.mt.unsere-news.about-us.full_preview #area-3 .owl-dots{
  display: none !important;
}

/* ==============================
   SLIDER RESPONSIVE
============================== */

@media (max-width: 1200px){
  body.mt.unsere-news.about-us.full_preview #area-3 .owl-carousel{
    padding: 0 50px !important;
  }

  body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item img,
  body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item .MagicZoom img{
    height: 250px !important;
  }
}

@media (max-width: 900px){
  body.mt.unsere-news.about-us.full_preview #area-3 .owl-carousel{
    padding: 0 44px !important;
  }

  body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item img,
  body.mt.unsere-news.about-us.full_preview #area-3 .gallery-item .MagicZoom img{
    height: 220px !important;
  }
}

/* =========================================================
   AREA-4 – MORE RECENT NEWS (GRID)
========================================================= */

body.mt.unsere-news.about-us.full_preview #area-4 > .container{
  max-width: var(--banner-max-width, 1380px) !important;
  width: 100% !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .line-title-center::after{
  content: "" !important;
  display: block !important;
  width: var(--size-title-line-width, 80px) !important;
  height: var(--size-title-line-height, 4px) !important;
  background: var(--clr-accent, #339933) !important;
  margin: var(--space-title-line-top, 12px) auto var(--space-title-line-bottom, 0px) !important;
  border-radius: var(--br-keyfact) !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 420px !important;
  gap: 24px !important;
  margin-top: 20px !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_list.col_news{
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_list.col_news .collection_container{
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  height: 100% !important;
  background: transparent !important;
  border-radius: var(--br-keyfact) !important;
  overflow: hidden !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .col-news-bild{
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  margin: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .col-news-bild img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ==============================
   OVERLAY + TEXT
============================== */

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_container::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    var(--overlay-dark, rgba(0,0,0,0.45)) 35%,
    var(--overlay-mid, rgba(0,0,0,0.20)) 65%,
    transparent 100%
  ) !important;
  z-index: 2 !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_content.col-news-title,
body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_content.col-news-text{
  position: relative !important;
  z-index: 3 !important;
  color: var(--fc-white, #fff) !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_content.col-news-title{
  font-family: var(--ff-primary) !important;
  font-weight: var(--fw-bold) !important;
  font-size: var(--fs-news-title, 20px) !important;
  line-height: 1.3 !important;
  padding: 0 var(--p-news-right, 18px) 0 var(--p-news-left, 18px) !important;

  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  max-height: calc(1.3em * 2) !important;
  overflow: hidden !important;

  margin-bottom: var(--space-title-text, 10px) !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_content.col-news-text{
  font-size: var(--fs-body, 14px) !important;
  line-height: 1.5 !important;
  padding: 0 var(--p-news-right, 18px) var(--p-news-bottom, 18px) var(--p-news-left, 18px) !important;
  color: var(--fc-white, #fff) !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .col-news-text a{
  color: inherit !important;
  text-decoration: none !important;
  display: block !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .col-news-text .textcontent{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  max-height: calc(1.5em * 2) !important;
  overflow: hidden !important;
  color: var(--fc-white, #fff) !important;
}

/* ==============================
   FULL CARD LINK + ARROW
============================== */

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_link a.button{
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  text-indent: -9999px !important;
  background: transparent !important;
  border: 0 !important;
}

body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news .collection_container::after{
  content: "" !important;
  position: absolute !important;
  right: var(--space-arrow-right, 18px) !important;
  bottom: var(--space-arrow-bottom, 18px) !important;
  width: var(--size-arrow, 26px) !important;
  height: var(--size-arrow, 26px) !important;
  z-index: 4 !important;
  transform: rotate(-90deg) !important;
  background-color: var(--clr-accent, #339933) !important;
  -webkit-mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat !important;
  mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat !important;
}

/* ==============================
   GRID RESPONSIVE
============================== */

@media (max-width: 994px){
  body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news{
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 420px !important;
  }
}

@media (max-width: 640px){
  body.mt.unsere-news.about-us.full_preview #area-4 .collection_content.col-news-more-news{
    grid-template-columns: 1fr !important;
    grid-auto-rows: 360px !important;
  }
}

/* =========================================================
   GLOBAL – OWL FOCUS
========================================================= */

.owl-carousel .owl-nav button:focus,
.owl-carousel .owl-nav button:active,
.owl-carousel .owl-nav button:focus-visible,
.owl-carousel .owl-nav a:focus,
.owl-carousel .owl-nav a:active,
.owl-carousel .owl-nav a:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}

.owl-carousel .owl-nav button,
.owl-carousel .owl-nav a{
  -webkit-tap-highlight-color: transparent !important;
}




/* =========================================================
   RESPONSIVE – DETAIL LAYOUT
   Breakpoint: <= 992px
========================================================= */

@media (max-width: 992px){

  body.mt.unsere-news.about-us.full_preview
  .collection_full.col_news
  .two-col-layout{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  body.mt.unsere-news.about-us.full_preview
  .collection_full.col_news
  .two-col-left{
    width: 100% !important;
  }

  body.mt.unsere-news.about-us.full_preview
  .collection_full.col_news
  .two-col-right{
    width: 100% !important;
  }

  body.mt.unsere-news.about-us.full_preview
  .collection_full.col_news
  .two-col-right .col-news-bild{
    min-height: 320px !important;
  }

  body.mt.unsere-news.about-us.full_preview
  .collection_full.col_news
  .two-col-right .col-news-bild img{
    min-height: 320px !important;
  }
}



@media (max-width: 768px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
