.search-title{
    margin: 30px 0;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;

}
.card{
    background: rgba(250, 250, 250, 1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover; /* prevents image stretching */
}

.entry-title{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.profession{
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
}

.visited {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(140, 140, 140, 1)
}
.visited.number {
    color: rgba(9, 0, 48, 1)
}

/* Added this since tailwind config is not working */
.footer-text{
    color: rgba(54, 53, 64, 1);
    font-size: 11px;
    font-weight: 500;
}
@media (min-width: 1024px) {
    .copy-right{
        position: absolute;
        left: 50%;
        transform: translate(-50%);
    }
}
/* .site-footer{
    background: #fff;
    padding: 2rem;
} */
