@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%;
}
.ca-course-button-container .ca-course-button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.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: 0 0 auto;
}
.ca-course-button-container .ca-course-button-row .ca-course-buttons-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 480px) {
  .ca-course-button-container .ca-course-button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .ca-course-button-container .ca-course-button-row .ca-course-buttons-left, .ca-course-button-container .ca-course-button-row .ca-course-buttons-right {
    flex: 1;
    width: 100%;
    justify-content: center;
  }
}
.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: #181818;
  position: relative;
  height: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(62, 212, 140, 0.2);
}
.progress-bar {
  background: linear-gradient(90deg, #3ed48c, #53d998);
  min-width: 40px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(62, 212, 140, 0.4);
}
.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.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .course-expire-date {
    font-size: 0.7rem;
  }
}
/* 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: 8px 20px;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.learn-review-button:hover {
  background-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.learn-review-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .learn-review-button {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}
.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;
}
/* Legacy LMS classes from converted-styles.scss */
.learn-class-repeater {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .learn-class-repeater {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .learn-class-repeater {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.learn-class-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background-color: #222222;
  border: 1px solid #3ed48c;
  border-radius: 12px;
  align-items: stretch;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.learn-class-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .learn-class-box {
    padding: 15px;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .learn-class-box {
    flex-direction: column;
    gap: 15px;
  }
}
.learn-class-l {
  width: 30%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 480px) {
  .learn-class-l {
    width: 100%;
    min-width: unset;
  }
}
.learn-class-r {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.learn-class-r > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 10px;
}
.learn-class-r > div:last-child {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.learn-class-r a.ca-subtitle-5 {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  display: block;
}
.learn-class-r a.ca-subtitle-5:hover {
  color: #3ed48c;
}
.learn-class-r a.ca-subtitle-5 span {
  display: block;
  word-break: keep-all;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .learn-class-r {
    width: 100%;
  }
}
.learn-class-img {
  width: 100%;
  height: 140px;
  max-height: 140px;
  object-fit: cover;
  border-radius: 10px;
  background-color: #333333;
}
@media (max-width: 480px) {
  .learn-class-img {
    height: 200px;
    max-height: 200px;
  }
}
.learn-review-modal-title {
  color: #000000;
  font-size: 1.25rem;
}
.lessons-div {
  width: 100%;
  background-color: #f6f6f6;
  flex-direction: row;
  display: flex;
  align-items: stretch;
  height: 100vh;
}
@media (max-width: 992px) {
  .lessons-div {
    flex-direction: column;
    display: flex;
    flex-reverse: reverse;
  }
}
.lessons-l {
  flex: 1;
  background-color: #000000;
}
@media (max-width: 992px) {
  .lessons-l {
    width: 100%;
  }
}
.lessons-c {
  padding: 20;
  width: 400;
  display: none;
}
@media (max-width: 992px) {
  .lessons-c {
    width: 100%;
  }
}
.lessons-r {
  width: 80px;
  background-color: #da002e;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .lessons-r {
    width: 100%;
    padding-right: 20;
    padding-left: 20;
  }
}
.lessons-l-t {
  padding: 20;
  width: 100%;
  background-color: #272727;
}
.lessons-l-m {
  padding: 20;
  width: 100%;
}
.lesson-r-icon-box {
  padding: 10;
  flex-direction: column;
  display: flex;
  width: 100%;
}
.lesson-r-box-icon {
  cursor: pointer;
  icon-color: #3ed48c;
  icon-size: 25;
  icon-style: 2;
  icon-background-color: #f6f6f6;
  icon-padding: 8;
}
.lesson-r-box {
  flex-direction: column;
  display: flex;
  width: 100%;
  padding-top: 10;
  padding-bottom: 10;
  align-items: center;
  justify-content: center;
  gap: 5;
}
.lessons-r-box-icon {
  cursor: pointer;
  icon-color: #3ed48c;
  icon-size: 25;
  icon-style: 2;
  icon-background-color: #f6f6f6;
  icon-padding: 8;
}
.lessons-r-box {
  flex-direction: column;
  display: flex;
  padding-top: 10;
  padding-bottom: 10;
  align-items: center;
  justify-content: center;
  gap: 5;
  width: 100%;
}
@media (max-width: 992px) {
  .lessons-r-box {
    width: 60px;
    padding-top: 5;
    padding-bottom: 5;
  }
}
