* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Figtree", sans-serif;
  display: flex;
  min-height: 100vh;
  padding: 1.5rem;
  justify-content: center;
  align-items: center;
  background: #f4d04e;
}
@media (max-width: 375px) {
  body {
    padding: 1.5rem;
  }
}

.card-container {
  display: flex;
  gap: 3rem;
}

.blog-card {
  display: flex;
  width: 100%;
  max-width: 24rem;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  flex-shrink: 0;
  border-radius: 1.25rem;
  border: 1px solid #111;
  background: #fff;
  box-shadow: 8px 8px 0 0 #000;
}
@media (max-width: 375px) {
  .blog-card {
    padding: 0.75rem;
    gap: 0.75rem;
  }
}

.image-container {
  display: flex;
  align-items: center;
  align-self: stretch;
  border-radius: 0.625rem;
  background: #f4d04e;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
}
.content-container .category-badge {
  display: flex;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
  background: #f4d04e;
  color: #111;
  font-family: "Figtree", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  transition: color 0.3s ease;
}
.content-container .category-badge:hover {
  color: #fff;
  cursor: pointer;
}
.content-container h1 {
  align-self: stretch;
  color: #111;
  font-family: "Figtree", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  transition: color 0.3s ease;
}
.content-container h1:hover {
  color: #f4d04e;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .content-container h1 {
    transition: none;
  }
}
.content-container p {
  align-self: stretch;
  color: #6b6b6b;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.publish-date {
  color: #111;
  font-family: "Figtree", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blog-author img {
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  cursor: pointer;
}
.blog-author .author-name {
  color: #111;
  text-decoration: none;
  font-family: "Figtree", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  transition: color 0.3s ease;
}
.blog-author .author-name:hover {
  color: #f4d04e;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */