.display-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 389px);
  max-width: 389px;
  border-radius: 3px;
  background: var(--brand-white);
  box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.10);
  transition: all ease 300ms;
  overflow: hidden;
  height: 100%;
  container: teaser / inline-size ;
  /* container-type: inline-size;
  container-name: teaser; */
}
.display-teaser__header{
  z-index: 5;
}
.display-teaser__header picture {
  display: block;
  transition: all ease 150ms;
}
.display-teaser:hover .display-teaser__header picture {
  transform: translateY(-2rem);
}
.display-teaser__header img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.display-teaser__content {
  z-index: 10;
  padding: 1rem 1rem .75rem;
  color: var(--color-primary--7);
  background: var(--brand-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.display-teaser__title {
  display: flex;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  line-height: 120%;
}
.display-teaser__information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5rem 0;
  height: 100%;
  max-height: 500px;
}
.display-teaser__speaker {
  margin: 0;
  padding: 0;
  list-style: none;
}
.display-teaser__speaker li {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 115%;
  color: var(--color-primary--7);
}
.display-teaser__speaker--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.display-teaser__more {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 10px;
}
.display-teaser__duration {
  position: relative;
  font-size: .75rem;
  width: max-content;
  display: flex;
  gap: 4px;
}
.display-teaser__duration p {
  margin: 0;
}
.display-teaser__duration::before {
  background: url('../../images/icon_duration-primary.svg');
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  width: 18px;
  height: 16px;
  position: relative;
}
.display-teaser__section-number {
  border-left: 1px solid var(--color-primary--7);
  padding-left: .5rem;
}
.display-teaser__action-paper {
  display: flex;
  gap: 4px;
  font-size: 12px;
  font-weight: bold;
  align-items: center;
}
.display-teaser__action-paper::before {
  background: url('../../images/paper-format-2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  width: 14px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.display-teaser__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.display-teaser__duration .field__item {
  padding-top: 3px;
}
.display-teaser__type{
  display: flex;
  gap: 0.5rem;
  align-items: start;
  flex-direction: column;
}
.display-teaser__type--cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-primary--7);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--color-primary--7);
  transition: background-color 0.15s ease;
  background-color: #fff;
  line-height: 1;
  height: fit-content;
  flex-shrink: 0;
}
.display-teaser__description {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-primary--7);
  line-height: 1rem;
}
.display-teaser picture {
  height: 100%;
}
.display-teaser img {
  min-height: 175px;
  object-fit: cover;
}
@media all and (min-width: 700px) {
  .display-teaser__left {
    width: 75%;
  }
  .display-teaser__right {
    flex-direction: column;
    gap: .5rem;
    justify-content: center;
    margin-top: 0;
    border-left: solid 1.5px var(--brand-white);
    padding-left: 2rem;
  }
  .display-teaser__more {
    display: flex;
    flex-direction: row;
    padding-top: unset;
  }
  .display-teaser__action-paper {
    display: flex;
    gap: 4px;
  }
}
@media all and (min-width: 900px) {
  .display-teaser {
    grid-template-rows: 175px 150px;
  }
  .display-teaser:hover {
    grid-template-rows: 100px 225px;
  }
  .display-teaser__information {
    transition: all ease 300ms;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  .display-teaser:hover .display-teaser__information {
    margin: 0.5rem 0;
    height: 100%;
    max-height: 500px;
    opacity: 1;
  }
}


@container teaser (min-width: 335px) {
  .display-teaser__type {
    flex-direction: row;
    align-items: center;
  }
  .display-teaser__action-paper {
    border-left: 1px solid var(--color-primary--7);
    padding-left: .5rem;
  }
}
