/* layout */


.sponsor-keynote-homepage-view {
  background: var(--topic-color);
  border-radius: 6px;
}


.sponsor-keynote-wrapper-class-space ul {
  margin: 0px;
  list-style: none;
}


.sponsor-keynote-space {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.sponsor-keynote-content-space {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: start;
  align-self: start;
  text-align: start;
}


.sponsor-keynote-content-space p:first-of-type {
  font-weight: 600;
}


.sponsor-keynote-content-space span {
  margin-left: 0.25rem;
}


/* img */


.sponsor-keynote-img-space img {
  width: 160px;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}


/* text */


.sponsor-keynote-content-space p {
  font-size: 1rem;
  margin: 0px;
}


/* view */


.sponsor-keynote-homepage-view p {
  color: var(--white-color);
}


.sponsor-keynote-homepage-view #sponsor-title {
  color: var(--white-color);
  margin-bottom: 1rem;
  text-align: start;
}


@media screen and (min-width: 576px) {
  .sponsor-keynote-space {
    flex-direction: row;
  }
}




