body {
  font-family: Figtree;
  font-weight: 500;
  color: #111111;
  background-color: hsl(47, 88%, 63%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card {
  background-color: white;
  width: 360px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid #111111;
  padding: 24px;
  box-shadow: 8px 8px black;
  row-gap: 24px;
}

.blog-card img {
  border-radius: 10px;
}

.text {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.text * {
  max-width: fit-content;
}

.chip {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  background-color: hsl(47, 88%, 63%);
  padding: 6px 8px;
  border-radius: 4px;
}

.date {
  font-size: 14px;
}

.title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
  cursor: pointer;
}

.title:hover {
  color: hsl(47, 88%, 63%);
}

.description {
  font-size: 16px;
  line-height: 1.5;
  color: hsl(0, 0%, 42%);
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 32px;
}

.author-name {
  font-size: 14px;
  font-weight: 800;
}
