.certifications .cert-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.certifications .cert-card {
  flex: 1;
  padding: 32px 24px;
  border-radius: 12px;
  transform-style: preserve-3d;
}
.certifications .cert-card.light {
  background-color: #242424;
  color: #ffffff;
}
.certifications .cert-card.dark {
  background-color: #c80000;
  color: #ffffff;
}
.certifications .cert-card.dark .cert-title {
  color: #ffffff;
}
.certifications .cert-card.dark .cert-desc {
  color: rgb(255, 255, 255);
}
.certifications .cert-card.dark .cert-number {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.certifications .cert-card .cert-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.1);
  padding-bottom: 10px;
  transform: translateZ(20px);
}
.certifications .cert-card .cert-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}
.certifications .cert-card .cert-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .certifications .cert-grid {
    flex-direction: column;
    gap: 20px;
  }
  .certifications .cert-card {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .certifications .cert-number {
    font-size: 20px;
  }
  .certifications .cert-title {
    font-size: 20px;
  }
  .certifications .cert-desc {
    font-size: 15px;
  }
}/*# sourceMappingURL=certifications-widget.css.map */