.blog-category-tag {
    display: inline-block;
    padding: 0.5em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    color: #000000;
    background-color: #ffd60b;
    margin-left: 5px;
    margin-right: 5px;

}
.category-ui{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
   
}

.blog-btn{
    height: 34px;
    padding-top: 5px;
    padding-bottom: 26px;
    margin-left: 0px;
}


.bloggrid{
    padding-top:100px;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    overflow: hidden;
    box-shadow: 0px 2px 20px #d7dfe2;
    background: white;
    border-radius: 0.5rem;
    position: relative;
    /* width: 330px; */
    margin: 1rem;
    transition: 250ms all ease-in-out;
    cursor: pointer;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 40px #d7dfe2;
  }
  
  .banner-img {
    position: absolute;
    object-fit: cover;
    height: 14rem;
    width: 100%;
  }
  
  .category-tag {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background: red;
    padding: 0.5rem 1.3rem 0.5rem 1rem;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    top: 1rem;
    border-radius: 0 2rem 2rem 0;
  }
  
  .popular {
    background: #ef257a;
  }
  
  .technology {
    background: #651fff;
  }
  
  .psychology {
    background: #e85808;
  }
  
  .card-body {
    
    text-align: center;
  }
  
  .blog-hashtag {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4d97b2;
  }
  
  .blog-title {
    line-height: 2.0 rem;
    margin: 1rem 0 0.5rem;
    font-size: 24px;
    
  }
  
  .blog-description {
    color: #616b74;
    font-size: 0.9rem;
  }
  
  .card-profile {
    display: flex;
    margin-top: 2rem;
    align-items: center;
  }
  
  .profile-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .card-profile-info {
    margin-left: 1rem;
  }
  
  .profile-name {
    font-size: 1rem;
  }
  
  .profile-followers {
    color: #616b74;
    font-size: 0.9rem;
  }