body {
  font-family: Roboto, sans-serif;
  margin: auto;
  max-width: 85%;
}

.dashboard-section {
  padding: 2rem 0;
}

.dashboard-date {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.dashboard-greeting {
  font-size: 3rem;
  font-weight: 900;
  margin: 0.5rem 0;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.subsection-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  padding-top: 1rem;
  text-transform: uppercase;
}

.app-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-grid__item {
  list-style: none;
}

.app-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  padding: 1rem;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.app-card:hover {
  background-color: #f0f0f0;
}

.app-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 2rem;
}

.app-card__info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.app-card__sublabel {
  color: #1e272e;
  font-size: 0.65rem;
  font-weight: 400;
  margin: 2px 0 0 0;
  text-transform: uppercase;
}

.bookmark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.bookmark-group {
  display: flex;
  flex-direction: column;
}

.bookmark-group__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bookmark-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bookmark-group li {
  margin-bottom: 0.25rem;
}

.bookmark-group a {
  text-decoration: none;
  color: #222;
  font-weight: 400;
}

.bookmark-group a:hover {
  text-decoration: underline;
}
