@charset "UTF-8";
/**
 * LMS styles
 * Learning Management System components
 */
/**
 * Design tokens for ca-custom plugin
 * Based on .example/script/_variables.scss structure
 * 
 * Centralized variables to eliminate duplication across SCSS files
 */
/**
 * Color System
 * Migrated from $color-map found in all feature files
 * Maintains backward compatibility with numbered system
 */
/**
 * Semantic color aliases for better maintainability
 */
/**
 * Typography System
 * Migrated from $font-attributes-map
 */
/**
 * Font Sizes - Title
 */
/**
 * Font Sizes - Subtitle
 */
/**
 * Font Sizes - Text
 */
/**
 * Font Sizes - Caption
 */
/**
 * Font Weights
 */
/**
 * Font Weights - Title
 */
/**
 * Font Weights - Subtitle
 */
/**
 * Font Weights - Text
 */
/**
 * Font Weights - Caption
 */
/**
 * Line Heights
 */
/**
 * Responsive Font Sizes
 * Base font sizes for root element
 */
/**
 * Spacing Scale
 * Base unit: 8px for consistency
 */
/**
 * Legacy spacing aliases
 */
/**
 * Borders
 */
/**
 * Z-index Scale
 */
/**
 * Breakpoints
 */
/**
 * Legacy breakpoint aliases
 */
/**
 * Container Widths
 */
/**
 * Shadows
 */
/**
 * Transitions
 */
/**
 * Common transitions
 */
/**
 * WordPress Admin Sidebar
 */
/**
 * Font attributes map for backward compatibility
 * Used by front-default.scss to generate utility classes
 */
/**
 * Reusable mixins for ca-custom plugin
 * Based on .example/script/_mixins.scss patterns
 * 
 * Common patterns and utilities for consistent styling
 */
/**
 * Responsive breakpoint mixins
 * Mobile-first approach with multiple breakpoints
 */
/**
 * Legacy responsive mixins for backward compatibility
 */
/**
 * Named breakpoint mixins
 */
/**
 * Flexbox utilities
 */
/**
 * Grid Layout Mixins
 */
/**
 * Button Mixins
 */
/**
 * Card Component Mixins
 */
/**
 * Form Control Mixins
 */
/**
 * Text Utilities
 */
/**
 * Position Utilities
 */
/**
 * Aspect Ratio Mixins
 */
/**
 * Scrollbar Styling
 */
/**
 * Loading States
 */
@keyframes ca-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Overlay Mixins
 */
/**
 * Animation Mixins
 */
@keyframes ca-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * Utility Mixins
 */
/**
 * Container Mixins
 */
/**
 * WordPress Specific Mixins
 */
/* Previous color-map moved to _variables.scss */
.ca-course-button-container {
  width: 100%;
  margin-top: 10px;
}
.ca-course-button-container .ca-course-button-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ca-course-button-container .ca-course-button-row .ca-course-start-button-wrapper {
  width: auto;
}
.ca-course-button-container .ca-course-button-row .ca-course-start-button-wrapper form {
  margin: 0;
}
.ca-course-button-container .ca-course-button-row .ca-course-buttons-left {
  flex: 1;
}
.ca-learn-class-repeater {
  display: grid;
  grid-column-count: 3;
  grid-column-min-width: 50px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (max-width: 992px) {
  .ca-learn-class-repeater {
    grid-column-count: 2;
  }
}
@media (max-width: 768px) {
  .ca-learn-class-repeater {
    grid-column-count: 2;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
@media (max-width: 480px) {
  .ca-learn-class-repeater {
    grid-column-count: 1;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.ca-learn-class-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f6f6f6;
  padding: 15px;
  align-items: stretch;
  text-align: justify;
  border: 1px solid #3ed48c;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ca-learn-class-box {
    padding: 10px;
  }
}
.ca-learn-class-l {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ca-learn-class-l .ca-learn-class-img {
  width: 100%;
  height: 140px;
  max-height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
.ca-learn-class-r {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.progress-container {
  width: 100%;
  background: #222222;
  position: relative;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.progress-bar {
  background: #3ed48c;
  min-width: 30px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  color: #ffffff;
  font-size: 0.875rem;
  white-space: nowrap;
}
.learn-review-modal .learn-review-modal-title {
  font-size: 1.25rem;
  color: #333333;
  margin-bottom: 20px;
  font-weight: bold;
}
.course-expire-date {
  font-size: 0.875rem;
  color: #ffffff;
  margin-top: 0.5rem;
}
/* ca-lesson-page.php & ca-course-page.php 에서 마이그레이션 및 병합된 스타일 */
.ca-lesson-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.ca-lesson-header {
  display: flex;
  align-items: stretch;
  height: 60px;
  background-color: #222222;
  color: #ffffff;
  width: 100%;
}
.ca-lesson-header-l {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: row;
}
.ca-lesson-header-r {
  display: flex;
  align-items: center;
}
.ca-lesson-header-div {
  padding: 10px;
  height: 60px;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ca-lesson-header-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.ca-lesson-header-icon {
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  padding: 5px;
  border-radius: 5px;
}
.ca-lesson-header-icon:hover {
  background-color: #f6f6f6;
}
.ca-lesson-menu-btn {
  cursor: pointer;
  display: none;
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  color: #ffffff;
  padding: 5px;
  border-radius: 5px;
}
.ca-lesson-menu-btn:hover {
  background-color: #f6f6f6;
}
.ca-lesson-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #222222;
  align-items: stretch;
  min-height: calc(100vh - 60px);
}
@media (max-width: 992px) {
  .ca-lesson-content {
    flex-direction: column;
  }
}
.ca-lesson-content-inner {
  flex: 1;
  padding: 20px;
  background-color: #181818;
  color: #ffffff;
}
.ca-lesson-content-inner-player {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1.7777777778;
  margin-left: auto;
  margin-right: auto;
}
.ca-lesson-content-inner-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ca-lesson-content-inner-below {
  width: 100%;
  padding: 20px;
}
.ca-lesson-content-inner-below .ca-p-28 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}
.ca-lesson-content-sidebar {
  width: 400px;
  background-color: #222222;
  padding: 20px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  color: #ffffff;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.ca-lesson-content-sidebar .ca-p-16 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.ca-lesson-content-sidebar .lessons-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ca-lesson-content-sidebar .lesson-card {
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.ca-lesson-content-sidebar .lesson-card:hover {
  background-color: #333333;
}
.ca-lesson-content-sidebar .lesson-card.lesson-card-current {
  background-color: #f6f6f6;
}
.ca-lesson-content-sidebar .lesson-card.lesson-card-current .lesson-title {
  color: #333333;
}
.ca-lesson-content-sidebar .lesson-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.ca-lesson-content-sidebar .lesson-icon, .ca-lesson-content-sidebar .lesson-icon-completed {
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  color: #ffffff;
}
.ca-lesson-content-sidebar .lesson-icon-completed {
  font-variation-settings: "FILL" 1;
  color: #3ed48c;
}
.ca-lesson-content-sidebar .lesson-title {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .ca-lesson-content-sidebar {
    width: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 1000;
    height: calc(100vh - 60px);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .ca-lesson-content-sidebar.open {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .ca-lesson-header-link span:not(.ca-lesson-header-icon) {
    display: none;
  }
  .ca-lesson-header-link {
    margin-right: 10px;
  }
  .ca-lesson-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.ca-course-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ca-course-header {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: #222222;
  border-radius: 10px;
}
.ca-course-header-div {
  padding: 10px;
  height: 60px;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ca-course-header-link {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.ca-course-header-icon {
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  padding: 5px;
  border-radius: 5px;
}
.ca-course-header-icon:hover {
  background-color: #f6f6f6;
}
.ca-course-header-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.ca-course-header-meta .ca-title-3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: #ffffff;
}
.ca-course-header-meta .course-expire-date {
  color: #ffffff;
}
.ca-course-lessons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(50px, auto);
}
@media (max-width: 768px) {
  .ca-course-lessons-list {
    grid-template-columns: 1fr;
  }
}
.ca-course-lesson-card {
  border: 1px solid #d9d9d9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.ca-course-lesson-link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  align-items: center;
}
.ca-course-lesson-title {
  margin: 0;
  font-size: 18px;
}
.ld-materials-content a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #3ed48c;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.ld-materials-content a:hover {
  background-color: #29b672;
}
.btn.start-the-course {
  font-family: Inherit;
  font-size: 0.875rem;
  padding: 5px 20px;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  background-color: #3ed48c;
}
.btn.start-the-course:hover {
  background-color: #29b672;
}
.learn-review-button {
  font-family: Inherit;
  font-size: 0.875rem;
  background-color: #707070;
  padding: 5px 20px;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  border: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.learn-review-button:hover {
  background-color: #333333;
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}
.ca-p-16 {
  font-size: 1rem;
}
.ca-p-28 {
  font-size: 1.75rem;
}
.ca-section-layout {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  max-width: 1400px;
  flex-direction: row;
  align-items: center;
}
.ca-column-section-layout {
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.ca-block-section-zeropadding {
  padding: 0 !important;
  display: flex;
  width: 100%;
}
.ca-headline {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 700;
}
