.event-details {
  position: relative;
  width: 100%;
  margin: 75px 0;
  padding: 0 $gutter;

  @include sm {
    margin: 50px 0;
    padding: 0 $gutter-mobile;
  }

  &__wrapper {
    width: 100%;
    max-width: $projects-detail-width;
    margin: 0 auto;
  }

  &__container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    @include sm {
      flex-direction: column-reverse;
    }
  }

  &__description {
    width: 100%;
    max-width: 676px;
    font-size: 1.8rem;
    color: $primary-color;
    margin-right: 48px;

    @include sm {
      margin-right: 0;
      max-width: 100%;
    }

    > *:first-child {
      margin-top: 0;
    }

    > *:last-child {
      margin-bottom: 0;
    }
  }

  &__event-detail {
    width: 100%;
    max-width: 323px;

    @include sm {
      max-width: 100%;
      margin-bottom: 48px;
    }
  }

  &__event-info {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba($color: $gray-border, $alpha: 0.6);

    @include sm {
      padding-bottom: 16px;
    }
  }

  &__icon {
    display: block;
    margin-right: 16px;

    svg {
      width: 32px;
      height: 32px;
    }
  }

  &__time-icon {
    svg {
      path {
        fill: $primary-color;
      }

      circle {
        stroke: $primary-color;
      }
    }
  }

  &__info-container {
    display: flex;
    flex-direction: column;
  }

  &__label {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: 0.16px;
    font-weight: 600;
    color: $primary-color;
  }

  &__info {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    color: $primary-color;
  }

  &__cta {
    margin-top: 32px;

    @include sm {
      margin-top: 16px;
    }
  }
}
