@charset "UTF-8";
/**
 * Study styles
 * Study-related components and layouts
 */
/**
 * Design tokens for ca-custom plugin
 * Based on .example/script/_variables.scss structure
 * 
 * Centralized variables to eliminate duplication across SCSS files
 */
/**
 * 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
 */
/**
 * Apply theme CSS custom properties
 * Usage: @include theme-vars;
 */
/**
 * Theme-aware property mixin
 * Usage: @include themed(background-color, "bg-primary");
 */
/**
 * Quick theme background
 */
/**
 * Quick theme text color
 */
/**
 * Quick theme border
 */
/* Previous color-map moved to _variables.scss */
/* 원래 가격: 취소선 */
.ca-study-price-original {
  text-decoration: line-through;
  color: #707070;
  margin-right: 5px;
  font-size: 0.875rem;
}
/* 할인된 최종 가격: 강조 색상 */
.ca-study-price-final {
  color: #da002e;
  font-weight: bold;
  margin-right: 5px;
  font-size: 1.1rem;
}
/* 기존 할인 가격 클래스 (하위 호환) */
.ca-study-price-discounted {
  margin-right: 5px;
  font-size: 0.875rem;
}
/* 할인 금액: 빨간색 강조 */
.ca-study-price-discount-amount {
  background-color: #da002e;
  color: #ffffff;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.875rem;
  text-wrap: nowrap;
}
/* 스터디 리피터 그리드 스타일 */
.ca-study-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-study-repeater-grid {
    grid-template-columns: repeat(var(--ca-grid-columns-tablet, 3), 1fr);
    gap: calc(var(--ca-grid-gap, 20px) / 1.5);
  }
}
@media (max-width: 767px) {
  /* 모바일 */
  .ca-study-repeater-grid {
    grid-template-columns: repeat(var(--ca-grid-columns-mobile, 2), 1fr);
    gap: calc(var(--ca-grid-gap, 20px) / 2);
  }
}
/* 스터디 리피터 (Splide) */
.ca-study-repeater-slide .splide__slide {
  padding: 2px;
  /* focus outline 등 고려 */
}
/* 페이지네이션 스타일 */
.ca-study-pagination {
  margin-top: 30px;
  text-align: center;
}
.ca-study-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 2px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  transition: background-color 0.3s, color 0.3s;
}
.ca-study-pagination .page-numbers:hover, .ca-study-pagination .page-numbers.current {
  background-color: #3ed48c;
  color: #ffffff;
  border-color: #3ed48c;
}
.ca-study-repeater-empty {
  padding: 20px;
  text-align: center;
  color: #707070;
  background-color: #f6f6f6;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
}
/* Splide 화살표/페이지네이션 기본 스타일은 Splide 라이브러리에서 제공.
   필요시 아래에 커스텀 스타일 추가 */
.ca-study-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f6f6f6;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
}
.ca-study-filters-container .program-filter, .ca-study-filters-container .type-filter, .ca-study-filters-container .study-sort, .ca-study-filters-container .search-filter {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  flex-grow: 1;
  min-width: 280px;
  flex-basis: 100%;
}
.ca-study-filters-container .titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
}
.ca-study-filters-container .titles h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}
.ca-study-filters-container .titles button {
  background: none;
  border: none;
  color: #da002e;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 2px 5px;
}
.ca-study-filters-container .titles button:hover {
  opacity: 0.8;
}
.ca-study-filters-container .checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ca-study-filters-container .checkboxes label.inline-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  font-size: 0.875rem;
  color: #333333;
  background-color: #ffffff;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.ca-study-filters-container .checkboxes label.inline-checkbox:hover {
  border-color: #707070;
  background-color: #f6f6f6;
}
.ca-study-filters-container .checkboxes input[type="checkbox"] {
  display: none;
}
.ca-study-filters-container .checkboxes input[type="checkbox"]:checked + label.inline-checkbox {
  background-color: #3ed48c;
  color: #ffffff;
  border-color: #3ed48c;
}
.ca-study-filters-container .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ca-study-filters-container .buttons .sort-button {
  padding: 8px 15px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  color: #333333;
  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-study-filters-container .buttons .sort-button:hover {
  border-color: #707070;
  background-color: #f6f6f6;
}
.ca-study-filters-container .buttons .sort-button.active {
  background-color: #3ed48c;
  color: #ffffff;
  border-color: #3ed48c;
}
.ca-study-filters-container .search-filter input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  color: #333333;
  border-radius: 4px;
  font-size: 0.875rem;
}
.ca-study-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);
}
/* 스터디 갤러리 스타일 */
.ca-study-gallery {
  display: block;
  overflow: auto;
}
/* Grid 갤러리 */
.ca-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 데스크톱에서 3열 고정 */
  gap: 15px;
  /* grid-auto-rows: 200px; */
  /* 행 높이 고정 대신 내용에 따라 자동 조절되도록 주석 처리 또는 auto로 변경 */
  align-items: stretch;
  /* 기본값이지만 명시적으로 추가하여 아이템들이 셀 높이를 꽉 채우도록 함 */
}
@media (max-width: 991px) {
  .ca-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 태블릿에서 2열 */
    /* grid-auto-rows: 180px; */
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .ca-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 모바일에서 2열 (요구사항에 따라 1열로 변경 가능) */
    /* grid-auto-rows: 150px; */
    gap: 10px;
  }
}
.ca-study-gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: block;
}
.ca-study-gallery-item:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
.ca-study-gallery-item-contents {
  margin: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f6f6f6;
  display: flex;
}
.ca-study-gallery-item-contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.ca-study-gallery-item-contents figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  padding: 20px 15px 15px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
/* 캡션 기능 */
.ca-gallery-captions .ca-study-gallery-item:hover .ca-study-gallery-item-contents figcaption {
  opacity: 1;
}
/* 스터디 예제 갤러리 */
.ca-study-example-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
@media (max-width: 991px) {
  .ca-study-example-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .ca-study-example-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}
.ca-study-example-item {
  overflow: hidden;
  border-radius: 8px;
  background: #f6f6f6;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.ca-study-example-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.ca-study-example-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.ca-study-example-item:hover img {
  transform: scale(1.05);
}
.ca-study-detail-info-data {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 5px;
}
.ca-study-video {
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.ca-study-video .ca-responsive-video-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000000;
}
.ca-study-video .ca-responsive-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .ca-study-video {
    margin-top: 15px;
  }
  .ca-study-video .ca-responsive-video-wrapper {
    border-radius: 8px;
  }
  .ca-study-video .ca-responsive-video-wrapper iframe {
    border-radius: 8px;
  }
}
.ca-study-short-intro-box, .ca-study-intro-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  gap: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .ca-study-short-intro-box, .ca-study-intro-box {
    flex-direction: column;
  }
}
.ca-study-short-intro-l, .ca-study-intro-l {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}
.ca-study-short-intro-r, .ca-study-intro-r {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ca-middle-section-2 {
  color: #333333;
}
.ca-middle-section-2 a {
  color: #333333;
}
.ca-middle-section-2 a:hover {
  color: #da002e;
}
.ca-middle-section-2 .study-accordion-header-box {
  color: #333333;
}
.ca-middle-section-2 .study-accordion-contents {
  color: #333333;
}
.ca-middle-section-2 .v-line {
  color: #333333;
}
.ca-middle-section-2 .study-curri-line {
  color: #333333;
}
.ca-middle-section-2 .study-curri-line:hover {
  background-color: #f6f6f6;
  color: #333333;
}
.study-accordion {
  width: 100%;
  margin-bottom: 20px;
}
.study-accordion-header-box {
  width: 100%;
  padding: 15px;
  background-color: #f6f6f6;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #d9d9d9;
}
.study-curri-header-title {
  font-weight: 800;
  margin-bottom: 10px;
}
.study-accordion-contents {
  display: block;
  padding: 20px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.ca-study-price-discounted {
  margin-right: 10px;
  font-size: 0.875rem;
}
.ca-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.ca-lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}
.ca-lightbox-close, .ca-lightbox-prev, .ca-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.ca-lightbox-close:hover, .ca-lightbox-prev:hover, .ca-lightbox-next:hover {
  background: white;
}
.ca-lightbox-close {
  top: -40px;
  right: -40px;
  font-size: 30px;
}
.ca-lightbox-prev {
  left: -60px;
  font-size: 30px;
}
.ca-lightbox-next {
  right: -60px;
  font-size: 30px;
}
.ca-lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .ca-lightbox-prev, .ca-lightbox-next {
    left: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ca-lightbox-next {
    left: auto;
    right: 10px;
  }
  .ca-lightbox-close {
    top: 10px;
    right: 10px;
  }
}
.study-curri-box {
  border-color: #d9d9d9;
  border-width: 1px;
  border-style: solid;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin-top: 10px;
}
.study-curri-l {
  padding-left: 5px;
  padding-right: 5px;
  width: 25px;
  min-width: 25px;
  max-width: 25px;
  display: none;
  align-items: center;
  justify-content: flex-start;
}
.study-curri-r {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 600;
  display: block;
}
.study-curri-c {
  width: 35px;
  min-width: 35px;
  max-width: 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.study-curri-ac {
  font-weight: 600;
}
.study-curri-at {
  font-weight: 600;
}
.study-curri-a-box {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.study-curri-s {
  padding: 10px;
  font-weight: 800;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-color: #d9d9d9;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: #f6f6f6;
}
.study-curri-line {
  padding: 5px 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  color: #333333;
}
/**
 * 할인 혜택 안내 섹션
 * 모바일 우선 레이아웃 (360~430px 기준)
 */
.ca-study-benefits {
  background-color: #f6f6f6;
  padding: 24px 16px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
}
@media screen and (min-width: 768px) {
  .ca-study-benefits {
    padding: 32px 24px;
  }
}
.ca-study-benefits__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ca-study-benefits__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
.ca-study-benefits__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ca-study-benefits__logo-icon {
  flex-shrink: 0;
}
.ca-study-benefits__logo-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #707070;
}
.ca-study-benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .ca-study-benefits__cards {
    gap: 20px;
  }
}
.ca-study-benefits__card {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 20px;
}
.ca-study-benefits__card--main {
  padding: 24px 20px;
}
@media screen and (min-width: 768px) {
  .ca-study-benefits__card--main {
    padding: 28px 24px;
  }
}
.ca-study-benefits__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f6f6f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #707070;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.ca-study-benefits__close:hover {
  background-color: #d9d9d9;
  color: #333333;
}
.ca-study-benefits__close:focus {
  outline: 2px solid #80abd3;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .ca-study-benefits__close {
    top: 14px;
    right: 14px;
  }
}
.ca-study-benefits__card-subtitle {
  font-size: 0.875rem;
  color: #707070;
  margin: 0 0 12px 0;
  line-height: 1.7;
}
.ca-study-benefits__card-main-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .ca-study-benefits__card-main-text {
    font-size: 1.5rem;
  }
}
.ca-study-benefits__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
  padding-right: 30px;
  line-height: 1.7;
}
.ca-study-benefits__card-desc {
  font-size: 0.875rem;
  color: #707070;
  margin: 0;
  line-height: 1.7;
}
/**
 * 서비스 이용 안내 섹션
 */
.ca-study-service-info {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .ca-study-service-info {
    margin-top: 40px;
  }
}
.ca-study-service-info__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px 0;
}
@media screen and (min-width: 768px) {
  .ca-study-service-info__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
}
.ca-study-service-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .ca-study-service-info__list {
    gap: 32px;
  }
}
.ca-study-service-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ca-study-service-info__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;
}
.ca-study-service-info__icon svg {
  width: 24px;
  height: 24px;
}
.ca-study-service-info__content {
  flex: 1;
  min-width: 0;
}
.ca-study-service-info__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 4px 0;
}
.ca-study-service-info__item-desc {
  font-size: 0.875rem;
  color: #707070;
  margin: 0;
  line-height: 1.7;
}
/**
 * 스터디 히어로 섹션
 * 배경 이미지 + 좌측 카드 레이아웃
 */
.ca-hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .ca-hero-section {
    min-height: 500px;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  .ca-hero-section {
    min-height: auto;
    padding: 80px 16px 40px;
    justify-content: center;
  }
}
.ca-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.ca-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ca-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.ca-hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .ca-hero-card {
    max-width: 480px;
    padding: 32px 28px;
  }
}
@media screen and (max-width: 767px) {
  .ca-hero-card {
    max-width: 100%;
    padding: 28px 20px;
    border-radius: 12px;
  }
}
.ca-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ca-hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ca-hero-rating__stars {
  display: flex;
  align-items: center;
  gap: 0;
}
.ca-hero-rating__star {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}
.ca-hero-rating__star--filled {
  color: #fbbf24;
}
.ca-hero-rating__score {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.ca-hero-rating__count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.ca-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.ca-hero-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
}
.ca-hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ca-hero-title {
    font-size: 1.5rem;
  }
}
.ca-hero-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  .ca-hero-desc {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}
.ca-hero-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .ca-hero-info-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.ca-hero-info-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.ca-hero-info-icon {
  font-size: 20px;
  color: #3ed48c;
  flex-shrink: 0;
}
.ca-hero-info-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.ca-hero-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ca-hero-price-original {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}
.ca-hero-price-current {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ca-hero-price-current {
    font-size: 1.5rem;
  }
}
.ca-hero-price-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #da002e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
}
.ca-hero-btn-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .ca-hero-btn-group {
    flex-direction: column;
    gap: 10px;
  }
}
.ca-hero-cta-btn {
  flex: 1;
  padding: 16px 24px;
  background: #3ed48c;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.ca-hero-cta-btn:hover {
  background: #2abf78;
  transform: translateY(-2px);
}
.ca-hero-cta-btn:focus {
  outline: 3px solid rgba(62, 212, 140, 0.5);
  outline-offset: 2px;
}
.ca-hero-cta-btn:active {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .ca-hero-cta-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}
.ca-hero-intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;
}
.ca-hero-intro-btn .material-symbols-rounded {
  font-size: 22px;
}
.ca-hero-intro-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.ca-hero-intro-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}
.ca-hero-intro-btn:active {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .ca-hero-intro-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}
.ca-hero-notice {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 0;
}
/**
 * 스터디 구매 모달
 */
.ca-study-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.ca-study-modal.is-open {
  display: flex;
}
.ca-study-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.ca-study-modal__container {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .ca-study-modal__container {
    padding: 24px 20px;
    border-radius: 12px;
  }
}
.ca-study-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #333333;
  transition: background-color 0.2s ease-in-out;
}
.ca-study-modal__close:hover {
  background: #d9d9d9;
}
.ca-study-modal__close:focus {
  outline: 2px solid #80abd3;
  outline-offset: 2px;
}
.ca-study-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px;
  padding-right: 40px;
}
.ca-study-modal__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ca-study-modal__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #f6f6f6;
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .ca-study-modal__option {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
.ca-study-modal__option-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ca-study-modal__option-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
}
.ca-study-modal__option-name--total {
  font-size: 1rem;
  font-weight: 700;
}
.ca-study-modal__option-price {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}
.ca-study-modal__option-btn {
  flex-shrink: 0;
  width: 140px;
  min-height: 48px;
  padding: 14px 20px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}
.ca-study-modal__option-btn:hover {
  background: #f6f6f6;
  border-color: #707070;
}
.ca-study-modal__option-btn:focus {
  outline: 2px solid #80abd3;
  outline-offset: 2px;
}
@media screen and (max-width: 480px) {
  .ca-study-modal__option-btn {
    width: 100%;
  }
}
.ca-study-modal__option-btn--primary {
  background: #3ed48c;
  color: #ffffff;
  border-color: #3ed48c;
  width: 160px;
}
.ca-study-modal__option-btn--primary:hover {
  background: #2abf78;
  border-color: #2abf78;
}
@media screen and (max-width: 480px) {
  .ca-study-modal__option-btn--primary {
    width: 100%;
  }
}
.ca-study-modal__total {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #f6f6f6;
  border-radius: 10px;
  border: 2px solid #3ed48c;
  margin-top: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .ca-study-modal__total {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
.ca-study-modal__total-price {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ca-study-modal__price-original {
  font-size: 0.875rem;
  color: #707070;
  text-decoration: line-through;
}
.ca-study-modal__price-badge {
  display: inline-block;
  padding: 3px 8px;
  background: #da002e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
}
.ca-study-modal__empty {
  text-align: center;
  padding: 40px 20px;
  color: #707070;
  font-size: 1rem;
}
/**
 * 스터디 인트로 모달
 */
.ca-intro-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.ca-intro-modal.is-open {
  display: flex;
}
.ca-intro-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.ca-intro-modal__container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .ca-intro-modal__container {
    padding: 24px 20px;
    border-radius: 12px;
    max-width: 100%;
  }
}
.ca-intro-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #333333;
  transition: background-color 0.2s ease-in-out;
  z-index: 10;
}
.ca-intro-modal__close:hover {
  background: #d9d9d9;
}
.ca-intro-modal__close:focus {
  outline: 2px solid #80abd3;
  outline-offset: 2px;
}
.ca-intro-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px;
  padding-right: 40px;
}
.ca-intro-modal__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ca-intro-modal__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
}
.ca-intro-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.ca-intro-modal__info {
  padding: 20px;
  background: #f6f6f6;
  border-radius: 12px;
}
.ca-intro-modal__info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px;
}
.ca-intro-modal__info-desc {
  font-size: 1rem;
  color: #707070;
  margin: 0;
  line-height: 1.6;
}
.ca-intro-modal__goals {
  padding: 20px;
  background: #f6f6f6;
  border-radius: 12px;
}
.ca-intro-modal__goals-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
}
.ca-intro-modal__goals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ca-intro-modal__goal-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
}
.ca-intro-modal__goal-icon {
  color: #3ed48c;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
/**
 * 스터디 추천 섹션 (2컬럼 레이아웃)
 * 좌측: 인트로 설명, 우측: 체크 리스트
 */
.ca-study-recommend-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .ca-study-recommend-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ca-study-recommend-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.ca-study-recommend-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ca-study-recommend-left h5 {
  margin: 0 0 8px;
  color: #707070;
}
.ca-study-recommend-left h2 {
  margin: 0 0 12px;
  line-height: 1.4;
}
.ca-study-recommend-right {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 340px;
  overflow: hidden;
}
.ca-study-recommend-right::before, .ca-study-recommend-right::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.ca-study-recommend-right::before {
  top: 0;
  background: linear-gradient(to bottom, #f5f5f5 0%, transparent 100%);
}
.ca-study-recommend-right::after {
  bottom: 0;
  background: linear-gradient(to top, #f5f5f5 0%, transparent 100%);
}
.ca-study-recommend-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: ca-scroll-up 20s linear infinite;
  padding: 40px 0;
}
.ca-study-recommend-list:hover {
  animation-play-state: paused;
}
@keyframes ca-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.ca-study-recommend-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  flex-shrink: 0;
}
.ca-study-recommend-item span {
  flex: 1;
  line-height: 1.7;
}
.ca-study-recommend-check {
  flex-shrink: 0;
  margin-top: 2px;
}
/**
 * 스터디 리더 프로필 카드
 * 좌측: 프로필 이미지 + 소개 텍스트
 * 우측: Experience & Achievements 리스트
 */
.ca-leader-profile-card {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .ca-leader-profile-card {
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-card {
    padding: 24px 20px;
    border-radius: 12px;
  }
}
.ca-leader-profile-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 36px;
  color: #ffffff;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
}
.ca-leader-profile-content {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .ca-leader-profile-content {
    gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-content {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
}
.ca-leader-profile-left {
  flex: 0 0 280px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .ca-leader-profile-left {
    flex: 0 0 220px;
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-left {
    flex: none;
    width: 100%;
    max-width: 320px;
  }
}
.ca-leader-profile-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .ca-leader-profile-image {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-image {
    width: 130px;
    height: 130px;
  }
}
.ca-leader-profile-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-intro {
    text-align: center;
  }
}
.ca-leader-profile-right {
  flex: 1;
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 767px) {
  .ca-leader-profile-right {
    padding-left: 0;
    border-left: none;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
  }
}
.ca-leader-achievements-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ca-leader-achievements-title {
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: center;
  }
}
.ca-leader-achievements-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 400px;
  overflow-y: auto;
}
.ca-leader-achievements-list::-webkit-scrollbar {
  width: 4px;
}
.ca-leader-achievements-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.ca-leader-achievements-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.ca-leader-achievements-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-size: 0.875rem;
  padding: 2px 0;
}
.ca-leader-achievements-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: #3ed48c;
  border-radius: 50%;
  margin-top: 7px;
}
/**
 * 스터디 리더 포트폴리오 섹션
 * 검은 배경 + 흰색 글씨
 */
.ca-study-portfolio-section {
  background-color: #000000;
  color: #ffffff;
}
.ca-study-portfolio-section h4, .ca-study-portfolio-section h2, .ca-study-portfolio-section h3, .ca-study-portfolio-section p {
  color: #ffffff;
}
.ca-study-portfolio-section .ca-subtitle-5 {
  color: rgba(255, 255, 255, 0.7);
}
.ca-study-portfolio-section .ca-title-3 {
  text-align: center;
}
/**
 * 스터디 예제 가로 슬라이드
 * 무한 스크롤 애니메이션
 */
.ca-study-example-slider-wrapper {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  overflow: hidden;
  position: relative;
  padding: 20px 0 40px;
}
.ca-study-example-slider-wrapper::before, .ca-study-example-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ca-study-example-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}
.ca-study-example-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f5 0%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .ca-study-example-slider-wrapper {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}
.ca-study-example-slider {
  display: flex;
  gap: 20px;
  animation: ca-slide-left 30s linear infinite;
  width: max-content;
}
.ca-study-example-slider:hover {
  animation-play-state: paused;
}
@keyframes ca-slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ca-study-example-slide {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ca-study-example-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.ca-study-example-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .ca-study-example-slide {
    width: 250px;
    height: 180px;
  }
}
/**
 * 스터디 리뷰 카드 그리드 레이아웃
 */
.ca-study-reviews {
  margin-top: 40px;
}
.ca-review-part-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #000000;
}
.ca-review-part-title:first-child {
  margin-top: 0;
}
.ca-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .ca-review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.ca-review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}
.ca-review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .ca-review-card {
    padding: 20px;
  }
}
.ca-review-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.ca-review-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .ca-review-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.75rem;
  }
}
.ca-review-info {
  flex: 1;
  min-width: 0;
}
.ca-review-name {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.ca-review-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ca-review-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.ca-review-stars .material-symbols-rounded {
  font-size: 18px;
  font-variation-settings: "FILL" 1;
}
.ca-review-stars .ca-star-filled {
  color: #FFC328;
}
.ca-review-stars .ca-star-empty {
  color: #ddd;
}
.ca-review-date {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}
.ca-review-verified {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.75rem;
  color: #3ed48c;
}
.ca-review-verified .material-symbols-rounded {
  font-size: 14px;
}
.ca-review-content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
}
.ca-review-empty {
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  padding: 40px 0;
}
