.post-card .card-title a {
  color: #000;
  transition: all 0.25s ease-in-out;
}

.post-card .card-title a:hover {
  color: var(--raoa-accent-color);
}

.blog-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



.blog-section .blog-item {
  background-color: #06284F;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5019607843);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-section .blog-img {
  position: relative;
}

.blog-section .blog-img img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
}

.blog-section .blog-img p {
  background: var(--raoa-gradient-secondary);
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 9px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1.12px;
  color: white;
}

.blog-section .blog-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}


.blog-section .blog-info a {
  display: flex;
  align-items: flex-start;
}

.blog-section.blog-style-1 .blog-item,
.blog-section.blog-style-2 .blog-item {
  background-color: transparent;
  box-shadow: unset;
  border-radius: 0;
}

.blog-section.blog-style-1 .blog-item .blog-img,
.blog-section.blog-style-2 .blog-item .blog-img {
  overflow: hidden;
}

.blog-section.blog-style-1 .blog-item .blog-img img,
.blog-section.blog-style-2 .blog-item .blog-img img {
  height: 350px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.blog-section.blog-style-1 .blog-item .blog-info a,
.blog-section.blog-style-2 .blog-item .blog-info a {
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.blog-section.blog-style-1 .blog-item .blog-info a:hover,
.blog-section.blog-style-2 .blog-item .blog-info a:hover {
  gap: 12px;
}

.blog-section.blog-style-1 .blog-item:hover .blog-img img,
.blog-section.blog-style-2 .blog-item:hover .blog-img img {
  scale: 1.1;
}

.blog-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.posts-box-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.posts-box-grid .posts-box-inner {
  display: flex;
  gap: 15px;
}

.posts-box-grid .left-part {
  width: 40%;
}

.posts-box-grid .left-part .posts-box-item {
  width: 100%;
  flex-basis: 100%;
  height: 100%;
}

.posts-box-grid .left-part .posts-box-item .posts-box {
  height: 100%;
}

.posts-box-grid .left-part .blog-card .blog-img {
  min-height: 799px;
  max-height: 799px;
}

.posts-box-grid .right-part {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 70%;
}

.posts-box-grid .right-part .posts-box-item {
  width: calc(50% - 7.5px);
  flex-basis: calc(50% - 7.5px);
  max-width: 400px;
}

.posts-box-grid .right-part .posts-box-item .posts-box {
  min-height: 375px;
  max-height: 375px;
}

.posts-box-grid .posts-box-item .content-holder {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  padding: 0px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.posts-box-grid .posts-box-item .title {
  font-size: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.posts-box-grid .posts-box-item .posts-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  z-index: 1;
}


.blog-card .blog-img {
  width: 100%;
  max-height: 265px;
  min-height: 265px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
}

.blog-card .blog-details {
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.blog-card .profile-area {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.blog-card .profile-area img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

img.img-fluid.rounded-circle {
    width: 40px;
}



@media screen and (max-width: 991px) {
  .posts-box-grid .posts-box-inner {
    flex-direction: column;
  }

  .posts-box-grid .left-part {
    width: 100%;
  }

  .posts-box-grid .left-part .blog-card .blog-img {
    min-height: 450px;
    max-height: 450px;
  }

  .posts-box-grid .right-part {
    width: 100%;
  }

  .posts-box-grid .right-part .posts-box-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .blog-section .blog-img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .blog-section .blog-item {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .posts-box-grid .right-part .posts-box-item {
    width: 100%;
    flex-basis: 100%;
  }

  .posts-box-grid .left-part .blog-card .blog-img {
    min-height: 300px;
    max-height: 300px;
  }
}