#widgets-wrap {
  display: grid;
  grid-template-columns: minmax(0, 28rem) 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: start;
}

#widgets-wrap > .information-widget-greeting {
  grid-column: 1;
  grid-row: 2;
}

#widgets-wrap > #information-widgets-right {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 28rem) 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: start;
}

#information-widgets-right .information-widget-search {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 28rem;
}

#information-widgets-right .information-widget-search .h-8 {
  margin-top: 0;
  margin-bottom: 0;
}

#information-widgets-right > :not(.information-widget-search) {
  grid-column: 2;
  justify-self: end;
}

#bottom-resources {
  width: min(100%, 44rem);
  align-self: center;
  margin: 1.5rem auto 0 auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

#bottom-resources > .flex.flex-row.self-center.flex-wrap.justify-between {
  justify-content: center;
  gap: 1rem;
}

#bottom-resources .text-xs {
  text-align: center;
  margin-left: 0;
}
