.blog-card__image {
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Makes image fit nicely */
  display: block;
}

.modern-blog-section {
  padding: 80px 0;
  background: #f5f7f6;
}

.modern-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
}

.modern-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e3e6e4;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.modern-blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.12);
}

/* Image */
.modern-blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s ease;
}

.modern-blog-card:hover img {
  transform: scale(1.05);
}

/* Content */
.modern-blog-content {
  padding: 25px;
}

.modern-blog-content h3 a {
  font-size: 21px;
  font-weight: 600;
  color: #1b3b2e;
  text-decoration: none;
  transition: 0.3s;
}

.modern-blog-content h3 a:hover {
  color: #217c56;
}

.modern-blog-content p {
  margin-top: 10px;
  font-size: 15px;
  color: #5c6d65;
}

.modern-blog-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.modern-blog-content ul li {
  color: #44554e;
  margin-bottom: 5px;
}

/* QUOTE CARD */
.modern-blog-quote {
  background: linear-gradient(135deg, #c1a766, #8f7f56ff);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.2);
}

.modern-blog-quote i {
  font-size: 40px;
  margin-bottom: 15px;
}

.modern-blog-quote h3 a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

/* Load More */
.modern-load-more {
  text-align: center;
  margin-top: 40px;
}

/* QUOTE CARD */
.premium-quote-card-v2 {
  background: linear-gradient(135deg, #c1a766, #8f7f56ff);
  padding: 40px 28px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0px 14px 50px rgba(0, 0, 0, 0.18);
}

.premium-quote-card-v2 i {
  font-size: 38px;
  margin-bottom: 20px;
}

.premium-quote-card-v2 h3 a {
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  text-decoration: none;
}

.premium-quote-card-v2 {
  background: #f5f7f6;
  padding: 90px 20px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8e5;
}

.premium-quote-card-v2 i.fa-paw {
  font-size: 65px;
  color: #c1a766;
  margin-bottom: 15px;
}

.premium-quote-card-v2 h3 {
  font-size: 18px;
  line-height: 1.6;
  color: #14422a;
  margin-bottom: 20px;
}

.premium-quote-card-v2 h3 a {
  text-decoration: none;
  color: inherit;
}

.quote-images {
  display: flex;
  justify-content: center;
  /* Centers images horizontally */
  gap: 10px;
  /* Space between images */
  margin-top: 15px;
}

.quote-images img {
  width: 60px;
  /* Adjust size as needed */
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #c1a766;
}

.hdrmain {
  background-image: url(../Shyamalaimages/PrivateWoodenCabinPetCafe/pvtvdncafe.webp);
  /* background-position-y: -1290px; */
}

@media (max-width: 768px) {
  .modern-blog-img img {
    height: 200px;
  }
}