.d-layout-content {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  box-sizing: border-box;
  width: 100%;

  &.d-full-height {
    height: 100%;
  }

  @include mobile {
    padding: 24px 16px;
  }
}

.d-page-header {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
  margin-bottom: 16px;

  > * {
    flex: 1;
  }

  @include mobile {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.d-page-header-left-section {
  display: flex;
  flex-direction: column;
}

.d-page-title {
  color: var(--d-color-neutral-100);
  margin-bottom: 4px;
  display: flex;
  align-items: center;

  h4 {
    margin-bottom: 0;
  }

  &.d-page-title-icon-left {
    [icon-left] {
      margin-right: 10px;
      max-width: 32px;
      max-height: 32px;
      object-fit: contain;
    }
  }
}

.d-page-description {
  font-family: var(--d-font-stacks);
}
