/* resources/css/component-agenda-list.css */
.agenda-list {
  --scroll-margin-top: calc(var(--height-primary-navigation) - 1px);
  align-items: center;
  border-style: solid;
  border-width: 1px 0;
  display: flex;
  flex-direction: column;
  scroll-margin-top: var(--scroll-margin-top);
  width: 100%;
}
.agenda-list__agenda {
  align-items: center;
  background-color: white;
  border-bottom: 1px solid black;
  display: flex;
  flex-direction: column;
  width: 100%;
  h2 {
    max-width: var(--max-width-page-content);
    padding: 0 var(--spacing-base-plus-half);
    width: 100%;
  }
}
.agenda-list__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.agenda-list__item__presented-by {
  grid-area: presented-by;
}
.agenda-list__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  scroll-margin-top: var(--scroll-margin-top);
  width: 100%;
  &:not(:last-of-type) {
    border-bottom: 1px solid black;
  }
}
.agenda-list__item__actions {
  grid-area: actions;
  @media (min-width: 900px) {
    align-items: flex-end;
    display: flex;
    padding-left: var(--spacing-2x);
  }
}
.agenda-list__item__content {
  background-color: white;
  display: grid;
  max-width: var(--max-width-page-content);
  width: 100%;
  @media (max-width: 900px) {
    column-gap: var(--spacing-2x);
    grid-template-areas: "talk" "speaker" "description" "actions" "photo";
    padding: var(--spacing-base-plus-half);
    row-gap: var(--spacing-base);
  }
  @media (min-width: 900px) {
    column-gap: var(--spacing-2x);
    grid-template-areas: "talk actions" "speaker actions" "description photo";
    grid-template-columns: 2fr 1fr;
    padding: var(--spacing-4x) 0 0 var(--spacing-4x);
    row-gap: var(--spacing-2x);
  }
}
.agenda-list__item__description {
  display: flex;
  flex-direction: column;
  grid-area: description;
  row-gap: var(--spacing-base);
  p {
    margin: 0;
  }
  @media (min-width: 900px) {
    margin: var(--spacing-2x) 0;
    text-align: right;
  }
}
.agenda-list__item__speaker {
  display: flex;
  grid-area: speaker;
  @media (max-width: 900px) {
    flex-direction: row;
  }
  @media (min-width: 900px) {
    flex-direction: column;
    row-gap: 6px;
    text-align: right;
  }
}
.agenda-list__item__speaker__name {
  text-decoration: none;
}
@media (max-width: 900px) {
  .agenda-list__item__speaker__company {
    display: flex;
    flex-direction: row;
    &::before {
      content: "@";
      margin: 0 1ch;
    }
  }
  .agenda-list__item__speaker__presented-by {
    display: none;
  }
  .agenda-list__item__speaker__name {
    font-weight: bold;
  }
}
@media (min-width: 900px) {
  .agenda-list__item__speaker__company {
    font-size: var(--font-size-small);
  }
  .agenda-list__item__speaker__card {
    align-items: flex-end;
    column-gap: 1ch;
    display: flex;
    justify-content: flex-end;
    line-height: 1;
  }
  .agenda-list__item__speaker__name {
    font-size: var(--font-size-l1);
    font-weight: bold;
    margin-bottom: -1px;
  }
  .agenda-list__item__photo {
    border-color: black;
    border-style: solid;
    border-width: 1px 0 0 1px;
    min-height: 300px;
    position: relative;
    &::after,
    &::before {
      background-repeat: no-repeat;
      content: "";
      pointer-events: none;
      position: absolute;
      user-select: none;
    }
    &::after {
      background-image: url("/assets/layout-arrow-up_UZ4OREQJ.svg");
      background-position: center bottom;
      height: 240px;
      left: 0;
      top: 0;
      transform: translate3d(-5px, -100%, 0);
      width: 10px;
    }
    &::before {
      background-image: url("/assets/layout-arrow-left_Z7LCDVYC.svg");
      background-position: 100% center;
      height: 10px;
      left: 0;
      top: 0;
      transform: translate3d(-100%, -5px, 0);
      width: 300px;
    }
  }
  .agenda-list__item__speaker__presented-by {
    font-size: var(--font-size-small);
  }
}
.agenda-list__item__photo {
  grid-area: photo;
}
.agenda-list__item__photo__image {
  height: var(--image-height);
  left: 0;
  object-fit: cover;
  top: 0;
  width: var(--image-width);
  @media (max-width: 900px) {
    --image-height: calc(1.6 * var(--image-width));
    --image-width: 200px;
  }
  @media (min-width: 900px) {
    --image-height: 100%;
    --image-width: 100%;
    position: absolute;
  }
}
@media (max-width: 900px) {
  .agenda-list__item__photo__image.agenda-list__item__photo__image--nobg {
    display: none;
  }
}
@media (min-width: 900px) {
  .agenda-list__item__photo__image.agenda-list__item__photo__image--bg {
    mask-image:
      linear-gradient(
        -80deg,
        transparent,
        black 40%);
  }
}
.agenda-list__item__talk {
  font-size: var(--font-size-l2);
  font-weight: 400;
  grid-area: talk;
  line-height: 1.3;
  text-decoration: none;
  @media (min-width: 900px) {
    text-align: right;
  }
}
.agenda-list__more-to-come {
  align-items: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  p {
    max-width: var(--max-width-page-content);
    padding: 0 var(--spacing-base-plus-half);
    width: 100%;
  }
}
/*# sourceMappingURL=/assets/component-agenda-list_DLQ5WHWK.css.map */
