.c-news-teaser {
  display: flex;
  flex-flow: nowrap column;
  gap: var(--si-space-40);
  max-inline-size: var(--si-width-3xsmall);
}
@media (min-width: 768px) {
  .c-news-teaser {
    flex-flow: nowrap row;
    max-inline-size: initial;
  }
}
.c-news-teaser:hover .c-news-teaser__image img,
.c-news-teaser:hover .c-news-teaser__image .no-image__inner, .c-news-teaser:focus-within .c-news-teaser__image img,
.c-news-teaser:focus-within .c-news-teaser__image .no-image__inner {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 350ms ease-in-out;
}

.c-news-teaser__image {
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-news-teaser__image {
    inline-size: 275px;
  }
}
@media (min-width: 1024px) {
  .c-news-teaser__image {
    inline-size: 300px;
  }
}
.c-news-teaser__image img,
.c-news-teaser__image .no-image__inner {
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.37, 0, 0.63, 1);
}
.c-news-teaser__image.no-image {
  aspect-ratio: 4/3;
  background-color: var(--si-color-light-gray);
}
.c-news-teaser__image .no-image__inner {
  align-items: center;
  block-size: 100%;
  display: flex;
  justify-content: center;
  inline-size: 100%;
}
.c-news-teaser__image .icon {
  block-size: 90px;
  background-color: var(--si-color-medium-gray);
  inline-size: 90px;
  -webkit-mask: var(--si-i-placeholder-logo) no-repeat center;
          mask: var(--si-i-placeholder-logo) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: relative;
}

.c-news-teaser .text-content,
.c-news-teaser__text {
  margin-block-start: 4px;
}
@media (min-width: 768px) {
  .c-news-teaser .text-content,
  .c-news-teaser__text {
    margin-block-start: 12px;
  }
}

.c-news-teaser__tags {
  display: inline-flex;
  flex-flow: nowrap column;
  font-size: 1rem;
  gap: 4px;
  list-style: none;
  margin-block: 12px 0;
  margin-inline: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .c-news-teaser__tags {
    flex-flow: wrap row;
    gap: 2px 12px;
  }
}

.c-news-teaser__tag {
  align-items: center;
  display: flex;
  flex-flow: nowrap row;
  position: relative;
}
.c-news-teaser__tag:not(:last-child):after {
  background-color: var(--si-color-dark-gray);
  block-size: 4px;
  border-radius: 50%;
  content: "";
  display: none;
  inline-size: 4px;
  margin-inline-start: 10px;
}
@media (min-width: 768px) {
  .c-news-teaser__tag:not(:last-child):after {
    display: block;
  }
}

.c-news-teaser__tag a,
.c-news-teaser__tags a {
  color: var(--si-color-black);
  font-weight: var(--si-fw-book);
  transition: all 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  background-image: linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), currentColor calc(100% - 1px), currentColor 100%);
  background-position: 0 calc(100% - 2px);
  background-repeat: no-repeat;
  background-size: 0;
  display: inline;
  padding-bottom: 2px;
  position: relative;
  text-decoration: none;
  transition: background-size 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  background-size: 100%;
}
.c-news-teaser__tag a:hover, .c-news-teaser__tag a:focus,
.c-news-teaser__tags a:hover,
.c-news-teaser__tags a:focus {
  background-size: 100%;
  text-decoration: none;
}
.c-news-teaser__tag a:hover, .c-news-teaser__tag a:focus,
.c-news-teaser__tags a:hover,
.c-news-teaser__tags a:focus {
  background-size: 0;
}
.c-news-teaser__tag a:hover, .c-news-teaser__tag a:focus,
.c-news-teaser__tags a:hover,
.c-news-teaser__tags a:focus {
  color: var(--si-color-black);
}

#storybook-root .spacer {
  border: none;
}