@use "../utilities";
.eventMast {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 550px;
  background: rgb(13, 30, 47);
  background: linear-gradient(
    0deg,
    rgba(13, 30, 47, 0.75) -33%,
    rgba(13, 30, 47, 0) 167%
  );
  .img-absolute {
    z-index: -1;
    @extend %img-absolute;
  }
  &__title {
    @extend %VFSans-font;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.23;
    color: var(--a-blanco);
  }
  &__date {
    @extend %VFSans-font;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 1.6px;
    color: var(--f-arena);
  }
}
.eventBody {
  position: relative;
  &__socialList {
    position: absolute;
    right: 4%;
    top: 5%;
  }
  &__description {
    font-size: 18px;
    font-weight: 300;
    color: var(--a-negro-unops);
    strong {
      font-weight: 600;
    }
  }
  &__links {
    &--title {
      @extend %VFSans-font;
      font-size: 20px;
      font-weight: 600;
      color: var(--a-negro-unops);
    }

    &--link {
      @extend %VFSans-font;
      font-size: 20px;
      font-weight: 600;
      color: var(--a-negro-unops);
      transition: all 0.2s ease-in-out;
      img[data-black] {
        display: inline-block;
      }
      img[data-blue] {
        display: none;
      }

      &:hover {
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        padding-right: 1.3rem;
        padding-left: 1.3rem;
        border-radius: 2px;
        box-shadow: 0 0 6px 0 rgba(0, 73, 118, 0.2);
        border: solid 0.5px var(--a-azul-unops);
        background-color: var(--bg-color-unops);
        color: var(--a-azul-unops);
        img[data-blue] {
          display: inline-block;
        }
        img[data-black] {
          display: none;
        }
      }
    }
  }
  &__categories {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 300;
    color: var(--a-negro-unops);
    &--link {
      @extend %VFSans-font;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--a-azul-unops);
      border-radius: 2px;
      border: solid 0.5px var(--a-azul-unops);
      background-color: var(--bg-color-unops);
    }
  }
}
.eventGallery {
  border-bottom: solid 1px var(--f-aire);
  &__title {
    @extend %VFSans-font;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.37;
    color: var(--a-negro-unops);
  }
}
