.teaser.left .teaser-single {
  box-shadow: none;
  padding: 20px;
}
.teaser.left .teaser-single .item {
  gap: 20px;
  text-align: start;
}
.teaser.left .teaser-single .item .title {
  padding-top: unset;
  color: var(--fontColorDark);
  line-height: 1.4;
}
.teaser.left .teaser-single .item .image {
  margin: unset;
}
.teaser.left .teaser-single .item .text {
  margin-bottom: unset;
}
.teaser.left .teaser-single:hover {
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB, 0, 0, 0), 0.1);
}

.teaser-single {
  width: 100%;
  min-width: 0;
  padding: clamp(1.6666666667rem, 1.0660660661rem + 3.3783783784vw, 3.8888888889rem);
  position: relative;
  transition: var(--baseTransition);
  background-color: rgba(216, 232, 242, 0.15);
  color: #436573;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}
.teaser-single .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  height: 100%;
}
.teaser-single .item .image {
  margin: auto;
}
.teaser-single .item .image img {
  width: 100%;
  max-width: 80px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}
.teaser-single .item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  hyphens: auto;
}
.teaser-single .item .content .teaser-link-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
}
.teaser-single .item .content .title {
  font-size: clamp(1rem, 0.8798798799rem + 0.6756756757vw, 1.4444444444rem);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  color: var(--fontColor);
  text-wrap: wrap;
}
.teaser-single .item .content .text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 16px;
  flex: 1;
  color: #436573;
}
.teaser-single .item .content .link-wrapper {
  margin-top: auto;
}
.teaser-single .item .content .popup-wrapper .teaser-popup-trigger {
  color: var(--main-color);
}
.teaser-single .item .content .popup-wrapper button {
  background-color: transparent;
  color: var(--main-color);
  padding: 0;
  border: none;
  cursor: pointer;
}
.teaser-single .image,
.teaser-single .teaser-popup-trigger {
  transition: transform 0.3s ease;
}
.teaser-single:not(.pop-up_open):hover .image,
.teaser-single:not(.pop-up_open):hover .teaser-popup-trigger {
  transform: scale(1.05);
}
.teaser-single:not(.pop-up_open) button:focus-visible {
  outline: 2px solid var(--main-color);
}

body:not(.editor-styles-wrapper) .teaser-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
}
body:not(.editor-styles-wrapper) .teaser-popup-modal .popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}
body:not(.editor-styles-wrapper) .teaser-popup-modal .popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 10;
}
body:not(.editor-styles-wrapper) .teaser-popup-modal .popup-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
body:not(.editor-styles-wrapper) .teaser-popup-modal .popup-close svg {
  width: clamp(1.6666666667rem, 1.4414414414rem + 1.2668918919vw, 2.5rem);
  height: clamp(1.6666666667rem, 1.4414414414rem + 1.2668918919vw, 2.5rem);
  color: #B5B5B5;
}
body:not(.editor-styles-wrapper) .teaser-popup-modal .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 950px;
  width: var(--baseWidth);
  overflow: hidden;
  width: 100%;
}
body:not(.editor-styles-wrapper) .teaser-popup-modal .popup-content .popup-inner-content {
  padding: 20px;
  max-height: calc(90vh - 4rem);
  overflow-y: auto;
  text-align: start;
  font-size: var(--miniFontSize);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}