.image {
  position: relative;
  overflow: hidden;

  &__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &.loaded &__preview {
    display: none;
  }

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    background: transparent;
    opacity: 0;
  }

  &.loaded img {
    opacity: 1;
  }
}

.about {
  padding: 20px;

  @media screen and (min-width: $no-gap-breakpoint) {
    border-radius: 4px;
  }

  &__header {
    margin-bottom: 30px;

    &__hero {
      width: 100%;
      height: auto;
      aspect-ratio: 1.9;
      background: lighten($ui-base-color, 4%);
      border-radius: 8px;
      margin-bottom: 30px;
    }

    h1,
    p {
      text-align: center;
    }

    h1 {
      font-size: 24px;
      line-height: 1.5;
      font-weight: 700;
      margin-bottom: 10px;
    }

    p {
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: $darker-text-color;
    }
  }

  &__meta {
    background: lighten($ui-base-color, 4%);
    border-radius: 4px;
    display: flex;
    margin-bottom: 30px;
    font-size: 15px;

    &__column {
      box-sizing: border-box;
      width: 50%;
      padding: 20px;
    }

    &__divider {
      width: 0;
      border: 0;
      border-style: solid;
      border-color: lighten($ui-base-color, 8%);
      border-left-width: 1px;
      min-height: calc(100% - 60px);
      flex: 0 0 auto;
    }

    h4 {
      font-size: 15px;
      text-transform: uppercase;
      color: $darker-text-color;
      font-weight: 500;
      margin-bottom: 20px;
    }

    @media screen and (max-width: 600px) {
      display: block;

      h4 {
        text-align: center;
      }

      &__column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      &__divider {
        min-height: 0;
        width: 100%;
        border-left-width: 0;
        border-top-width: 1px;
      }
    }

    .layout-multiple-columns & {
      display: block;

      h4 {
        text-align: center;
      }

      &__column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      &__divider {
        min-height: 0;
        width: 100%;
        border-left-width: 0;
        border-top-width: 1px;
      }
    }
  }

  &__mail {
    color: $primary-text-color;
    text-decoration: none;
    font-weight: 500;

    &:hover,
    &:focus,
    &:active {
      text-decoration: underline;
    }
  }

  .getting-started__footer {
    padding: 0;
    margin-top: 60px;
    text-align: center;
    font-size: 15px;
    line-height: 22px;

    @media screen and (min-width: $no-gap-breakpoint) {
      display: none;
    }
  }

  .account {
    padding: 0;
    border: 0;
  }

  .account__avatar-wrapper {
    margin-left: 0;
  }

  .account__relationship {
    display: none;
  }

  &__section {
    margin-bottom: 10px;

    &__title {
      font-size: 17px;
      font-weight: 600;
      line-height: 22px;
      padding: 20px;
      border-radius: 4px;
      background: lighten($ui-base-color, 4%);
      color: $highlight-text-color;
      cursor: pointer;
    }

    &.active &__title {
      border-radius: 4px 4px 0 0;
    }

    &__body {
      border: 1px solid lighten($ui-base-color, 4%);
      border-top: 0;
      padding: 20px;
      font-size: 15px;
      line-height: 22px;
    }
  }

  &__domain-blocks {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
    break-inside: auto;

    th {
      text-align: left;
      font-weight: 500;
      color: $darker-text-color;
    }

    thead tr,
    tbody tr {
      border-bottom: 1px solid lighten($ui-base-color, 8%);
    }

    tbody tr:last-child {
      border-bottom: 0;
    }

    th,
    td {
      padding: 8px;
    }
  }
}