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

  &__top {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;

    h1 {
      color: $c-white;
      text-align: center;
      font-size: 1.5rem;
      font-style: normal;
      font-weight: 900;
      text-wrap: balance;

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

  &__content {
    position: relative;
    padding-top: 20px;

    img {
      width: 100%;
      object-fit: contain;
    }
  }

  &__date {
    max-width: 100%;
    width: max-content;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    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;

    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;
  }
}