/* ───────────────────────────────────────────────────────────────────────────
 *  dest-courses-section.css
 *  Styles only the "Courses offered here" section on destination hub pages.
 *  All classes prefixed `dest-courses-`. Loaded only by _source-destination.html.
 * ─────────────────────────────────────────────────────────────────────────── */

.dest-courses-section {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.dest-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.dest-courses-card {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
/* Cards with a product image: image bleeds to the card edges, text sits in a
   padded body below. */
.dest-courses-card.has-media {
  padding: 0;
  overflow: hidden;
}
.dest-courses-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(15, 118, 110, 0.18);
  border-color: #5eead4;
}

.dest-courses-card-media {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #e2e8f0;
  overflow: hidden;
}
.dest-courses-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.dest-courses-card.has-media:hover .dest-courses-card-img {
  transform: scale(1.03);
}
.dest-courses-card.has-media .dest-courses-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 16px;
}

.dest-courses-card-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-hover, #0f766e);
  margin-bottom: 8px;
}

.dest-courses-card-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: #0f172a;
}

.dest-courses-card-meta {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 14px;
  line-height: 1.4;
}

.dest-courses-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}
.dest-courses-card-price {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
.dest-courses-card-price small {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  margin-left: 4px;
}
.dest-courses-card-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-hover, #0f766e);
  letter-spacing: 0.02em;
}

.dest-courses-empty {
  padding: 24px;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 720px) {
  .dest-courses-grid { grid-template-columns: 1fr; }
}
