/* Main Card */
.blog-card .pd_pcf_single_item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hover Effect */
.blog-card .pd_pcf_single_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* Thumbnail */
.blog-card .pd_pcf_thumbnail {
  position: relative;
  overflow: hidden;
}

.blog-card .pd_pcf_thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content Area */
.blog-card .pd_pcf_content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

/* Title */
.blog-card .pd_pcf_title {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d9d9d9;
}

.blog-card .pd_pcf_title h2 {
  margin: 0;
  line-height: 1.35;
  font-size: 22px;
  font-weight: 700;
  padding: 0;
}

.blog-card .pd_pcf_title h2 a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.blog-card .pd_pcf_title h2 a:hover {
  opacity: 0.85;
}

/* Description */
.blog-card .pd_pcf_text p {
  margin: 0;
  /* font-size: 17px; */
  line-height: 1.8;
  font-size: calc(0.6rem + 1vw);
}

/* Read More */
.blog-card .pd_pcf_readmore {
  margin-top: 22px;
}

.blog-card .pd_pcf_readmore_link {
    text-transform: capitalize;
    display: inline-block;
    padding: 0!important;
    background: none!important;
    color: #0274be!important;
    border: none!important;
    transition: all 200ms;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.blog-card .pd_pcf_readmore_link:hover {
  opacity: 0.8;
}

/* Grid spacing */
.blog-card .pd_pcf_item {
  padding: 14px;
  box-sizing: border-box;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .blog-card .pd_pcf_thumbnail img {
    height: 190px;
  }

  .blog-card .pd_pcf_content {
    padding: 18px;
  }

  .blog-card .pd_pcf_title h2 {
    font-size: 17.6px;
  }

  /* .blog-card .pd_pcf_text p {
    font-size: 16px;
    line-height: 1.7;
  } */

  .blog-card .pd_pcf_item {
    width: 100%!important;
  }
}

@media (min-width: 600px) and (max-width: 950px) {
  .blog-card .pd-pcf-col-3 {
      width: 50%!important;
  }
}


@media (min-width: 900px) {
    .blog-card .pd_pcf_text p {
        font-size: calc(0.1rem + 0.9vw);
    }
}