body .kc-teaser,
html .kc-teaser {
  --kc-teaser-padding: 36px 28px;
  --kc-teaser-media-container-height: var(
  	--kc-teaser-media-container-width
  );
  --kc-teaser-title-font-family: var(--secondary-font);
  --kc-teaser-title-font-size: 18px;
  --kc-teaser-title-font-weight: 700;
  --kc-teaser-title-color: var(--primary-color);
  --kc-teaser-description-font-size: 15px;
  --kc-teaser-description-line-height: 1.65;
  --kc-teaser-description-color: var(--text-color);
  --kc-teaser-description-margin: 0;
  --kc-teaser-description-hyphens: none;
  position: relative;
  border-radius: var(--border-radius);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0);
  --kc-teaser-media-margin: 0;
  --kc-teaser-media-container-padding: 13px;
}
body .kc-teaser .kc-teaser-media-container,
html .kc-teaser .kc-teaser-media-container {
  border-radius: var(--border-radius);
  background: var(--gradient-1);
}
body .kc-teaser:hover, body .kc-teaser.mobile-viewport,
html .kc-teaser:hover,
html .kc-teaser.mobile-viewport {
  box-shadow: 0 8px 32px rgba(27, 54, 93, 0.08);
  border: 1px solid var(--secondary-color);
}
body .kc-teaser.vertical,
html .kc-teaser.vertical {
  border: 1px solid #e2e8f0;
  --kc-teaser-title-margin: 0 0 10px;
  --kc-teaser-media-container-width: 52px;
  --kc-teaser-media-container-margin: 0 0 20px;
  --kc-teaser-media-container-padding: 5px;
}
body .kc-teaser.vertical:before,
html .kc-teaser.vertical:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}
body .kc-teaser.vertical:hover:before, body .kc-teaser.vertical.mobile-viewport:before,
html .kc-teaser.vertical:hover:before,
html .kc-teaser.vertical.mobile-viewport:before {
  transform: scaleX(1);
}
body .kc-teaser.vertical-2,
html .kc-teaser.vertical-2 {
  border: 1px solid rgba(255, 255, 255, 0.08);
  --kc-teaser-background-color: rgba(255, 255, 255, 0.06);
  --kc-teaser-title-font-size: 14px;
  --kc-teaser-title-line-height: 1.7;
  --kc-teaser-title-font-weight: 700;
  --kc-teaser-title-margin-bottom: 4px;
  --kc-teaser-title-color: var(--white);
  --kc-teaser-description-font-size: 12px;
  --kc-teaser-description-color: rgba(255, 255, 255, 0.5);
  --kc-teaser-description-line-height: 1.5;
}
body .kc-teaser.vertical-2 .kc-teaser-media-container,
html .kc-teaser.vertical-2 .kc-teaser-media-container {
  background: transparent;
  border-radius: 0;
  --kc-teaser-media-container-width: 30px;
  --kc-teaser-media-container-padding: 0;
}
body .kc-teaser.vertical-2:hover, body .kc-teaser.vertical-2.mobile-viewport,
html .kc-teaser.vertical-2:hover,
html .kc-teaser.vertical-2.mobile-viewport {
  --kc-teaser-background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(237, 137, 54, 0.3);
}
body .kc-teaser.horizontal,
html .kc-teaser.horizontal {
  --kc-teaser-title-margin: 0 0 0;
  --kc-teaser-media-container-width: 56px;
  --kc-teaser-media-container-margin: 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 8px 20px;
  grid-auto-flow: row;
  grid-template-areas: "media title" "media description" "media read-more";
}
body .kc-teaser.horizontal .kc-teaser-media-container,
html .kc-teaser.horizontal .kc-teaser-media-container {
  grid-area: media;
}
body .kc-teaser.horizontal .kc-teaser-title,
html .kc-teaser.horizontal .kc-teaser-title {
  grid-area: title;
}
body .kc-teaser.horizontal .kc-teaser-description,
html .kc-teaser.horizontal .kc-teaser-description {
  grid-area: description;
}
body .kc-teaser.horizontal .kc-teaser-more_content,
html .kc-teaser.horizontal .kc-teaser-more_content {
  grid-area: read-more;
  justify-self: start;
  letter-spacing: 0.05em;
  border-radius: 8px;
  background-color: rgba(237, 137, 54, 0.1);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
}