.blog-lsf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'DM Sans', sans-serif;
    min-height: 500px;
}

.blog-lsf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 30px auto;
  border: 1px solid #0C9339;
  border-radius: 99px;
  padding: 10px 50px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    font-size: 20px;
    color: #01431D;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #0C9339;
    color: #B8F6CF;
}

.blog-lsf-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-card {
    flex: 0 1 calc(33.333% - 20px); /* Cambiado a 0 1 en lugar de 1 1 */
    min-width: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(184,246,207,0.6);
    padding: 20px;
    border: 1px solid transparent;
}
.blog-card:hover{
  border: 1px solid #00EE9F;
}
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.card-category {
    padding: 8px 12px;
    background-color: #B8F6CF;
    font-size: 16px;
    color: #01431D;
    border-radius: 5px;
    font-weight: bold;
    width: fit-content;
    margin: 10px 0;
}

.card-title {
    padding: 12px 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: #01431D;
    
}

.card-title a {
    text-decoration: none;
    color: #01431D;
}

.card-footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.card-excerpt {
    
    margin: 10px 0 0 0;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    min-height: 100px;
}
.card-footer .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-info {
  font-size: 11px;
  text-transform: uppercase;
  color: #01431D;
}
.author-info .divisor{
    margin: 0 5px;
    font-size: 20px;
}
.author-name {
    font-weight: bold;
}


 

.load-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 50px;
    background-color: #0C9339;
    color: #B8F6CF;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    font-size: 20px;
}

.load-more-btn:hover {
    background-color: #01431D;
}
.filter-item {
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    font-size: 20px;
    color: #01431D;
}

.filter-item:hover,
.filter-item.active {
    background-color: #01431D;
    color: white;
}
@media(max-width:768px){
  .blog-lsf-filters{
    padding: 10px;
  }
  .filter-btn{
    padding: 5px 20px;
    font-size: 1rem;
  }
  .blog-card{
    min-width: 100%;
  }
  .author-info{
    flex-wrap: wrap;
  text-align: left;
  justify-content: flex-start;
  }
}