@charset "UTF-8";
/**
 * Roadmap feature styles
 * Roadmap cards, progress tracking, and detail views
 */
/**
 * 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 font-attributes-map and color-map moved to _variables.scss */
.ca-roadmap-card-repeater {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ca-roadmap-card-link {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #333333;
  transition-duration: 0.3s;
  padding: 20px;
  border-radius: 10px;
  justify-content: space-between;
  gap: 4px;
}
.ca-roadmap-card-header {
  display: flex;
  flex-direction: row;
  border: 1px solid #333333;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  width: 100%;
  gap: 10px;
}
.ca-roadmap-card-header-l {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.ca-roadmap-card-header-r {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.ca-roadmap-card-tax-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.ca-roadmap-card-tax-cat-span {
  font-size: 0.75rem;
  font-weight: 300;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 2px 8px;
  background-color: rgba(0, 0, 0, 0.5);
  text-wrap: nowrap;
}
.ca-roadmap-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.ca-roadmap-card-count-box {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.ca-roadmap-card-count-sales {
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid;
  color: #f88080;
  border-color: #f88080;
  text-wrap: nowrap;
}
.ca-roadmap-card-count-review {
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid;
  color: #ffe090;
  border-color: #ffe090;
}
.ca-hr {
  width: 100%;
  height: 1px;
  background-color: #878787;
  border: none;
  margin: 10px 0;
}
.ca-roadmap-card-inner-b {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.ca-card-cat-span, .ca-card-tag-span {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ca-card-cat-span {
  background-color: #3ed48c;
  color: #000;
  border-color: #3ed48c;
}
.ca-card-tag-span {
  background-color: rgba(255, 255, 255, 0.15);
}
.ca-roadmap-card-title {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  word-break: keep-all;
  text-wrap: nowrap;
}
.ca-roadmap-card-tree {
  position: relative;
}
.ca-roadmap-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.ca-roadmap-card-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  width: 2px;
  background-color: #ccc;
  height: calc(100% - 15px);
}
.ca-roadmap-card-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 2px;
  text-align: left;
}
.ca-roadmap-card-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 14px;
  height: 2px;
  background-color: #ccc;
}
.ca-roadmap-card-item-title {
  font-size: 0.875rem;
  color: #d9d9d9;
}
.oxy-gallery-item img {
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
}
.oxy-gallery-item .oxy-gallery-item-contents {
  height: 100%;
}
.ca-vod-tag-span {
  display: inline-block;
  padding: 2px 6px;
  margin: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.875rem;
}
.ca-middle-header.ca-middle-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #181818;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.ca-sidebar {
  transition: all 0.3s ease;
}
.ca-sidebar.ca-sidebar-folded {
  width: 80px;
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .ca-sidebar.ca-sidebar-folded {
    width: auto;
    opacity: 1;
    pointer-events: auto;
  }
}
.ca-content {
  transition: all 0.3s ease;
}
.ca-content.ca-content-folded {
  margin-left: 100px;
}
@media screen and (max-width: 991px) {
  .ca-content.ca-content-folded {
    margin-left: 0;
  }
}
.ca-roadmap-cover-box {
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  display: flex;
  justify-content: center;
}
.ca-roadmap-cover-img-box {
  width: 100%;
  position: relative;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
}
@media screen and (max-width: 1400px) {
  .ca-roadmap-cover-img-box {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .ca-roadmap-cover-img-box {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .ca-roadmap-cover-img-box {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
  }
}
.ca-roadmap-cover-img-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: linear-gradient(to bottom, transparent 70%, #181818), linear-gradient(to left, transparent 70%, #181818), linear-gradient(to right, transparent 70%, #181818);
  background-size: cover;
}
.ca-roadmap-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.ca-roadmap-cover-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ca-roadmap-detail-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .ca-roadmap-detail-box {
    display: flex;
    flex-direction: column;
  }
}
.ca-roadmap-detail-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border-right-color: #878787;
  border-right-width: 1px;
  border-right-style: solid;
  gap: 5px;
}
@media screen and (max-width: 992px) {
  .ca-roadmap-detail-l {
    border-right-style: none;
  }
}
.ca-roadmap-detail-tag-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 5px;
  margin-bottom: 5px;
}
.ca-roadmap-detail-badge-new {
  background-color: #3ed48c;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 50px;
  font-weight: 600;
}
.ca-roadmap-detail-badge-best {
  color: #ffffff;
  background-color: #f88080;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 50px;
  font-weight: 600;
  padding-top: 2px;
  padding-bottom: 2px;
}
.ca-roadmap-detail-info-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}
.ca-roadmap-detail-info-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 90px;
}
.ca-roadmap-detail-info-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ca-roadmap-detail-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.ca-roadmap-start-btn, .ca-roadmap-login-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #111111;
  border: 1px solid #000000;
  border-radius: 10px;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Pretendard";
}
.ca-roadmap-progress-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  background-color: #272727;
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
}
.ca-roadmap-progress-day {
  display: flex;
  background-color: #111111;
  border: 1px solid #000000;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}
.ca-roadmap-progress-bar-box {
  width: 100%;
  background: #222222;
  position: relative;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.ca-roadmap-progress-bar-line {
  background: linear-gradient(90deg, #da002e, #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;
  transition: width 0.3s ease;
}
.ca-roadmap-progress-step-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ca-roadmap-progress-step-item {
  display: flex;
  gap: 5px;
}
.ca-roadmap-progress-step-badge {
  width: fit-content;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
}
.ca-roadmap-progress-step-badge[type="1"] {
  border: 1px solid #3ed48c;
  color: #3ed48c;
}
.ca-roadmap-progress-step-badge[type="2"] {
  border: 1px solid #ffe090;
  color: #ffe090;
}
.ca-roadmap-progress-step-badge[type="3"] {
  border: 1px solid #9fb6ff;
  color: #9fb6ff;
}
.ca-roadmap-progress-step-badge[type="4"] {
  border: 1px solid #f88080;
  color: #f88080;
}
.ca-roadmap-progress-step-title {
  font-size: 0.875rem;
}
.ca-roadmap-progress-step-title:hover {
  text-decoration: underline;
}
.ca-roadmap-progress-step-status {
  background-color: #111111;
  border: 1px solid #000000;
  padding: 2px 2px;
  font-size: 0.875rem;
  border-radius: 4px;
}
.ca-roadmap-progress-step-link {
  cursor: pointer;
  transition: color 0.2s ease;
}
.ca-roadmap-progress-step-link:hover {
  color: #da002e;
}
.ca-roadmap-price-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  background-color: #272727;
  border: 1px solid #d9d9d9;
  gap: 5px;
}
.ca-roadmap-package-title {
  font-size: 1rem;
}
.ca-roadmap-price-info {
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-wrap: nowrap;
  align-items: center;
}
.ca-roadmap-original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.875rem;
}
.ca-roadmap-discounted-price {
  font-weight: bold;
  color: #e44;
  font-size: 0.875rem;
}
.ca-roadmap-discount-badge {
  background-color: #e44;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.875rem;
  text-wrap: nowrap;
}
.ca-roadmap-add-to-cart {
  width: 100%;
  background-color: #111111;
  border: 1px solid #000000;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.ca-roadmap-add-to-cart:hover {
  background-color: #da002e;
  border-color: #da002e;
}
.ca-roadmap-add-to-cart:disabled {
  background-color: #666;
  border-color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}
.ca-roadmap-section-div {
  display: flex;
  padding-bottom: 50px;
  width: 100%;
  padding-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
.ca-roadmap-section-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}
.ca-roadmap-intro-box {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-bottom: 50px;
}
.ca-roadmap-intro-box.expanded {
  max-height: none;
}
.ca-roadmap-intro-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #181818);
  pointer-events: none;
}
.ca-roadmap-intro-expand-btn, .ca-roadmap-intro-fold-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: center;
  background-color: #111111;
  border: 1px solid #000000;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
}
.ca-roadmap-intro-expand-btn {
  display: flex;
}
.ca-roadmap-intro-fold-btn {
  display: none;
}
.ca-roadmap-intro-box.expanded {
  max-height: none;
}
.ca-roadmap-intro-box.expanded .ca-roadmap-intro-overlay {
  display: none;
}
.ca-roadmap-intro-box.expanded .ca-roadmap-intro-expand-btn {
  display: none;
}
.ca-roadmap-intro-box.expanded .ca-roadmap-intro-fold-btn {
  display: flex;
}
.ca-roadmap-timeline {
  position: relative;
  width: 100%;
  margin-top: 100px;
}
.ca-roadmap-timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #707070;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ca-roadmap-timeline-item {
  position: relative;
  width: 50%;
  height: auto;
  margin-top: -50px;
}
.ca-roadmap-timeline-item.left {
  padding-right: 2rem;
}
.ca-roadmap-timeline-item.right {
  padding-left: 2rem;
}
.ca-roadmap-timeline-item:nth-child(even) {
  left: 50%;
}
.ca-roadmap-timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #707070;
}
.ca-roadmap-timeline-item:nth-child(odd)::after {
  right: -10px;
}
.ca-roadmap-timeline-item:nth-child(even)::after {
  left: -10px;
}
.ca-roadmap-timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.ca-roadmap-timeline-item:nth-child(odd)::before {
  right: 1rem;
  border-left: 20px solid #333333;
}
.ca-roadmap-timeline-item:nth-child(even)::before {
  left: 1rem;
  border-right: 20px solid #333333;
}
.ca-roadmap-timeline-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 10px;
  padding: 20px;
  background-color: #333333;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ca-roadmap-timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.ca-roadmap-timeline-content-l {
  display: flex;
  width: 45%;
}
.ca-roadmap-timeline-content-l img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.ca-roadmap-timeline-content-r {
  display: flex;
  flex-direction: column;
  width: 65%;
  gap: 5px;
  padding-bottom: 40px;
}
.ca-roadmap-timeline-badge {
  width: fit-content;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
}
.ca-roadmap-timeline-badge[type="1"] {
  border: 1px solid #3ed48c;
  color: #3ed48c;
}
.ca-roadmap-timeline-badge[type="2"] {
  border: 1px solid #ffe090;
  color: #ffe090;
}
.ca-roadmap-timeline-badge[type="3"] {
  border: 1px solid #9fb6ff;
  color: #9fb6ff;
}
.ca-roadmap-timeline-badge[type="4"] {
  border: 1px solid #f88080;
  color: #f88080;
}
.ca-roadmap-timeline-title {
  font-size: 1rem;
}
.ca-roadmap-timeline-description {
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ca-roadmap-timeline-status {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #111111;
  border-radius: 10px;
  border: 1px solid #000000;
  padding: 2px 10px;
  font-size: 0.875rem;
  font-weight: 400;
}
.ca-roadmap-timeline-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #111111;
  border-radius: 10px;
  border: 1px solid #000000;
  padding: 2px 10px;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .ca-roadmap-timeline::after {
    left: 10px;
  }
  .ca-roadmap-timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 0;
    left: 0;
    height: auto;
    margin-top: 27px;
  }
  .ca-roadmap-timeline-item::before {
    left: 2rem;
    border-right: 20px solid #333333;
    border-left: 0;
  }
  .ca-roadmap-timeline-item::after {
    left: 0px;
    width: 20px;
    height: 20px;
  }
}
.ca-roadmap-teacher-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #333333;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.ca-roadmap-teacher-card:hover {
  transform: scale(1.02);
  background: #404040;
}
.teacher-image {
  flex: 0 0 200px;
  margin-right: 20px;
}
.teacher-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
.teacher-text {
  flex: 1;
}
.teacher-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}
.teacher-text p {
  margin: 0;
  font-size: 0.7rem;
}
/* 반응형 디자인 */
@media (max-width: 480px) {
  .ca-roadmap-teacher-card {
    flex-direction: column;
    align-items: center;
  }
  .teacher-image {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.ca-roadmap-recommendations {
  position: relative;
  height: 300px;
  overflow: hidden;
  perspective: 1000px;
}
.ca-roadmap-target-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: scroll-up 20s linear infinite;
  transform-style: preserve-3d;
}
.ca-roadmap-target-div {
  padding: 15px;
  text-align: center;
  font-size: 16px;
  transform-origin: center;
  font-weight: 500;
  background-color: #333333;
  color: #ffffff;
  width: fit-content;
  border-radius: 10px;
  margin: 5px auto 5px auto;
}
/* 상단과 하단 투명도 그라데이션 */
.ca-roadmap-recommendations::before, .ca-roadmap-recommendations::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}
.ca-roadmap-recommendations::before {
  top: 0;
  background: linear-gradient(to bottom, #f6f6f6 0%, transparent 100%);
}
.ca-roadmap-recommendations::after {
  bottom: 0;
  background: linear-gradient(to top, #f6f6f6 0%, transparent 100%);
}
/* 스크롤 애니메이션 정의 */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.ca-roadmap-program-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 15px;
  width: 100%;
  background-color: #272727;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .ca-roadmap-program-container {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 12px;
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .ca-roadmap-program-container {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
    padding: 15px;
  }
}
.ca-roadmap-program-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-width: 70px;
  padding: 10px;
  background-color: #333333;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.ca-roadmap-program-item:hover {
  transform: translateY(-2px);
  background-color: #404040;
}
.ca-roadmap-program-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .ca-roadmap-program-logo {
    width: 40px;
    height: 40px;
    padding: 3px;
  }
}
.ca-roadmap-program-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .ca-roadmap-program-name {
    font-size: 0.75rem;
  }
}
.ca-roadmap-goals-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 20px;
  background-color: #272727;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
}
.ca-roadmap-goals-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #333333;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.ca-roadmap-goals-item:hover {
  background-color: #404040;
}
.ca-roadmap-goals-icon {
  font-size: 1.2rem;
  color: #3ed48c;
  min-width: 20px;
}
.star-rating .star-outer {
  position: relative;
  display: inline-block;
  margin-right: -5px;
}
.star-rating .star-inner {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  color: #FFC328;
  white-space: nowrap;
  font-variation-settings: "FILL" 1;
}
.star-rating .ca-star-b {
  color: #ddd;
}
.ca-roadmap-timeline-study-details {
  margin: 10px 0;
}
.ca-study-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ca-roadmap-timeline-participants, .ca-roadmap-timeline-duration, .ca-roadmap-timeline-level {
  font-size: 0.875rem;
}
.ca-roadmap-timeline-reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.ca-roadmap-timeline-reviews .ca-study-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.thumb-layout {
  text-decoration: none;
  color: inherit;
  display: block;
}
.thumb-header {
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
.ca-roadmap-thumb-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.ca-roadmap-thumb-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(8px) brightness(0.5);
}
.ca-roadmap-thumb-post-title {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  width: 50%;
  word-break: keep-all;
  line-height: 1.7rem;
  z-index: 3;
}
.ca-roadmap-thumb-program-logo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  z-index: 3;
}
.ca-roadmap-thumb-program-logo-item {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: -10px;
}
.ca-roadmap-thumb-program-logo-item:first-child {
  margin-left: 0;
}
.ca-roadmap-thumb-program-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px;
}
.ca-roadmap-thumb-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ca-roadmap-thumb-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: var(--offset-y, 20px);
  right: var(--offset-x, 10px);
}
.thumb-tax-box {
  padding: 8px 12px;
}
.thumb-tax-box .ca-card-cat-span, .thumb-tax-box .ca-card-tag-span {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.thumb-inner {
  padding: 15px;
  background-color: #252525;
}
.thumb-count-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 20px;
}
.ca-roadmap-card-count-sales {
  font-size: 0.8rem;
  color: #CFCFCF;
  font-weight: 500;
}
.thumb-hr {
  background-color: #4a4a4a;
  margin: 10px 0;
}
.thumb-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
}
.ca-roadmap-repeater-grid {
  display: grid;
  grid-template-columns: repeat(var(--ca-grid-columns, 4), 1fr);
  gap: var(--ca-grid-gap, 20px);
}
@media (max-width: 991px) {
  /* 태블릿 */
  .ca-roadmap-repeater-grid {
    grid-template-columns: repeat(var(--ca-grid-columns-tablet, 3), 1fr);
    gap: var(--ca-grid-gap, 15px);
  }
}
@media (max-width: 767px) {
  /* 모바일 */
  .ca-roadmap-repeater-grid {
    grid-template-columns: repeat(var(--ca-grid-columns-mobile, 2), 1fr);
    gap: var(--ca-grid-gap, 10px);
  }
}
.ca-roadmap-repeater-slide .splide__slide {
  padding: 2px;
}
.ca-roadmap-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.ca-roadmap-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.ca-roadmap-toast.success {
  background: #3ed48c;
  color: #000;
}
.ca-roadmap-toast.error {
  background: #da002e;
}
.ca-roadmap-start-btn:hover, .ca-roadmap-login-btn:hover {
  background-color: #da002e;
  border-color: #da002e;
}
.ca-roadmap-start-btn:active, .ca-roadmap-login-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.ca-roadmap-start-btn:disabled, .ca-roadmap-login-btn:disabled {
  background-color: #666;
  border-color: #666;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}
.ca-roadmap-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #222222;
  border-radius: 8px;
  border: 1px solid #333333;
}
.ca-roadmap-filters-container .program-filter, .ca-roadmap-filters-container .type-filter, .ca-roadmap-filters-container .study-sort, .ca-roadmap-filters-container .search-filter {
  background-color: #333333;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #4d4d4d;
  flex-grow: 1;
  min-width: 280px;
  flex-basis: 100%;
}
.ca-roadmap-filters-container .titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4d4d4d;
}
.ca-roadmap-filters-container .titles h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}
.ca-roadmap-filters-container .titles button {
  background: none;
  border: none;
  color: #da002e;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 2px 5px;
}
.ca-roadmap-filters-container .titles button:hover {
  opacity: 0.8;
}
.ca-roadmap-filters-container .checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ca-roadmap-filters-container .checkboxes label.inline-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #666;
  font-size: 0.875rem;
  color: inherit;
  background-color: #222222;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.ca-roadmap-filters-container .checkboxes label.inline-checkbox:hover {
  border-color: gray;
  background-color: #2f2f2f;
}
.ca-roadmap-filters-container .checkboxes input[type="checkbox"] {
  display: none;
}
.ca-roadmap-filters-container .checkboxes input[type="checkbox"]:checked + label.inline-checkbox {
  background-color: #3ed48c;
  color: #ffffff;
  border-color: #3ed48c;
}
.ca-roadmap-filters-container .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ca-roadmap-filters-container .buttons .sort-button {
  padding: 8px 15px;
  border: 1px solid #484848;
  background-color: #222222;
  color: inherit;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.ca-roadmap-filters-container .buttons .sort-button:hover {
  border-color: #626262;
  background-color: #2f2f2f;
}
.ca-roadmap-filters-container .buttons .sort-button.active {
  background-color: #3ed48c;
  color: #ffffff;
  border-color: #3ed48c;
}
.ca-roadmap-filters-container .search-filter input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #484848;
  background-color: #222222;
  color: inherit;
  border-radius: 4px;
  font-size: 0.875rem;
}
.ca-roadmap-filters-container .search-filter input[type="text"]:focus {
  outline: none;
  border-color: #3ed48c;
  box-shadow: 0 0 0 2px rgba(62, 212, 140, 0.2);
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star-rating .star-outer {
  position: relative;
  display: inline-block;
  margin-right: -4px;
}
.star-rating .star-inner {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  color: #FFC328;
  white-space: nowrap;
  font-variation-settings: "FILL" 1;
}
.star-rating .ca-star-t {
  color: #FFC328;
  font-size: 1rem;
}
.star-rating .ca-star-b {
  color: #ddd;
  font-size: 1rem;
}
.ca-study-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
}
.ca-study-rating .star-rating {
  margin-right: 5px;
}
.ca-study-rating .rating-text {
  color: #ccc;
}
.ca-roadmap-timeline-study-details {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #444;
}
.ca-roadmap-timeline-study-details .ca-study-rating {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 5px;
}
.ca-roadmap-timeline-study-details .ca-roadmap-timeline-participants, .ca-roadmap-timeline-study-details .ca-roadmap-timeline-duration, .ca-roadmap-timeline-study-details .ca-roadmap-timeline-level {
  font-size: 0.875rem;
  margin-bottom: 5px;
  color: #ccc;
}
.ca-roadmap-timeline-study-details .ca-roadmap-timeline-participants strong, .ca-roadmap-timeline-study-details .ca-roadmap-timeline-duration strong, .ca-roadmap-timeline-study-details .ca-roadmap-timeline-level strong {
  color: #fff;
  margin-right: 5px;
}
.ca-roadmap-error {
  background-color: #dc3545;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  font-weight: 500;
}
.ca-roadmap-detail-info-box .material-symbols-rounded {
  font-size: 1.2rem;
  color: #80abd3;
}
.ca-roadmap-progress-box .ca-roadmap-progress-day {
  background: linear-gradient(135deg, #80abd3, #3ed48c);
  color: #000;
  font-weight: 700;
}
.ca-roadmap-progress-box .ca-roadmap-progress-bar-line {
  background: linear-gradient(90deg, #80abd3, #3ed48c);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.ca-roadmap-price-box .ca-roadmap-package-title {
  color: #3ed48c;
  margin-bottom: 10px;
}
.ca-roadmap-price-box .ca-roadmap-discounted-price {
  font-size: 1.1rem;
  font-weight: 700;
}
.ca-roadmap-price-box .ca-roadmap-add-to-cart {
  background: linear-gradient(135deg, #3ed48c, #80abd3);
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease;
}
.ca-roadmap-price-box .ca-roadmap-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 212, 140, 0.3);
}
.ca-roadmap-start-btn, .ca-roadmap-login-btn {
  transition: all 0.3s ease;
}
.ca-roadmap-start-btn:hover, .ca-roadmap-login-btn:hover {
  background: linear-gradient(135deg, #3ed48c, #80abd3);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 212, 140, 0.3);
}
.ca-roadmap-timeline-status {
  transition: all 0.3s ease;
  cursor: default;
}
.ca-roadmap-timeline-status.active {
  background: linear-gradient(135deg, #3ed48c, #80abd3);
  color: #000;
  font-weight: 600;
}
.ca-roadmap-timeline-status.completed {
  background-color: #3ed48c;
  color: #000;
  font-weight: 600;
}
.ca-roadmap-timeline-status.in-progress {
  background-color: #ffe090;
  color: #333;
  font-weight: 600;
}
.ca-roadmap-timeline-status.locked {
  background-color: #666;
  color: #999;
  opacity: 0.7;
}
.ca-roadmap-timeline-link {
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.ca-roadmap-timeline-link:hover {
  background: linear-gradient(135deg, #3ed48c, #80abd3);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(62, 212, 140, 0.3);
}
.ca-roadmap-teacher-card {
  transition: transform 0.3s ease;
}
.ca-roadmap-teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.ca-roadmap-teacher-card .teacher-text h3 {
  color: #3ed48c;
}
.ca-roadmap-teacher-card .teacher-text p {
  color: #ccc;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .ca-roadmap-detail-box {
    gap: 20px;
  }
  .ca-roadmap-timeline-content {
    flex-direction: column;
  }
  .ca-roadmap-timeline-content .ca-roadmap-timeline-content-l {
    width: 100%;
    max-height: 200px;
  }
  .ca-roadmap-timeline-content .ca-roadmap-timeline-content-l img {
    max-height: 200px;
    object-fit: cover;
  }
  .ca-roadmap-timeline-content .ca-roadmap-timeline-content-r {
    width: 100%;
    padding-bottom: 20px;
  }
  .ca-roadmap-timeline-status, .ca-roadmap-timeline-link {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 10px;
    display: inline-block;
  }
  .ca-roadmap-program-container {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
    padding: 15px;
  }
  .ca-roadmap-program-item {
    width: 60px;
  }
  .ca-roadmap-program-item .ca-roadmap-program-logo {
    width: 50%;
    height: 50%;
  }
  .ca-roadmap-program-item .ca-roadmap-program-name {
    font-size: 0.75rem;
  }
  .ca-roadmap-goals-container {
    padding: 15px;
    gap: 10px;
  }
  .ca-roadmap-goals-item {
    padding: 8px;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .ca-roadmap-teacher-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ca-roadmap-teacher-card .teacher-image {
    margin-right: 0;
    margin-bottom: 15px;
    flex: 0 0 150px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ca-roadmap-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.ca-roadmap-loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid #333;
  border-top: 3px solid #3ed48c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ca-warning-box {
  background-color: #2c2c2c;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.ca-warning-box h2 {
  color: #ff6b6b;
  margin: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.ca-roadmap-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.ca-roadmap-card-link:hover .ca-roadmap-card-title {
  color: #3ed48c;
}
.ca-roadmap-card-link:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
.ca-roadmap-timeline-item {
  animation: fadeIn 0.6s ease-out;
  animation-fill-mode: both;
}
.ca-roadmap-timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.ca-roadmap-timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.ca-roadmap-timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.ca-roadmap-timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.ca-roadmap-timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.ca-roadmap-program-item {
  animation: slideIn 0.5s ease-out;
  animation-fill-mode: both;
}
.ca-roadmap-program-item:nth-child(1) {
  animation-delay: 0.1s;
}
.ca-roadmap-program-item:nth-child(2) {
  animation-delay: 0.15s;
}
.ca-roadmap-program-item:nth-child(3) {
  animation-delay: 0.2s;
}
.ca-roadmap-program-item:nth-child(4) {
  animation-delay: 0.25s;
}
.ca-roadmap-program-item:nth-child(5) {
  animation-delay: 0.3s;
}
.ca-roadmap-program-item:nth-child(6) {
  animation-delay: 0.35s;
}
.ca-roadmap-goals-item {
  animation: fadeIn 0.4s ease-out;
  animation-fill-mode: both;
}
.ca-roadmap-goals-item:nth-child(1) {
  animation-delay: 0.1s;
}
.ca-roadmap-goals-item:nth-child(2) {
  animation-delay: 0.2s;
}
.ca-roadmap-goals-item:nth-child(3) {
  animation-delay: 0.3s;
}
.ca-roadmap-goals-item:nth-child(4) {
  animation-delay: 0.4s;
}
.ca-roadmap-content-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}
.ca-roadmap-content-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 2px solid transparent;
  border-top: 2px solid #3ed48c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1000;
}
.ca-roadmap-error-state {
  background-color: #2c1a1a;
  border: 1px solid #8b2635;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.ca-roadmap-error-state .error-icon {
  font-size: 2rem;
  color: #da002e;
  margin-bottom: 10px;
}
.ca-roadmap-error-state .error-message {
  color: #ff6b6b;
  font-weight: 500;
  margin-bottom: 15px;
}
.ca-roadmap-error-state .retry-button {
  background-color: #da002e;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.ca-roadmap-error-state .retry-button:hover {
  background-color: #c5002a;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  .ca-roadmap-timeline-item, .ca-roadmap-program-item, .ca-roadmap-goals-item {
    animation: none;
  }
}
