/* Learn More Blog Widget */
.lm-widget {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.lm-widget * {
  box-sizing: border-box;
}
.lm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.lm-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  display: none;
  cursor: pointer;
  overflow: hidden;
}
.lm-card.lm-visible {
  display: block;
}
.lm-card-inner {
  position: relative;
  overflow: hidden;
}
.lm-card-inner:hover .lm-overlay {
  opacity: 1;
}
.lm-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.lm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 64, 154, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5% 15%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lm-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
.lm-date {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px 0;
}
.lm-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 8px 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s, color 0.3s;
}
.lm-btn:hover {
  background: #ffffff;
  color: #20409a;
}
.lm-bottom {
  background: #20409a;
  padding: 3% 5%;
}
.lm-bottom-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.lm-bottom-title a {
  color: #ffffff;
  text-decoration: none;
}
.lm-bottom-title a:hover {
  text-decoration: underline;
}
.lm-load-more {
  text-align: center;
  margin-top: 30px;
}
.lm-load-more-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #5472d2;
  border: none;
  border-radius: 3px;
  padding: 10px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}
.lm-load-more-btn:hover {
  background: #3d5bbf;
}

/* Responsive */
@media (max-width: 991px) {
  .lm-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 600px) {
  .lm-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .lm-grid {
    gap: 20px;
  }
}
