/* =====================================================
   Stellar LMS — Frontend Styles
   Matching the warm cream + orange accent aesthetic
   ===================================================== */

:root {
    --slms-bg:          #F5F0EA;
    --slms-bg-card:     #FFFFFF;
    --slms-orange:      #E05C2A;
    --slms-orange-dark: #C44B1F;
    --slms-text:        #1A1A1A;
    --slms-text-muted:  #666666;
    --slms-text-light:  #999999;
    --slms-border:      #E8E3DC;
    --slms-shadow:      0 2px 12px rgba(0,0,0,0.08);
    --slms-shadow-hover:0 8px 32px rgba(0,0,0,0.14);
    --slms-radius:      12px;
    --slms-radius-sm:   6px;
    --slms-font-display:'Georgia', 'Times New Roman', serif;
    --slms-font-body:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --slms-transition:  0.22s ease;
}

/* ---- Reset & Base ---- */
.stellar-hero,
.stellar-courses-section,
.stellar-single-course,
.stellar-lesson-wrap,
.stellar-my-courses {
    font-family: var(--slms-font-body);
    color: var(--slms-text);
    box-sizing: border-box;
}

*, *::before, *::after { box-sizing: inherit; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.stellar-hero {
    background: var(--slms-bg);
    padding: 60px 0 0;
}

.stellar-hero-content {
    max-width: 800px;
    padding: 0 24px;
}

.stellar-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slms-orange);
    margin: 0 0 16px;
}

.stellar-hero-title {
    font-family: var(--slms-font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--slms-text);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.stellar-hero-divider {
    width: 52px;
    height: 4px;
    background: var(--slms-orange);
    border-radius: 2px;
    margin: 16px 0 24px;
}

.stellar-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slms-text-muted);
    margin: 0 0 40px;
    max-width: 580px;
}

/* Stats Bar */
.stellar-hero-stats-wrap {
    border-top: 1px solid var(--slms-border);
    margin-top: 20px;
    padding: 28px 0;
}

.stellar-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 24px;
}

.stellar-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stellar-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--slms-text);
    line-height: 1;
}

.stellar-stat-number .stellar-stat-star {
    color: var(--slms-orange);
    font-size: 20px;
}

/* Orange "K+" highlight */
.stellar-stat:first-child .stellar-stat-number {
    color: var(--slms-text);
}

.stellar-stat-number span.highlight,
.stellar-stat:first-child .stellar-stat-number::after {
    color: var(--slms-orange);
}

.stellar-stat-label {
    font-size: 13px;
    color: var(--slms-text-muted);
}

/* =====================================================
   COURSES GRID SECTION
   ===================================================== */
.stellar-courses-section {
    background: var(--slms-bg);
    padding: 48px 24px;
}

.stellar-section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slms-orange);
    margin: 0 0 10px;
}

.stellar-section-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.stellar-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--slms-text);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.stellar-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stellar-filter-btn {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--slms-border);
    background: transparent;
    font-size: 13px;
    color: var(--slms-text-muted);
    cursor: pointer;
    transition: var(--slms-transition);
    font-family: var(--slms-font-body);
}

.stellar-filter-btn:hover,
.stellar-filter-btn.active {
    background: var(--slms-orange);
    border-color: var(--slms-orange);
    color: #fff;
}

.stellar-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--slms-text);
    text-decoration: none;
    white-space: nowrap;
    margin-left: auto;
}

.stellar-view-all:hover {
    color: var(--slms-orange);
}

/* Search */
.stellar-search-wrap {
    margin-bottom: 28px;
}

.stellar-search-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 16px;
    border: 1px solid var(--slms-border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--slms-bg-card);
    color: var(--slms-text);
    transition: var(--slms-transition);
    font-family: var(--slms-font-body);
}

.stellar-search-input:focus {
    outline: none;
    border-color: var(--slms-orange);
    box-shadow: 0 0 0 3px rgba(224,92,42,0.12);
}

/* Grid */
.stellar-courses-grid {
    display: grid;
    gap: 24px;
}

.stellar-grid-cols-1 { grid-template-columns: 1fr; }
.stellar-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.stellar-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.stellar-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* =====================================================
   COURSE CARD
   ===================================================== */
.stellar-course-card {
    background: var(--slms-bg-card);
    border-radius: var(--slms-radius);
    overflow: hidden;
    box-shadow: var(--slms-shadow);
    transition: box-shadow var(--slms-transition), transform var(--slms-transition);
    display: flex;
    flex-direction: column;
}

.stellar-course-card:hover {
    box-shadow: var(--slms-shadow-hover);
    transform: translateY(-3px);
}

/* Thumbnail */
.stellar-card-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ddd;
}

.stellar-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.stellar-course-card:hover .stellar-card-thumbnail img {
    transform: scale(1.04);
}

.stellar-card-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8e6c9 0%, #4caf50 100%);
}

/* Format Badge (top-right pill) */
.stellar-format-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.stellar-format-badge.format-badge--recorded {
    background: rgba(30,30,30,0.85);
    color: #fff;
}

.stellar-format-badge.format-badge--live {
    background: var(--slms-orange);
    color: #fff;
}

/* Course badge (bottom-left) */
.stellar-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.stellar-badge--bestseller { background: #f3c13a; color: #222; }
.stellar-badge--new        { background: #27ae60; color: #fff; }
.stellar-badge--hot        { background: #e74c3c; color: #fff; }
.stellar-badge--ongoing    { background: var(--slms-orange); color: #fff; }

/* Card Body */
.stellar-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stellar-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.stellar-card-category {
    color: var(--slms-orange);
    font-weight: 600;
}

.stellar-card-sep {
    color: var(--slms-text-light);
}

.stellar-card-format-text {
    color: var(--slms-text-muted);
}

.stellar-card-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    color: var(--slms-text);
}

.stellar-card-title a {
    text-decoration: none;
    color: inherit;
}

.stellar-card-title a:hover {
    color: var(--slms-orange);
}

.stellar-card-excerpt {
    font-size: 14px;
    color: var(--slms-text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.stellar-card-info {
    font-size: 13px;
    color: var(--slms-text-muted);
}

.stellar-card-clock {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stellar-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.stellar-star { color: var(--slms-orange); }

/* Progress bar */
.stellar-progress-wrap { display: flex; align-items: center; gap: 10px; }
.stellar-progress-bar {
    flex: 1;
    height: 6px;
    background: var(--slms-border);
    border-radius: 3px;
    overflow: hidden;
}
.stellar-progress-bar--large { height: 8px; }
.stellar-progress-fill {
    height: 100%;
    background: var(--slms-orange);
    border-radius: 3px;
    transition: width 0.5s ease;
}
.stellar-progress-text { font-size: 12px; color: var(--slms-text-muted); white-space: nowrap; }

/* Card Footer */
.stellar-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--slms-border);
    margin-top: auto;
    flex-wrap: wrap;
}

.stellar-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.stellar-price-original {
    font-size: 13px;
    color: var(--slms-text-light);
    text-decoration: line-through;
}

.stellar-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--slms-text);
}

.stellar-price small { font-size: 12px; font-weight: 400; }

.stellar-price--free {
    color: var(--slms-orange);
}

.stellar-discount {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    background: #FFF3D0;
    padding: 2px 8px;
    border-radius: 4px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.stellar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--slms-transition);
    text-decoration: none;
    border: none;
    font-family: var(--slms-font-body);
    white-space: nowrap;
}

.stellar-btn--enroll {
    background: var(--slms-orange);
    color: #fff;
}

.stellar-btn--enroll:hover {
    background: var(--slms-orange-dark);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.stellar-btn--enrolled {
    background: #222;
    color: #fff;
}

.stellar-btn--enrolled:hover {
    background: #444;
    color: #fff;
    text-decoration: none;
}

.stellar-btn--complete {
    background: transparent;
    border: 2px solid var(--slms-orange);
    color: var(--slms-orange);
    padding: 8px 20px;
}

.stellar-btn--complete:hover {
    background: var(--slms-orange);
    color: #fff;
}

.stellar-btn--large {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
}

.stellar-btn:disabled,
.stellar-btn.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =====================================================
   SINGLE COURSE PAGE
   ===================================================== */
.stellar-single-course {
    background: var(--slms-bg);
}

.stellar-course-hero {
    background: var(--slms-bg);
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.stellar-breadcrumb-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slms-orange);
    margin-bottom: 12px;
}

.stellar-course-hero-title {
    font-family: var(--slms-font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--slms-text);
}

.stellar-course-hero-excerpt {
    font-size: 16px;
    color: var(--slms-text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.stellar-course-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.stellar-rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: var(--slms-text);
}

.stellar-enrolled-count, .stellar-instructor-by {
    color: var(--slms-text-muted);
}

.stellar-course-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--slms-text-muted);
}

.stellar-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Sidebar card */
.stellar-course-sidebar-card {
    background: var(--slms-bg-card);
    border-radius: var(--slms-radius);
    box-shadow: var(--slms-shadow);
    overflow: hidden;
    position: sticky;
    top: 24px;
}

.stellar-sidebar-thumbnail img {
    width: 100%;
    display: block;
}

.stellar-sidebar-pricing {
    padding: 20px 20px 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.stellar-sidebar-original-price {
    font-size: 14px;
    color: var(--slms-text-light);
    text-decoration: line-through;
}

.stellar-sidebar-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--slms-text);
}

.stellar-sidebar-price small { font-size: 14px; font-weight: 400; }

.stellar-sidebar-discount {
    font-size: 13px;
    font-weight: 700;
    background: #FFF3D0;
    color: #222;
    padding: 3px 8px;
    border-radius: 4px;
}

.stellar-course-sidebar-card .stellar-btn--large {
    margin: 12px 20px;
    width: calc(100% - 40px);
}

.stellar-sidebar-includes {
    list-style: none;
    padding: 16px 20px 20px;
    margin: 0;
    border-top: 1px solid var(--slms-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stellar-sidebar-includes li {
    font-size: 14px;
    color: var(--slms-text-muted);
}

.stellar-enrolled-progress {
    padding: 20px 20px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stellar-enrolled-label {
    font-weight: 700;
    margin: 0;
    font-size: 14px;
}

.stellar-progress-percent {
    font-size: 13px;
    color: var(--slms-text-muted);
}

/* Curriculum section */
.stellar-curriculum-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.stellar-curriculum-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 24px;
}

.stellar-section-block {
    border: 1px solid var(--slms-border);
    border-radius: var(--slms-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.stellar-section-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f5f0;
    cursor: pointer;
    user-select: none;
}

.stellar-section-toggle {
    font-size: 12px;
    color: var(--slms-text-muted);
    transition: transform 0.2s;
}

.stellar-section-block.is-collapsed .stellar-section-toggle {
    transform: rotate(-90deg);
}

.stellar-section-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.stellar-section-count {
    font-size: 13px;
    color: var(--slms-text-muted);
}

.stellar-lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stellar-lesson-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-top: 1px solid var(--slms-border);
    font-size: 14px;
    transition: background var(--slms-transition);
}

.stellar-lesson-item:hover {
    background: #faf8f5;
}

.stellar-lesson-item.is-completed .stellar-lesson-icon {
    color: var(--slms-orange);
    font-weight: 700;
}

.stellar-lesson-icon {
    font-size: 13px;
    color: var(--slms-text-muted);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.stellar-lesson-link { text-decoration: none; color: var(--slms-text); flex: 1; }
.stellar-lesson-link:hover { color: var(--slms-orange); }
.stellar-lesson-locked { color: var(--slms-text-muted); flex: 1; }

.stellar-lesson-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.stellar-preview-badge {
    font-size: 11px;
    color: var(--slms-orange);
    border: 1px solid var(--slms-orange);
    padding: 1px 6px;
    border-radius: 10px;
}

.stellar-lesson-duration {
    font-size: 12px;
    color: var(--slms-text-muted);
}

/* =====================================================
   SINGLE LESSON PAGE
   ===================================================== */
.stellar-lesson-wrap {
    background: #fff;
    min-height: 100vh;
}

.stellar-lesson-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    min-height: 100vh;
    align-items: start;
}

.stellar-lesson-main {
    padding: 0;
}

/* Video */
.stellar-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.stellar-video-container iframe,
.stellar-video-container video {
    width: 100%;
    height: 100%;
    display: block;
}

.stellar-lesson-content-area {
    padding: 28px 32px;
}

.stellar-lesson-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.stellar-lesson-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    flex: 1;
}

.stellar-lesson-duration-badge {
    font-size: 13px;
    color: var(--slms-text-muted);
    background: var(--slms-bg);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.stellar-lesson-course-link a {
    font-size: 13px;
    color: var(--slms-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stellar-lesson-course-link a:hover { color: var(--slms-orange); }

.stellar-lesson-body {
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--slms-text);
}

.stellar-lesson-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--slms-border);
}

.stellar-lesson-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--slms-text-muted);
}

.stellar-lesson-progress .stellar-progress-bar { flex: 1; }

.stellar-completed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #27ae60;
    padding: 8px 16px;
    background: #eafaf1;
    border-radius: 20px;
    align-self: flex-start;
}

/* Lesson Sidebar */
.stellar-lesson-sidebar {
    border-left: 1px solid var(--slms-border);
    height: 100%;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
}

.stellar-sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--slms-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--slms-bg);
    position: sticky;
    top: 0;
}

.stellar-sidebar-header h4 { margin: 0; font-size: 15px; font-weight: 700; }
.stellar-sidebar-progress { font-size: 12px; color: var(--slms-text-muted); }

.stellar-sidebar-nav { padding: 0; }

.stellar-sidebar-section { border-bottom: 1px solid var(--slms-border); }

.stellar-sidebar-section-title {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    background: #faf8f5;
    display: flex;
    justify-content: space-between;
}

.stellar-sidebar-section-title small {
    color: var(--slms-text-muted);
    font-weight: 400;
}

.stellar-sidebar-lesson {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--slms-border);
    font-size: 13px;
    cursor: pointer;
    transition: background var(--slms-transition);
}

.stellar-sidebar-lesson:hover { background: #faf8f5; }

.stellar-sidebar-lesson.is-active {
    background: #fff3ee;
    border-left: 3px solid var(--slms-orange);
}

.stellar-sidebar-lesson.is-completed .stellar-sidebar-lesson-icon {
    color: var(--slms-orange);
}

.stellar-sidebar-lesson-icon {
    font-size: 11px;
    color: var(--slms-text-light);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.stellar-sidebar-lesson-title {
    flex: 1;
    text-decoration: none;
    color: var(--slms-text);
    font-size: 13px;
    line-height: 1.4;
}

.stellar-sidebar-lesson-title:hover { color: var(--slms-orange); }
.stellar-sidebar-lesson--locked { color: var(--slms-text-muted); cursor: default; }

.stellar-sidebar-lesson-dur {
    color: var(--slms-text-light);
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =====================================================
   MY COURSES
   ===================================================== */
.stellar-my-courses { padding: 40px 24px; }

.stellar-my-courses-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 28px;
}

.stellar-empty-state {
    text-align: center;
    padding: 60px 24px;
}

.stellar-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stellar-empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.stellar-empty-state p {
    color: var(--slms-text-muted);
    margin: 0 0 24px;
}

/* =====================================================
   ACCESS DENIED / NOTICES
   ===================================================== */
.stellar-access-denied {
    max-width: 480px;
    margin: 60px auto;
    text-align: center;
    padding: 40px;
    background: var(--slms-bg-card);
    border-radius: var(--slms-radius);
    box-shadow: var(--slms-shadow);
}

.stellar-notice {
    padding: 16px;
    background: #fff3ee;
    border-left: 4px solid var(--slms-orange);
    border-radius: var(--slms-radius-sm);
    font-size: 14px;
}

.stellar-no-courses {
    color: var(--slms-text-muted);
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .stellar-course-hero {
        grid-template-columns: 1fr;
    }
    .stellar-course-sidebar-card {
        position: static;
    }
    .stellar-lesson-layout {
        grid-template-columns: 1fr;
    }
    .stellar-lesson-sidebar {
        border-left: none;
        border-top: 1px solid var(--slms-border);
        position: static;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .stellar-grid-cols-3,
    .stellar-grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stellar-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .stellar-view-all { margin-left: 0; }
    .stellar-hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
    .stellar-grid-cols-2,
    .stellar-grid-cols-3,
    .stellar-grid-cols-4 {
        grid-template-columns: 1fr;
    }
    .stellar-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .stellar-btn--enroll,
    .stellar-btn--enrolled {
        width: 100%;
    }
}
