.home-page-shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  background: #f7f8fc;
}

.home-page {
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 1;
  padding: 24px 16px;
  box-sizing: border-box;
  background: #f7f8fc;
  color: #171a24;

  &__header {
    margin-bottom: 20px;
  }

  &__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #3d67ff;
    font-size: 12px;
    font-weight: 600;
  }

  &__title {
    display: block;
    margin-bottom: 10px;
    color: #171a24;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }

  &__description {
    display: block;
    color: #5d6475;
    font-size: 14px;
    line-height: 1.5;
  }

  &__section {
    padding: 14px;
    border: 1px solid #dfe3ef;
    border-radius: 8px;
    background: #ffffff;
  }

  &__section-title {
    display: block;
    margin-bottom: 10px;
    color: #171a24;
    font-size: 15px;
    font-weight: 600;
  }

  &__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  &__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f5;
    color: #3c4252;
    font-size: 13px;
    line-height: 1.5;

    &:last-child {
      border-bottom: 0;
    }
  }

  &__item-name {
    font-weight: 500;
  }

  &__item-meta,
  &__empty {
    color: #7a8192;
    font-size: 12px;
  }
}
