/* ===== Certificate CTA Section ===== */
#ce-cart-sec {
  padding: 5rem 0;
  overflow: hidden;
}

/* Image + floating shadow */
.ce-cart-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.ce-cart-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Text content */
.ce-cart-heading {
  color: var(--theme-color-2);
  font-size: var(--h2-font-size);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ce-cart-desc {
  color: #6b7280;
  font-size: var(--primary-font-size);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.ce-cart-btn {
  --_base: var(--theme-color-3);
  --_hover: var(--theme-color-2);
  --_text-base: var(--primary-color);
  --_text-hover: var(--primary-color);
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  #ce-cart-sec {
    padding: 4rem 0;
  }

  .ce-cart-desc {
    max-width: 100%;
  }
  .ce-cart-heading,
  .ce-cart-desc {
    text-align: center;
  }
  .ce-cart-btn{
    margin-inline: auto;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 575.98px) {
  #ce-cart-sec {
    padding: 3rem 0;
  }

  .ce-cart-img-wrap::after {
    bottom: -1rem;
    height: 20px;
    filter: blur(10px);
  }
}
