.event-full {
  position: relative;
  z-index: 1;
  display: flow-root;
  padding-top: 220px;
}

.event-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 165px;
  z-index: -1;
}

.event-full__breadcrumb {
  position: relative;
  z-index: 2;
  background: var(--color-primary--1);
  color: white;
  padding: 53px 16px 20px 16px;
  margin-top: 70px;
}

.event-full__wrapper {
  padding-top: 60px;
}

.event-full__content {
  margin-top: 1rem;
}

.event-full__date {
  margin-bottom: 0.5rem;
}

.event-full__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.event-full__back-link::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-image: url('../../images/article/arrow_left.svg');
  mask-image: url('../../images/article/arrow_left.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (min-width: 1000px) {
  .event-full::before {
    height: 250px;
    background: url('../../images/page-builder/blue-shape.svg') no-repeat top center;
    background-size: cover;
  }

  .event-full__breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: -60px;
    max-width: 868px;
    margin-left: auto;
    margin-right: auto;
  }

  .event-full__content {
    margin-top: 5rem;
  }
}
