/* .blog-section {
    padding: 0px 0 100px 0;
} */

.blog-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card__img img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.blog-card__content {
    padding: 20px;
}
.blog-section .blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; /* same as g-5 (Bootstrap = 3rem, adjust as needed) */
  }
  
  .blog-section .col-md-6,
  .blog-section .col-lg-4 {
    width: 100%;
    flex: unset;
    max-width: 100%;
  }
  

.blog-card__content h5 {
    font-family: "Recoleta_SemiBold";
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white;
    text-align: left;
}

.blog-card__text {
    font-family: "Cerapro_Medium";
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;  
    color: white;  
}

.blog-section__button {
    text-align: center;
    margin-top: 20px;
}

.header__hire-btn {
    padding: 22px 38px !important;
}

.load__more--btn {
    text-align: center !important;
    margin: 0 auto;
}

.load__more--btn h4 {
    margin-bottom: 0 !important;
}