.recent-blog-section .sec-header{
  margin-bottom: 32px;
}
.recent-blog-section .sec-header .title {
  color: #060534;
  margin-bottom: 32px;
}
.recent-blog-section .blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.recent-blog-section .blog-card .blog-card-img{
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 236px;
}
.recent-blog-section .blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-blog-section .content {
  margin-top: 32px;
}
.recent-blog-section .meta {
  color: #060534;
  font-size: 14px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform:capitalize;
  display: inline-flex;
  align-items: center;
}
.recent-blog-section .blog-title a{
  display: flex;
  gap: 16px;
  transition: all 0.3s ease-out;
  justify-content: space-between;
  text-decoration: none;
}
.recent-blog-section .blog-title svg{
  margin-right: 0px;
  transition: all 0.3s ease-out;
}
[dir=rtl] .recent-blog-section .blog-title svg {
  transform: scaleX(-1);
}
.recent-blog-section .blog-title:hover svg{
  margin-right: -5px;
  margin-left: 5px;
}
[dir=rtl] .recent-blog-section .blog-title:hover svg {
  margin-left: -5px;
  margin-right: 5px;
}
.recent-blog-section .blog-title h5{
  color:#060534;
  margin-bottom: 12px;
}
.recent-blog-section .blog-title h5 a{
  text-decoration: none;
  color:#060534;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
}
.recent-blog-section .desc, .recent-blog-section .desc p{
  color: #535366;
  font-size: 14px;
  line-height: 20px;
}
.recent-blog-section .desc p:last-child{
  margin-bottom: 0px;
}
.recent-blog-section .tags {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.recent-blog-section .tags span {
  font-size: 14px;
  line-height: 20px;
  background: #F5F6F8;
  padding: 2px 10px;
  border-radius: 16px;
  color: #000787;
}

.recent-blog-section .right-column{
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.recent-blog-section .blog-card.small-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.recent-blog-section .blog-card .small-card-img {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.recent-blog-section .right-column .content {
  margin-top: 0;
}
.recent-blog-section .right-column h6{
  color: #060534;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}
.recent-blog-section .right-column .blog-title h6 a {
  text-decoration: none;
  color: #060534;
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
}
.recent-blog-section .tags {
  margin-top: 24px;
}
.recent-blog-section .date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #060534;
  display: inline-flex;
}
.recent-blog-section .date-dot {
  margin: 5px 5px;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #060534;
  vertical-align: middle;
  display: inline-flex;
}

/* Responsive */
@media (max-width: 991px) {
  .recent-blog-section .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .recent-blog-section .sec-header {
    margin-bottom: 28px;
  }
  .recent-blog-section .sec-header .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0px;
  }
  .recent-blog-section h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .recent-blog-section .blog-title h5 a{
    font-size: 20px;
    line-height: 28px;
  }
  .recent-blog-section .desc, .recent-blog-section .desc p {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-blog-section .tags {
    margin-top: 12px;
  }
  .recent-blog-section .blog-card.small-card {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .recent-blog-section .blog-grid {
    gap: 28px;
  }
  .recent-blog-section .right-column {
    gap: 28px;
  } 
  .recent-blog-section .content {
    margin-top: 16px;
  }
  .recent-blog-section .right-column .content {
    margin-top: 16px;
  }
  .recent-blog-section .blog-card .blog-card-img {
    height: 56vw;
  }
  .recent-blog-section .blog-card .small-card-img {
    height: 56vw;
  }
  .recent-blog-section .right-column h6 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .recent-blog-section .right-column .blog-title h6 a{
    font-size: 20px;
    line-height: 28px;
  }
  .recent-blog-section .right-column .desc, .recent-blog-section .right-column .desc p {
    font-size: 16px;
    line-height: 20px;
  }
}
