
.blog-card2 {
   
  box-sizing: border-box;
  border-radius:10px;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  margin-bottom:15px;
 
  
}

.blog-card2:hover {
  transform: scale(1.03);
}

 .blog-img-fluid {
  height: 15rem;
  width: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}

.blog-content {
    padding:10px;
  background-color: rgb(245, 250, 250);
  
}

.blog-content2 {
    padding:10px;
  background-color: white;
 
   text-align: center;
  
}

.author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  overflow: hidden;
}

.author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 5px;
  border: 1px solid rgb(164, 160, 160);
}

.author p {
font-style: italic;
}

.blog-label {
  display: inline-block;
  background-color: rgb(194, 131, 16);
  color: white;
  border-radius: 15px;
  padding: 0 1rem;
}

.expStyle {
    font-size: 18px !important;
}
 
.newcolor{
  background-color: blueviolet !important;
}