.blog__wrapper h3 {
  font-size: 42px;
  font-weight: 700;
  position: absolute;
  bottom: 150px;
  color: var(--bs-white);
  left: 0;
}

.blog__inner .card-title {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
}

.blog__inner .card-info {
  font-size: 18px;
  font-weight: 500;
  color: #57595f;
  padding-bottom: 20px;
}
.card-footer span {
  font-size: 18px;
  font-weight: 500;
}
.read-more {
  display: inline-block;
  font-weight: 600;
  background: var(--donateBtn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  transition: background-position 0.4s ease, transform 0.3s ease;
}

.read-more:hover {
  background-position: 100% 0; /* Shifts gradient */
  transform: scale(1.05); /* Slight zoom */
}

.card-container .blog__card {
  background: var(--bs-white);
  box-shadow: 3px 4px 16px 0px #00000033;
  padding: 21px;
  border-radius: 10px;
}
#blogContainer {
  gap: 35px;
}

@media (min-width: 768px) {
  .blog__card {
    width: 31.333333% !important;
  }
}

.blog__overlay::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.189567) 4.89%,
      rgba(0, 0, 0, 0) 39.1%
    );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.blog_breadnrumb {
  display: flex;
  position: absolute;
  bottom: 197px;
  left: 0;
  gap: 20px;
  color: var(--bs-white);
}
.bredcrumb__icon::after {
  position: absolute;
  width: 1px;
  content: '';
  background: white;
  top: 3px;
  left: 24px;
  height: 18px;
}

.home-icon-link img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home-icon-link:hover img {
  transform: scale(1.3) rotate(-5deg);
  filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.6));
}
.blog__info h3{
  font-size: 24px;
  font-weight: 600;
}

.spiritual-heading {
  animation: fadeInUp 1.5s ease, glowPulse 2s infinite alternate;
  font-family: 'Georgia', serif;
  color: #8B4513;
  letter-spacing: 1px;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% {
      text-shadow: 0 0 5px #ffdbac, 0 0 10px #ffb347, 0 0 15px #ff9933;
  }
  100% {
      text-shadow: 0 0 10px #ffdbac, 0 0 20px #ffb347, 0 0 30px #ff9933;
  }
}


.bell-meaning {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
}

.bell-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fdf5e6;
  padding: 12px 15px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bell-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.icon {
  font-size: 28px;
}

/* Blog image css */
.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* rounded corners for elegance */
}

.blog-img img {
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.blog-img:hover img {
  transform: scale(1.08); /* zoom-in effect */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

