/* Module wrapper */

.blog-cards {
  background: #0E151D;
  padding: 100px 0px;
}
.blog-listing-banner .bottom-featured-section {
  max-width: 100%;
}
.blog-cards .carousel-nav {
  display: none;
}

.blog-cards .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.blog-cards .top-section {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}

.blog-cards .top-section .title h3 {
  color: #fff;
  font-family: Dazzed;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  font-feature-settings: 'ss03' on, 'ss05' on;
  margin: 0;
  white-space: nowrap;
}

.blog-cards .top-section .description {
  color: #CDCDCD;
  font-family: Dazzed;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  font-feature-settings: 'ss03' on, 'ss05' on;
}

/* Cards Grid */
.blog-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual Card */
.blog-cards .card {
  display: flex;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.blog-cards .card:hover {
  transform: translateY(-4px);
}

.blog-cards .card:hover .card-content {
  background: #E0FFBB;
}

.blog-cards .accent-bar {
  display: none;
}

.blog-cards .card-top {
  flex: 1;
  position: relative;
  padding: 28px 45px 25px 44px;
}

.blog-cards .card-top::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #C6FF85;
}

.blog-cards .card-content {
  background: #E8E8E8;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-cards .card-top .icon {
  display: block;
  margin-bottom: 33px;
}

.blog-cards .card-title {
  color: #0E151D;
  font-family: Dazzed;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  font-feature-settings: 'ss03' on, 'ss05' on;
  margin: 0;
}

.blog-cards .divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}

.blog-cards .card-bottom {
  padding: 36px 45px 23px 45px;
}

.blog-cards .card-text {
  color: #0E151D;
  font-family: Dazzed;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  font-feature-settings: 'ss03' on, 'ss05' on;
  margin: 0;
}

/* CTA Button */
.blog-cards .cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.blog-cards .cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  height: 48px;
  padding: 8px 32px;
  background: #B3FF5C;
  border-radius: 100px;
  color: #0E151D;
  font-family: Dazzed;
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.32px;
  font-feature-settings: 'ss03' on, 'ss05' on;
  text-decoration: none;
  transition: background 0.3s ease;
}

.blog-cards .cta-button:hover {
  background: #E0FFBB;
}

@media (max-width: 991px) {
  .blog-cards {
    padding: 80px 0;
  }
  .blog-cards .card-title {
    font-size: 22px;
  }
  .blog-cards .card-top {
    padding: 20px 24px 20px 28px;
  }
  .blog-cards .card-top .icon {
    margin-bottom: 16px;
  }
  .blog-cards .card-bottom {
    padding: 20px 24px;
  }
  .blog-cards .carousel-nav {
  display: none;
}
.blog-cards .cta-wrap {
  margin-top: 60px;
}
}

@media (max-width: 767px) {
  .blog-cards {
    padding: 60px 0;
  }
  .blog-cards .top-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .blog-cards .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .blog-cards .cards-grid .card:nth-child(3) {
    display: none;
  }
  .blog-cards .card-title {
    font-size: 22px;
  }
  .blog-cards .card-top {
    padding: 20px 24px 20px 28px;
  }
  .blog-cards .card-bottom {
    padding: 20px 24px;
  }
  .blog-cards .card-top .icon {
    margin-bottom: 20px;
  }
  .blog-cards .carousel-nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .blog-cards .cards-grid {
    grid-template-columns: 1fr;
  }
  .blog-cards .cards-grid .card:nth-child(2) {
    display: none;
  }
}
}