body {
  font-family: "Inter", sans-serif;
  background: white;
  padding: 1rem;
}
.card {
  border-radius: 1rem;
  background-color: #f3f4f6;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.card .stars i {
  color: #fbbf24;
  font-size: 1.25rem;
}
.card .profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.card .icon-purple {
  color: #a78bfa;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.card .text-xs {
  font-size: 0.75rem;
  color: #6b7280;
}
.card .check-icon {
  color: #3b82f6;
  margin-left: 0.25rem;
}
.card .google-logo {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.card ul {
  padding-left: 0;
  list-style: none;
}
.card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #111827;
}
.card ul li svg {
  flex-shrink: 0;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  color: black;
  width: 20px;
  height: 20px;
}
.card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #111827;
}
.card .name-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card .date-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
/* Masonry container */
.masonry {
  column-count: 4;
  column-gap: 1.5rem;
}
@media (max-width: 1400px) {
  .masonry {
    column-count: 3;
  }
}
@media (max-width: 1100px) {
  .masonry {
    column-count: 2;
  }
}
@media (max-width: 575.98px) {
  .masonry {
    column-count: 1;
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.user-avator {
  position: relative;
  width: 40px;
  height: 40px;
  box-shadow: rgba(17, 17, 17, 0.1) 0px 0px 2px inset;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.sm-google-icon {
  width: 24px;
  position: absolute;
  left: 45px;
  top: 48px;
}
