.cleanland-blog {
    padding: 80px 50px 80px;
}
.cleanland-blog-container {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
.blog-thumb {
    position: relative;
}


.blog-hero {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 100px;
}
.hero-label {
  display: inline-block;
  margin-bottom: 24px;
  color: #8f8f8f;
  font-size: 12px;
  letter-spacing: 2px;
}
.hero-left h1 {
  font-size: 63px;
  line-height: normal;
  letter-spacing: 1px;
  font-weight: 300;
}
.hero-right {
  padding-bottom: 20px;
}
.hero-right p {
  font-size: 17px;
  color: #9f9f9f;
  max-width: 420px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
.blog-card {
  grid-column: span 4;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #f3f3f3;
  transition: .5s ease;
  display: flex;
  flex-direction: column;
}
.blog-card.large {
  grid-column: span 8;
}
.blog-card.wide {
  grid-column: span 7;
}
.blog-card.dark {
  background: #050505;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-footer img {
  max-width: 20px;
}
.blog-thumb img {
  height: 390px;
  object-fit: cover;
  transition: 1s ease;
  width: 100%;
  display: block;
}
/*

.blog-card.large .blog-thumb img{
  height:480px;
}
*/
.blog-card:hover img {
  transform: scale(1.06);
}
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-category {
    padding: 6px 15px;
    border-radius: 100px;
    border: 1px solid rgb(8 8 8 / 8%);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: normal;
    position: absolute;
    right: 25px;
    bottom: 25px;
    background: rgb(234 96 4 / 44%);
    backdrop-filter: blur(10px);
}
.blog-content h3 {
    font-size: 22px;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 0px;
    color: var(--main);
    font-weight: 500;
}
.blog-content p {
    line-height: normal;
    font-size: 18px;
    margin-bottom: 0;
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: normal;
    margin-top: 25px;
    font-weight: 400;
}
@media(max-width:1200px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card, .blog-card.large, .blog-card.wide {
    grid-column: auto;
  }
}
@media(max-width:767px) {
  
  .blog-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .hero-left h1 {
    font-size: 64px;
    letter-spacing: -4px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-content h3 {
    font-size: 20px;
  }
}
/* LOADER */
.blog-loader {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 0px;
}
.loader-ring {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(17, 17, 17, .08);
  border-top: 3px solid #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.events-sec .blog-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
span.blog-date {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}