

/* Blog Listing Page Styles */
.blog-wrap {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 60px;
        max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.blog-banner {
    position: relative;
    height: 190px;
    &::after {
        content:"";
        background-color: black;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: .35;
    }
}
.blog-date, .blog-category {font-size: 12px;}
.blog-title {
    line-height: 26px;
    font-size: 18px;
    padding: 0;
    margin-top: 10px;
}
.blog-title a {
    color:#666;
}
.blog-category a {
    color:#1a77ba;
}
.banner-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.blog-grid>* {
  max-width: 300px;
  /* Optional: prevent item from stretching */
}
.blog-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  /* padding:20px; */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-content {
    border: 1px solid #cdcdcd;
    /* border-top: 0; */
    padding: 20px;
    height: 100%;
}
.blog-card-image {
    display: flex;
    min-height: 160px;
    background-color: #efefef;
}
.blog-excerpt {
        font-size: 13px;
    line-height: 18px;
}
.read-more {
    color:#1a77ba;
    font-size: 13px;
}
/* Blog Single Page Styles */
.single-post .entry-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.single-post .post-meta {
  color: #777;
  font-size: 0.9em;
  margin-bottom: 20px;
}

/* Blog detail page */
.post-banner {
    min-height: 200px;
    height: 200px;
    position: relative;
    &::after {
        content:"";
        background-color: black;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: .35;
    }
}
.post-banner-img  {
    height: 100%;
    object-fit: cover;
}
.post-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.prev a, .next a {
    color: #1a77ba;
}

.breadcrumb-for-blog {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    font-size: 12px;
}
.breadcrumb-for-blog a {
    color:#1a77ba;
}
.categories a {
    color:#1a77ba;
}

.post-content .wp-block-image {
    margin-left: 0;
      margin-right: 0;
      width: 100%;
}
.post-header {
      margin-top: 30px;
      margin-bottom: 40px;
}

.post-content .wp-block-heading {
font-size: 20px;
}
.post-content a {
    color: #1a77ba;
}
.post-title {
  font-size: 27px;
}