.single-event {
  background: #f4f4f4;
  color: #393939;
}

.single-event-hero {
  position: relative;
  min-height: 430px;
  padding: 36px 0 46px;
  background: #fff;
  color: #3f3f3f;
}

.single-event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/video-archive-hero.png");
  background-repeat: no-repeat;
  background-position: 108% 52%;
  background-size: 65%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.single-event-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: center;
  gap: 30px;
}

.single-event-hero__content {
  position: relative;
  min-height: 310px;
}

.single-event-hero__date {
  min-height: 92px;
  padding: 14px 10px;
  border-radius: 16px;
  background: #fff000;
  color: #3f3f3f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.single-event-hero__date span {
  font-size: 26px;
  font-weight: 800;
}

.single-event-hero__date small {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.single-event-hero__date strong {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
}

.single-event-hero__meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 26px;
}

.single-event-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 20px;
  background: #b21fad;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.single-event-hero__label img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.single-event-hero__label span {
  display: inline-block;
}
.single-event-hero__place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b21fad;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.single-event-hero__place img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.single-event-hero__place span {
  display: inline-block;
}

.single-event-hero__title {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #b21fad;
}

.single-event-hero__quote {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.35;
  font-style: italic;
  letter-spacing: 0.03em;
}

.single-event-hero_btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .single-event-hero_btns {
    flex-direction: column;
  }
}

.event-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 32px 13px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #b721c6 0%, #8d159f 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.event-video-btn__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.75);
}

.event-video-btn__icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.event-video-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #c928d8 0%, #9717aa 100%);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.4);
}

.event-video-btn:active {
  transform: translateY(0);
}

.single-event-share-wrap {
  position: relative;
  display: inline-block;
}

.single-event-share {
  min-width: 250px;
  min-height: 58px;
  padding: 14px 32px;
  border: 0;
  border-radius: 18px;
  background: #fff000;
  color: #3f3f3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(54, 53, 53, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.single-event-share svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.single-event-share:hover {
  transform: translateY(-4px);
  background: #fff45c;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.single-event-share-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: 250px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  z-index: 20;
}

.single-event-share-wrap.is-open .single-event-share-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.single-event-share-menu a,
.single-event-share-menu button {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #333;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.single-event-share-menu a:hover,
.single-event-share-menu button:hover {
  background: #f4e8f7;
  color: #b21fad;
}

@media (max-width: 480px) {
  .single-event-share {
    width: 100%;
    min-width: 0;
  }

  .single-event-share-menu {
    width: 100%;
  }
}
.single-event-share.copied {
  color: #20296f;
}

.single-event-hero__media {
  position: relative;
  width: 100%;
}

.single-event-hero__media img {
  position: relative;
  z-index: 2;
  border-radius: 50px;
  object-fit: cover;
  display: block;
}

.single-event-body {
  padding: 42px 0 60px;
  background: #fff;
}

.single-event-body__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 78px;
  align-items: start;
}

.single-event-content h2,
.single-event-details h2,
.single-event-other h2 {
  margin: 0 0 22px;
  color: #3f3f3f;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.single-event-content__text {
  font-size: 20px;
  line-height: 1.35;
}

.single-event-content__text p {
  margin: 0 0 20px;
}

.single-event-content__text strong,
.single-event-content__text b {
  font-weight: 700;
}

.single-event-content__text h2,
.single-event-content__text h3 {
  margin: 0 0 25px;
  color: #3f3f3f;
  font-weight: 700;
}

.single-event-content__image {
  margin-top: 32px;
  overflow: hidden;
  border-radius: 0 18px 18px 18px;
}

.single-event-content__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.single-event-sidebar {
  padding-top: 4px;
}

.single-event-details {
  margin-bottom: 54px;
}

.single-event-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  margin-left: 10px;
}

.single-event-detail__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-event-detail__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.single-event-detail h3 {
  margin: 0 0 5px;
  color: #b21fad;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.single-event-detail p {
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.single-event-other__item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  color: #3f3f3f;
  text-decoration: none;
  margin-left: 10px;
}

.single-event-other__item img {
  width: 90px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.single-event-other__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  transition: color 0.25s ease;
}

.single-event-other__item small {
  display: block;
  color: #b21fad;
  font-size: 15px;
  font-weight: 700;
}

.single-event-other__item:hover strong {
  color: #b21fad;
}

.single-event-other__btn {
  width: 185px;
  min-height: 46px;
  margin: 50px auto 0;
  padding: 12px 22px;
  border-radius: 40px;
  background: #fff000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.single-event-other__btn:hover {
  transform: translateY(-4px);
  background: #fff45c;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.single-event-other__btn:active {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1024px) {
  .single-event-hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .single-event-hero__media {
    max-width: 620px;
    margin: 0 auto;
  }

  .single-event-body__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .single-event-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .single-event-details {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .single-event-hero::before {
    content: none;
  }

  .single-event-hero__label {
    order: 2;
  }

  .single-event-hero__content {
    min-height: auto;
    padding-left: 0;
    padding-top: 20px;
  }

  .single-event-hero__meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .single-event-hero__title {
    letter-spacing: 0.04em;
  }

  .single-event-hero__quote {
    font-size: 17px;
  }

  .single-event-share {
    width: 100%;
    min-width: 0;
  }

  .single-event-hero__media {
    height: 250px;
  }

  .single-event-sidebar {
    display: block;
  }

  .single-event-details {
    margin-bottom: 44px;
  }

  .single-event-content h2,
  .single-event-details h2,
  .single-event-other h2 {
    font-size: 26px;
  }

  .single-event-content__text {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .single-event-hero__media {
    height: 210px;
  }

  .single-event-hero__media::after {
    width: 80px;
    height: 80px;
    left: -18px;
  }

  .single-event-other__item {
    grid-template-columns: 78px 1fr;
  }

  .single-event-other__item img {
    width: 78px;
    height: 50px;
  }
}
