@charset "UTF-8";
/**
 * SAF-372 — Styles for [dash_featured_training_courses].
 *
 * Built from the "Featured Training Courses" screenshot: max-width 1360px
 * container, 432x482px cards, 32px gaps (3 cards * 432 + 2 * 32 = 1360,
 * so a full row fits the container exactly at desktop width).
 *
 * Independent from the shared assets/css/educator-dashboard.css used by
 * the other sections/ files — everything here is scoped under
 * .edash-ftc-wrapper so it can't leak onto anything else.
 *
 * No build tool exists in this repo, so this .css and its .scss twin must
 * be kept byte-identical on every edit — see the SCSS/CSS sync note in
 * assets/css/educator-dashboard.scss.
 */
.edash-ftc-wrapper {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.edash-ftc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.edash-ftc-title {
  margin: 0;
  color: #004974;
  font-size: 28px;
  font-weight: 700;
}

.edash-ftc-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.edash-ftc-arrow {
  display: inline-flex;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.edash-ftc-arrow svg {
  display: block;
}

.edash-ftc-splide .splide__track {
  overflow: hidden;
}

.edash-ftc-splide .splide__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.edash-ftc-card {
  width: 432px;
  height: 482px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.edash-ftc-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #E5E7EB;
  overflow: hidden;
  flex-shrink: 0;
}

.edash-ftc-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.edash-ftc-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9AA1AB;
  font-size: 13px;
  text-align: center;
}

.edash-ftc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 24px;
  min-height: 0;
}

.edash-ftc-card-title {
  margin: 0;
  color: #1D2939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.edash-ftc-card-desc {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.edash-ftc-card-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #98A2B3;
  font-size: 13px;
  margin-top: auto;
}

.edash-ftc-card-actions {
  display: flex;
  gap: 12px;
}

.edash-ftc-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.edash-ftc-btn-outline {
  background: #fff;
  border: 2px solid #8BC251;
  color: #8BC251;
}

.edash-ftc-btn-filled {
  background: #8BC251;
  border: 2px solid #8BC251;
  color: #fff;
}

@media (max-width: 1023px) {
  .edash-ftc-card {
    width: 85vw;
    max-width: 432px;
  }
}/*# sourceMappingURL=featured-training-courses.css.map */