.teaser .inner_section {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: 40px auto 0;
  border-radius: 20px;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 425px;
  transition: var(--baseTransition);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .teaser .inner_section {
    padding: 30px 20px;
    min-height: 300px;
  }
}
@media (max-width: 450px) {
  .teaser .inner_section {
    padding: 30px 20px;
    min-height: 220px;
  }
}
.teaser .inner_section:hover {
  transform: translateY(-15px);
}
.teaser .inner_section:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  opacity: 0.89;
  background: linear-gradient(0deg, #201b18 0%, rgba(131, 114, 101, 0.4) 100%);
}
.teaser .inner_section > img {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  object-fit: cover;
}
.teaser .inner_section > a {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 4;
}
.teaser .inner_section .content_section {
  position: relative;
  color: #fff;
  z-index: 3;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(5.2631578947rem, calc(2.1052631579rem + 13.3333333333vw), 10.5263157895rem);
}
.teaser .inner_section .content_section div.title_section * {
  color: #fff;
  font-size: 25px;
  font-style: normal;
  line-height: 125.5%;
}
@media (max-width: 768px) {
  .teaser .inner_section .content_section div.title_section * {
    font-size: 22px;
  }
}
.teaser .inner_section .content_section p {
  text-align: center;
  color: #fff;
  padding: 0;
  margin-top: 20px;
}
.wp-block-columns .teaser .inner_section, .px-frame-layout .teaser .inner_section, .accordion-content .teaser .inner_section, .tab_wrapper .teaser .inner_section {
  width: 100%;
}
