.b-webinar-next {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background-color: #942A72;
  padding: 20px 30px 26px 20px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.b-webinar-next__top {
  display: flex;
  position: relative;
}
@media screen and (min-width: 686px) {
  .b-webinar-next__top {
    gap: 22px;
  }
}
.b-webinar-next__left {
  width: 100%;
}
.b-webinar-next__tags {
  display: flex;
  gap: 17px;
}
.b-webinar-next__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  font-size: 14px;
  background-color: #EDB3DA;
  margin-bottom: 21px;
  border-radius: 6px;
  color: #000;
}
.b-webinar-next__info {
  color: #fff;
}
.b-webinar-next__info a {
  text-decoration: underline;
  color: inherit;
}
.b-webinar-next__info-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  width: 70%;
}
@media screen and (min-width: 686px) {
  .b-webinar-next__info-title {
    width: 100%;
  }
}
.b-webinar-next__info-date {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
}
.b-webinar-next__info-separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 30px 0 26px;
}
.b-webinar-next__info-description {
  line-height: 1.3;
}
.b-webinar-next__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}
.b-webinar-next__image-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 480px) {
  .b-webinar-next__image-wrap {
    width: 100px;
    height: 100px;
    position: relative;
  }
}
@media screen and (min-width: 686px) {
  .b-webinar-next__image-wrap {
    width: 140px;
    height: 140px;
  }
}
.b-webinar-next__buttons {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
@media screen and (min-width: 686px) {
  .b-webinar-next__buttons {
    flex-direction: row;
  }
}
.b-webinar-next__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #FFFFFF33;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.4s, color 0.4s;
}
.b-webinar-next__button:hover {
  text-decoration: none;
  color: #000;
  background-color: #fff;
}
.b-webinar-next__button--accent {
  background-color: #fff;
  color: #000;
}
.b-webinar-next__button--accent:hover {
  color: #fff;
  background-color: transparent;
}
