/* Use Case Cards Section */
.uc-cards-section {
  padding: 80px 20px;
  background: #fff;
  padding-bottom: unset;
}

.uc-cards-section .container {
  max-width: 1070px;
  margin: 0 auto;
}

.uc-cards-section__heading {
  font-size: 42px;
  line-height: 130%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #2d2d2d;
}

.uc-cards-section__description {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 60px;
  color: #5a5a5a;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.uc-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.uc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.uc-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.uc-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Makes icon white */
}

.uc-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.type-use_case .uc-cards-section h3.uc-card__heading {
  font-size: 24px;
  line-height: 130%;
  font-weight: 600;
  color: #101828;
  margin: 0 0 8px 0;
}

.uc-card__subheading {
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  color: #101828;
  margin: 0 0 12px 0;
}

.uc-card__description {
  font-size: 16px;
  line-height: 160%;
  color: #101828;
}

.uc-card__description p {
  margin-bottom: 12px;
}

.uc-card__description p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .uc-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }
  
  .uc-cards-section__heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .uc-cards-section {
    padding: 60px 20px;
  }
  
  .uc-cards-section__heading {
    font-size: 32px;
  }
  
  .uc-cards-section__description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .uc-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .uc-card {
    padding: 36px 24px;
  }
  
  .uc-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    padding: 16px;
  }
  
  .uc-card__heading {
    font-size: 22px;
  }
  
  .uc-card__subheading {
    font-size: 16px;
  }
  
  .uc-card__description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .uc-cards-section {
    padding: 40px 16px;
  }
  
  .uc-card {
    padding: 28px 20px;
  }
}
