/* -----------------------------------------------------------------
   22. Phase 5 — pts-course CPT (archive + taxonomy grids, single layout)
   ----------------------------------------------------------------- */

.lexx-live-course-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.lexx-live-course-card {
  background: var(--lexx-white);
  border-radius: var(--lexx-radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lexx-live-course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.lexx-live-course-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.lexx-live-course-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* `contain` (not cover) so square certification badges aren't cropped to a
     near-identical 16:9 slice — preserving each badge's distinct artwork. */
  background-color: #f5f6f8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.lexx-live-course-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.lexx-live-course-card__eyebrow {
  font-family: var(--lexx-font-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lexx-accent-blue);
}

.lexx-live-course-card__title {
  font-family: var(--lexx-font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--lexx-text);
  line-height: 1.3;
}

.lexx-live-course-card__excerpt {
  font-family: var(--lexx-font-primary);
  font-size: 14px;
  color: rgba(73, 73, 73, 0.85);
  line-height: 1.5;
}

.lexx-live-course-card__cta {
  margin-top: auto;
  font-family: var(--lexx-font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--lexx-accent-blue);
}

.lexx-live-pagination {
  margin: 3rem 0;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lexx-live-course-grid + .lexx-live-pagination {
  margin-top: 2rem;
}

.lexx-live-pagination .page-numbers {
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--lexx-white);
  color: var(--lexx-text);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lexx-live-pagination .page-numbers.current {
  background: var(--lexx-accent-blue);
  color: var(--lexx-white);
  border-color: transparent;
}

.lexx-live-empty {
  padding: 3rem 0;
  text-align: center;
  color: rgba(73, 73, 73, 0.85);
}

.lexx-live-tax-archive__eyebrow {
  font-family: var(--lexx-font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lexx-accent-blue);
  margin-bottom: 8px;
}

/* Single course detail layout (article + sidebar). Leans on the existing
   _course-single.css classes (.intro-alt--flexed-secondary, .intro__image,
   .content, .article, .sidebar--pts-course, .widgets-alt, .list-ticks,
   .course--price, .course--pricing-heading) for visuals — this block only
   wires the two-column grid the new template introduces. */

.lexx-live-course__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .lexx-live-course__layout {
    grid-template-columns: 1fr;
  }
}

.lexx-live-course__article {
  background: transparent;
  padding: 1rem 0;
}

.lexx-live-course__sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lexx-live-course__section {
  margin-top: 2.5rem;
}

.lexx-live-course__widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lexx-live-course__widget li a {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 172, 239, 0.08);
  color: var(--lexx-accent-blue);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.lexx-live-course__topics {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lexx-live-course__topics li a {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--lexx-text);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
}

.lexx-live-course__eyebrow {
  font-family: var(--lexx-font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lexx-accent-blue);
  margin-bottom: 12px;
}

.lexx-live-course__lede {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(73, 73, 73, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Single course sidebar widgets ──────────────────────────────────────────
   All selectors below are intentionally scoped to `.single-pts-course` so they
   beat the base `_course-single.css` rules (which only apply when
   `.single-pts-course` body class is present). This keeps the sidebar layout
   isolated to our migrated pts-course pages without affecting the existing
   Phoenix course pages on Online. */

.single-pts-course .lexx-live-course__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.single-pts-course .lexx-live-course__pricing-box {
  background: var(--lexx-white);
  border: 1px solid var(--lexx-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--lexx-radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin: 0;
}

/* ── Sidebar: Register button ─────────────────────────────────────────── */
.single-pts-course .sidebar--pts-course .btn-pill--gradient,
.single-pts-course .sidebar--pts-course > .btn-pill--gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  border-radius: var(--lexx-radius-btn);
  background: var(--lexx-btn-gradient);
  background-size: 200% 100%;
  background-position: left center;
  color: var(--lexx-white) !important;
  text-decoration: none;
  border: none;
  transition: background-position 0.4s ease-in-out;
}

.single-pts-course .sidebar--pts-course .btn-pill--gradient:hover {
  background-position: right center;
}

/* ── Pricing heading ("Starting at $X") ──────────────────────────────── */
.single-pts-course .sidebar--pts-course .course--pricing-heading {
  font-family: var(--lexx-font-primary);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--lexx-text);
  text-align: center;
  margin: 0;
}

.single-pts-course .sidebar--pts-course .course--price {
  color: var(--lexx-accent-orange);
  font-weight: 800;
  display: block;
  font-size: 1.875em;
}

/* ── GSA box — exact port of Live's .course--gsa-note from wp.css ─────── */
.single-pts-course .course--gsa-note {
  background: #000 !important;
  border: none !important;
  border-radius: var(--lexx-radius-card) !important;
  padding: 1em !important;
  color: #fff !important;
  margin: 0 !important;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.single-pts-course .course--gsa-note .course--gsa-note__text {
  width: 100%;
  color: #fff;
}

.single-pts-course .course--gsa-note h4 {
  color: #e8dd0c !important;
  margin: 0;
  padding: .5em 0 0;
}

.single-pts-course .course--gsa-note p {
  color: #fff !important;
  margin: 0 0 1em;
  padding: 0 0 1em;
  border-bottom: 1px solid #555;
  font-size: 13px;
  line-height: 1.55;
}

.single-pts-course .course--gsa-note a {
  color: #e8dd0c !important;
}

.single-pts-course .course--gsa-note .course--gsa-note__figure {
  margin: 0;
}

.single-pts-course .course--gsa-note img {
  max-width: 90%;
  width: 200px;
  margin-bottom: .5em;
}

/* ── Download/Print Brochure button ──────────────────────────────────── */
.single-pts-course .course-actions {
  margin: 0;
}

.single-pts-course .course-actions .list-actions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.single-pts-course .course-actions .list-actions li {
  margin: 0;
  padding: 0;
}

.single-pts-course .course-actions .list-actions a.btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  text-align: left;
  border-radius: var(--lexx-radius-btn);
  background: var(--lexx-btn-gradient);
  background-size: 200% 100%;
  background-position: left center;
  color: var(--lexx-white) !important;
  text-decoration: none;
  border: none;
  transition: background-position 0.4s ease-in-out;
}

.single-pts-course .course-actions .list-actions a.btn:hover {
  background-position: right center;
}

.single-pts-course .course-actions .ico-pdf svg {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

/* ── widgets-alt list (price match, checklist, promos) ───────────────── */
.single-pts-course .widgets-alt {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.single-pts-course .widgets-alt .widget {
  background: var(--lexx-light-gray);
  border: 1px solid var(--lexx-border);
  box-shadow: none;
  border-radius: 12px;
  padding: 20px;
}

.single-pts-course .widgets-alt .widget h5 {
  color: var(--lexx-text);
  font-family: var(--lexx-font-primary);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.single-pts-course .widgets-alt .widget p,
.single-pts-course .widgets-alt .widget span,
.single-pts-course .widgets-alt .widget li,
.single-pts-course .widgets-alt .widget a {
  color: var(--lexx-text);
  font-size: 13px;
}

.single-pts-course .widgets-alt .widget a:hover {
  color: var(--lexx-accent-blue);
}

.single-pts-course .widget--price-match {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.single-pts-course .widget--price-match figure {
  margin: 0 0 6px;
}

.single-pts-course .widget--price-match figure img {
  width: 44px;
  height: auto;
  display: block;
}

/* Checklist widget — orange gradient card */
.single-pts-course .widgets-alt .widget--alt {
  background: linear-gradient(to right, var(--lexx-accent-orange), var(--lexx-light-orange));
  border: none;
}

.single-pts-course .widgets-alt .widget--alt h4,
.single-pts-course .widgets-alt .widget--alt h4 strong {
  color: var(--lexx-white);
  font-family: var(--lexx-font-primary);
}

.single-pts-course .widgets-alt .widget--alt .list-ticks {
  background: var(--lexx-white);
  border: none;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.single-pts-course .widget--price-match p {
  font-size: 13px;
  color: rgba(73, 73, 73, 0.8);
  margin: 0;
  line-height: 1.55;
}

/* Pricing form (Gravity Forms inside the sidebar).
   The GF "gravity-theme" CSS leaves labels in a light grey that gets lost
   on this white background — force the readable color and a tidy spacing.
   Reset our card to give the form room to breathe. */
.single-pts-course .lexx-live-course__pricing-form {
  background: var(--lexx-white);
  border: 1px solid var(--lexx-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--lexx-radius-card);
  padding: 1.5rem;
  margin: 0;
}

.single-pts-course .lexx-live-course__pricing-form h2 {
  font-family: var(--lexx-font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--lexx-text);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.single-pts-course .lexx-live-course__pricing-form .gform_description,
.single-pts-course .lexx-live-course__pricing-form .gform_required_legend {
  font-size: 13px;
  color: rgba(73, 73, 73, 0.8);
}

.single-pts-course .lexx-live-course__pricing-form .gfield_label,
.single-pts-course .lexx-live-course__pricing-form label.gform-field-label {
  color: var(--lexx-text) !important;
  font-family: var(--lexx-font-primary);
  font-weight: 600;
  font-size: 13px;
}

.single-pts-course .lexx-live-course__pricing-form .gfield_required {
  color: #c0392b;
}

.single-pts-course .lexx-live-course__pricing-form input[type="text"],
.single-pts-course .lexx-live-course__pricing-form input[type="email"],
.single-pts-course .lexx-live-course__pricing-form input[type="tel"],
.single-pts-course .lexx-live-course__pricing-form textarea {
  border: 1px solid var(--lexx-border, rgba(0, 0, 0, 0.12));
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--lexx-font-primary);
  font-size: 14px;
  color: var(--lexx-text);
  background: var(--lexx-white);
  width: 100%;
}

.single-pts-course .lexx-live-course__pricing-form .gform_button {
  background: linear-gradient(to right, var(--lexx-accent-orange), var(--lexx-light-orange));
  color: var(--lexx-white);
  border: none;
  border-radius: var(--lexx-radius-btn, 14px);
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.single-pts-course .lexx-live-course__pricing-form .gform_button:hover {
  filter: brightness(1.05);
}

.single-pts-course .lexx-live-course__form-intro {
  margin-bottom: 1rem;
  font-size: 14px;
  color: rgba(73, 73, 73, 0.85);
}

/* Brand pill widget — keep small inline tags. */
.single-pts-course .lexx-live-course__widget--brand {
  background: var(--lexx-white);
  border: 1px solid var(--lexx-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--lexx-radius-card);
  padding: 1.25rem 1.5rem;
  margin: 0;
}

.single-pts-course .lexx-live-course__widget--brand .course--pricing-heading {
  font-family: var(--lexx-font-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(73, 73, 73, 0.6);
  margin: 0 0 12px;
}

/* ── Schedule placeholder (course_schedule shortcode stub) ── */

.lexx-live-course__schedule-placeholder {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: rgba(0, 172, 239, 0.06);
  border-left: 3px solid var(--lexx-accent-blue);
  border-radius: 0 var(--lexx-radius-card) var(--lexx-radius-card) 0;
  margin: 1rem 0 1.5rem;
}

.lexx-live-course__schedule-placeholder p {
  margin: 0;
  font-size: 14px;
  color: rgba(73, 73, 73, 0.8);
}

.lexx-live-course__schedule-link {
  white-space: nowrap;
}

/* ── Brand page (page-brand-live) ── */

.lexx-live-brand__subnav {
  background: var(--lexx-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 80;
}

.lexx-live-brand__subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

.lexx-live-brand__subnav-list li a {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lexx-text);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.lexx-live-brand__subnav-list li a:hover {
  color: var(--lexx-accent-blue);
  border-bottom-color: var(--lexx-accent-blue);
}

.lexx-live-brand__section {
  padding: 4rem 0;
}

.lexx-live-brand__section + .lexx-live-brand__section {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lexx-live-brand__section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  margin-bottom: 2rem;
}

.lexx-live-brand__request-intro {
  max-width: 640px;
  margin-bottom: 2rem;
}

.lexx-live-brand__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.lexx-live-brand__offer-card {
  background: var(--lexx-white);
  border-radius: var(--lexx-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.lexx-live-brand__offer-card-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.lexx-live-brand__offer-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lexx-live-brand__offer-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.lexx-live-brand__reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lexx-live-brand__review-card {
  background: var(--lexx-white);
  border-radius: var(--lexx-radius-card);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(73, 73, 73, 0.9);
  position: relative;
}

.lexx-live-brand__review-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 48px;
  line-height: 1;
  color: var(--lexx-accent-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.lexx-live-brand__review-attribution {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(73, 73, 73, 0.6);
}

.lexx-live-brand__additional-block {
  margin-bottom: 2rem;
}

.lexx-live-brand__alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.lexx-live-brand__alt-block img {
  width: 100%;
  border-radius: var(--lexx-radius-card);
}

@media (max-width: 768px) {
  .lexx-live-brand__alt-block {
    grid-template-columns: 1fr;
  }
  .lexx-live-brand__subnav-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lexx-live-brand__subnav-list li a {
    padding: 12px 16px;
    white-space: nowrap;
  }
}

/* -----------------------------------------------------------------
   23. Phase 5 — [course_schedule] shortcode table
   ----------------------------------------------------------------- */

/* Container — mirrors Live's .courses.courses--secondary card */
.lexx-live-course__schedule {
  background: var(--lexx-white);
  border: 1px solid var(--lexx-border);
  border-radius: var(--lexx-radius-card);
  padding: 24px 28px;
  margin: 2rem 0;
  box-shadow: var(--lexx-shadow);
  overflow: visible;
}

/* Flex row grid (4 columns: date | location | price | register) */
.lexx-live-course__schedule .row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lexx-live-course__schedule .row--head {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lexx-border);
  margin-bottom: 4px;
}

.lexx-live-course__schedule .row--head h6 {
  font-family: var(--lexx-font-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(73, 73, 73, 0.55);
  margin: 0;
}

.lexx-live-course__schedule .row:not(.row--head) {
  padding: 12px 0;
  border-top: 1px solid var(--lexx-light-gray);
  transition: background 0.2s ease;
}

.lexx-live-course__schedule .row:not(.row--head):first-of-type {
  border-top: none;
}

.lexx-live-course__schedule .row:not(.row--head):hover {
  background: var(--lexx-light-gray);
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

/* Column widths */
.lexx-live-course__schedule .col {
  flex: 1;
  min-width: 0;
}

.lexx-live-course__schedule .col:first-child {
  flex: 0 0 38%;
  max-width: 38%;
}

.lexx-live-course__schedule .col:nth-child(2) {
  flex: 0 0 22%;
  max-width: 22%;
}

.lexx-live-course__schedule .col:nth-child(3) {
  flex: 0 0 14%;
  max-width: 14%;
}

.lexx-live-course__schedule .col:last-child {
  flex: 0 0 auto;
  text-align: right;
}

/* Typography */
.lexx-live-course__schedule .col h5 {
  font-family: var(--lexx-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--lexx-text);
  margin: 0 0 2px;
  line-height: 1.4;
}

.lexx-live-course__schedule .col h5 span {
  font-weight: 400;
  font-size: 13px;
  color: rgba(73, 73, 73, 0.6);
}

.lexx-live-course__schedule .col p {
  font-family: var(--lexx-font-primary);
  font-size: 13px;
  color: rgba(73, 73, 73, 0.65);
  margin: 2px 0 0;
}

/* Badges */
.lexx-live-course__schedule .badge {
  display: inline-block;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--lexx-font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lexx-accent-blue);
  border: 1px solid var(--lexx-accent-blue);
  margin-top: 4px;
  line-height: 1.4;
}

.lexx-live-course__schedule .badge--active {
  background: rgba(0, 172, 239, 0.1);
  color: var(--lexx-accent-blue);
  border-color: var(--lexx-accent-blue);
}

.lexx-live-course__schedule .badge--limited {
  background: rgba(226, 80, 39, 0.1);
  color: var(--lexx-accent-orange);
  border-color: var(--lexx-accent-orange);
}

.lexx-live-course__schedule .badge--disabled {
  background: var(--lexx-light-gray);
  color: rgba(73, 73, 73, 0.5);
  border-color: rgba(73, 73, 73, 0.2);
}

/* Register / Contact buttons */
.lexx-live-course__schedule .btn-pill--gradient {
  background: var(--lexx-btn-gradient);
  background-size: 200% 100%;
  background-position: left center;
  color: var(--lexx-white) !important;
  padding: 9px 20px;
  border-radius: var(--lexx-radius-btn);
  font-family: var(--lexx-font-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.lexx-live-course__schedule .btn-pill--gradient:hover {
  background-position: right center;
}

.lexx-live-course__schedule .btn-outline--orange {
  background: transparent;
  border: 2px solid var(--lexx-accent-orange);
  color: var(--lexx-accent-orange) !important;
  border-radius: var(--lexx-radius-btn);
  padding: 7px 16px;
  font-family: var(--lexx-font-primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.lexx-live-course__schedule .btn-outline--orange:hover {
  background: var(--lexx-accent-orange);
  color: var(--lexx-white) !important;
}

/* Empty state */
.lexx-live-course__schedule + .courses--no-classes,
.courses--no-classes {
  padding: 1.5rem;
  background: var(--lexx-light-gray);
  border-radius: var(--lexx-radius-card);
  font-size: 14px;
  color: rgba(73, 73, 73, 0.8);
}

/* Mobile */
@media (max-width: 768px) {
  .lexx-live-course__schedule {
    padding: 16px;
    overflow-x: auto;
  }

  .lexx-live-course__schedule .row {
    min-width: 500px;
  }

  .lexx-live-course__schedule .col:first-child {
    flex: 0 0 36%;
    max-width: 36%;
  }

  .lexx-live-course__schedule .col:nth-child(2) {
    flex: 0 0 24%;
    max-width: 24%;
  }

  .lexx-live-course__schedule .col:nth-child(3) {
    flex: 0 0 12%;
    max-width: 12%;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Sidebar pricing heading — override _course-single.css values so the visual
   matches live.lexx.com (where .single-pts-course is absent from the body
   class because courses are WP pages there, not a CPT).
   ───────────────────────────────────────────────────────────────────────────── */

/* "Starting at" label */
.single-pts-course .sidebar--pts-course .course--pricing-heading {
  font-size: 1em !important;
  font-weight: 400 !important;
  text-align: center !important;
  color: var(--lexx-text) !important;
  margin: 0.5rem 0 0 !important;
}

/* "$X,XXX" price value */
.single-pts-course .sidebar--pts-course .course--price {
  color: #76ce29 !important;  /* green — matches wp.css / live.lexx.com */
  font-size: 2em !important;
  display: block !important;
  font-weight: 800 !important;
}
