.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1  0 auto;

  &__top {
    display: flex;
    justify-content: end;
    flex-direction: column;
    gap: 10px;
    min-height: 35dvh;
  }

  &__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;

      @media (max-height: 720px) {
        height: 50dvh;
        object-position: top left;
        object-fit: cover;
      }
    }

    h1 {
      color: $c-white;
      text-align: center;
      text-wrap: balance;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1;
      padding: 10px;
      font-size: 24px;
      font-style: normal;
      font-weight: 900;
      line-height: 30px;

      @media (max-height: 720px) {
        font-size: 1.2rem;
      }
    }
  }

  &__date {
    max-width: 100%;
    width: max-content;
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 5px 20px;
    background: $c-white;
    color: $c-black;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 100px;
  }

  &__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    @media (max-height: 720px) {
      gap: 10px;
    }

    span {
      color: $c-white;
    }
  }

  &__link {
    color: $c-white;
    width: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #761B86 0%, #B22AC9 100%);
    text-align: center;
    text-decoration: none;
    padding: 20px 20px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

    @media (max-height: 720px) {
      padding: 10px 10px;
      font-size: 20px;
    }
  }

  &__back {
    color: $c-white;
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid $c-white;
    border-radius: 20px;
  }
}