.blog-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgb(32 138 189 / 37%), 0 2px 16px rgba(255, 255, 255, 0.1) inset;
  height: 100%;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.blog-card:hover::before {
  left: 100%;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgb(246 152 17 / 40%), 0 4px 20px rgba(255, 255, 255, 0.15) inset;
  border-color: rgba(255, 255, 255, 0.3);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.card-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #c22248;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.card-body {
  padding: 25px 25px 0px 25px;
  position: relative;
}

.card-title {
  color: var(--color-3);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
  font-family: var(--font-01);
}

.blog-card:hover .card-title {
  color: #1c1c1c;
}

.card-description {
  color: dimgray;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-01);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #218cc5, #de363e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-name {
  color: #01a647;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-01);
}

.read-more-btn {
  background: rgb(2 2 2 / 20%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.read-more-btn:hover::before {
  left: 100%;
}

.read-more-btn:hover {
  background: var(--color-4);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateX(5px);
  text-decoration: none;
}

.container-title {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container-title {
      font-size: 2rem;
      margin-bottom: 30px;
  }
  
  .card-image {
      height: 180px;
  }
  
  .card-body {
      padding: 20px;
  }
  
  .card-title {
      font-size: 1.2rem;
  }
  
  .card-footer {
      flex-direction: column;
      gap: 15px;
      align-items: stretch;
  }
  
  .read-more-btn {
      text-align: center;
      width: 100%;
  }
}

@media (max-width: 576px) {
  .card-image {
      height: 160px;
  }
  
  .card-body {
      padding: 15px;
  }
  
  .card-date {
      font-size: 0.8rem;
      padding: 6px 12px;
  }
}

.blog-card {
  animation: fadeInUp 0.6s ease-out;
}

.blog-card:nth-child(2) {
  animation-delay: 0.1s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.2s;
}

.blog-card:nth-child(4) {
  animation-delay: 0.3s;
}
/*.event-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: white;
  border-radius: 16px 16px 0 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.event-card::after {
  content: "";
  position: absolute;
  bottom: -38px;
  right: 0;
  width: 100%;
  height: 40px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 105% 104%);
  z-index: 0;
  border-bottom-right-radius: 20px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}

.event-card:hover .event-image {
  transform: scale(1.05);

}

.date-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-day {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  display: block;
}

.date-month {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.card-content {
  padding: 24px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

.event-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: var(--font-01);
  color: var(--color-3);
}
.hr-author-name{
  color: var(--color-4);
  font-family: var(--font-01);
}
.event-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0px;
  right: 20px;
}

.more-button:hover {
  background: #01a64d;
  border-color: #01a64d;
  cursor: pointer;
  transform: translateX(4px);
}

.more-button svg {
  width: 18px;
  height: 18px;
  color: #05a94c;
  transition: color 0.3s ease;
}

.more-button:hover svg {
  color: white;
}


@media (max-width: 768px) {
.event-card {
     margin-bottom:30px;
           min-width: 100%;
}
}

@media (max-width: 480px) {
  .event-card {
    max-width: 100%;
  }
 
  .event-title {
    font-size: 20px;
  }

  .card-content {
    padding: 20px;
    padding-bottom: 28px;
  }
}*/
