.elementor-624 .elementor-element.elementor-element-55df15d{--display:flex;--min-height:941px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-624 .elementor-element.elementor-element-55df15d:not(.elementor-motion-effects-element-type-background), .elementor-624 .elementor-element.elementor-element-55df15d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3876f98 */.courses-page {
  background: #0f0f10;
  min-height: 100vh;
  padding: 40px;
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.title {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 25px;
}

/* GRID */
.course-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.course-card {
  width: 300px;
  background: #161616;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff; /* ALL TEXT WHITE */
  border: 1px solid #2a2a2a;
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: #444;
}

/* IMAGE */
.card-image {
  height: 160px;
  background: #000;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

/* FORCE WHITE TEXT */
.card-content h3,
.card-content p,
.card-content h4 {
  color: #ffffff;
}

/* FONT SIZES */
.card-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 13px;
  margin-bottom: 8px;
}

.card-content h4 {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .course-grid {
    justify-content: center;
  }

  .course-card {
    width: 90%;
  }
}/* End custom CSS */