@charset "UTF-8";
/**
 * FeeeldStudy internal theme shell.
 *
 * This entry supplements the existing FieldStudy feature styles. It owns only
 * the renderer shell and generic fallback components.
 */
/**
 * 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
 */
/**
 * Responsive image mixins
 */
/**
 * Background image with cover
 */
/**
 * Modal component mixins
 */
/**
 * Admin box mixin
 */
/**
 * Filter container mixin
 */
/**
 * Pagination mixin
 */
/**
 * Status badge mixin
 */
/**
 * Notice/Alert box mixin
 */
html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.ca-theme, .ca-theme *, .ca-theme *::before, .ca-theme *::after {
  box-sizing: border-box;
}
.ca-theme {
  --ca-theme-page-width: 1200px;
  --ca-theme-page-gutter: 20px;
  --ca-theme-text: #333333;
  --ca-theme-muted: #707070;
  --ca-theme-border: #d9d9d9;
  --ca-theme-surface: #ffffff;
  --ca-theme-accent: #3ed48c;
  --ca-theme-header-height: 60px;
  --ca-theme-admin-bar-offset: 0px;
  --ca-theme-sticky-clearance: calc(
    var(--ca-theme-header-height) + var(--ca-theme-admin-bar-offset) + 1rem
  );
  width: 100%;
  max-width: 100%;
  color: var(--ca-theme-text);
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
}
.ca-theme a, .ca-theme button, .ca-theme [role="button"], .ca-theme [tabindex="0"] {
  cursor: pointer;
}
.ca-theme a:focus-visible, .ca-theme button:focus-visible, .ca-theme [role="button"]:focus-visible, .ca-theme [tabindex="0"]:focus-visible {
  outline: 3px solid rgba(128, 171, 211, 0.55);
  outline-offset: 3px;
}
.ca-theme--standalone {
  --ca-theme-header-height: 0px;
}
.admin-bar .ca-theme {
  --ca-theme-admin-bar-offset: var(--wp-admin--admin-bar--height, 32px);
}
.ca-theme :where([id], a[href], button, input, select, textarea, [tabindex]) {
  scroll-margin-top: var(--ca-theme-sticky-clearance);
}
:where(.ca-theme) :where(a, a:hover) {
  text-decoration: none;
}
.ca-theme-link {
  color: inherit;
  text-decoration: none;
}
.ca-theme-link:focus-visible {
  outline: 3px solid rgba(128, 171, 211, 0.55);
  outline-offset: 3px;
}
.ca-theme-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.ca-theme-heading {
  margin-top: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.ca-theme-header {
  position: sticky;
  top: var(--ca-theme-admin-bar-offset);
  z-index: 998;
  width: 100%;
  max-width: 100%;
  background: var(--ca-bg-primary, var(--ca-theme-surface));
}
.ca-theme-header.is-sticky-active {
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.ca-theme-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: var(--ca-theme-page-width);
  min-width: 0;
  min-height: 60px;
  margin: 0 auto;
  padding: 0 var(--ca-theme-page-gutter);
}
.ca-theme-header .ca-logo-svg, .ca-theme-header .ca-logo-svg svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.ca-theme-header__navigation {
  flex: 0 1 auto;
  min-width: 0;
}
.ca-header-secondary-nav {
  width: 100%;
  max-width: var(--ca-theme-page-width);
  margin: 0 auto;
  padding: 0 var(--ca-theme-page-gutter);
  border-top: 1px solid var(--ca-theme-border);
  border-bottom: 1px solid var(--ca-theme-border);
}
.ca-header-secondary-nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  min-height: 48px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.ca-header-secondary-nav__inner::-webkit-scrollbar {
  display: none;
}
.ca-header-secondary-nav__inner > a, .ca-header-secondary-nav__inner > button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #222222;
  font-size: 1rem;
  white-space: nowrap;
}
.ca-header-secondary-nav__inner > a:hover, .ca-header-secondary-nav__inner > button:hover {
  color: #181818;
}
.ca-header-secondary-nav__primary {
  font-weight: 600;
}
.ca-header-secondary-nav__muted {
  color: #707070;
  font-weight: 400;
}
.ca-header-category-toggle {
  width: 32px;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}
.ca-header-category-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.ca-header-category-panel[hidden] {
  display: none;
}
.ca-header-category-panel {
  position: absolute;
  z-index: 1001;
  top: 100%;
  right: 0;
  left: 0;
  background: #181818;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.ca-header-category-panel__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  max-width: var(--ca-theme-page-width);
  margin: 0 auto;
  padding: 28px var(--ca-theme-page-gutter) 32px;
}
.ca-header-category-group {
  min-width: 0;
}
.ca-header-category-group h2 {
  margin: 0 0 12px;
  font-size: 0.9375rem;
}
.ca-header-category-group h2 a {
  color: #ffffff;
}
.ca-header-category-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ca-header-category-group li a {
  color: #d9d9d9;
  font-size: 0.8125rem;
}
.ca-header-category-group li a:hover {
  color: #ffffff;
}
.ca-header-search-form {
  display: flex;
  flex: 1 1 420px;
  align-items: center;
  max-width: 420px;
  min-width: 0;
  height: 40px;
  margin: 0 0 0 auto;
  padding-left: 14px;
  background: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ca-header-search-form:focus-within {
  border-color: #707070;
  box-shadow: 0 0 0 3px rgba(128, 171, 211, 0.18);
}
.ca-header-search-field {
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  color: #181818;
  background: transparent;
  border: 0;
  outline: 0;
}
.ca-header-search-submit {
  display: inline-flex;
  order: -1;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  color: #181818;
  background: transparent;
  border: 0;
}
.ca-header-search-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.ca-theme-header__account {
  flex: 0 0 auto;
  min-width: 0;
}
.ca-theme-header__account .ca-search-form-wrapper, .ca-theme-header__account .ca-search-form {
  display: none !important;
}
.ca-theme-header .ca-login-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #181818;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ca-theme-header .ca-login-link h1 {
  margin: 0;
  font: inherit;
}
.ca-theme-header .ca-login-link:hover {
  background: #f6f6f6;
}
.ca-inner {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
}
.ca-theme .ca-content {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
}
.ca-theme-main, .ca-theme-footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}
.ca-theme-main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 60px);
}
.ca-theme-main--standalone {
  min-height: 100vh;
}
.ca-theme-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--ca-theme-border);
}
.ca-theme-footer .ca-footer-row {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.ca-theme-section {
  width: 100%;
  max-width: 100%;
}
.ca-theme-section__inner {
  width: 100%;
  max-width: var(--ca-theme-page-width);
  min-width: 0;
  margin: 0 auto;
  padding-right: var(--ca-theme-page-gutter);
  padding-left: var(--ca-theme-page-gutter);
}
.ca-theme-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ca-theme-main .ca-theme-section__inner > .ca-section-div, .ca-theme-main .ca-theme-section__inner > .ca-section-div-992 {
  width: 100%;
  min-width: 0;
  padding-right: 0;
  padding-left: 0;
}
.ca-theme-main > .ca-main-section {
  width: 100%;
  max-width: var(--ca-theme-page-width);
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--ca-theme-page-gutter);
  padding-left: var(--ca-theme-page-gutter);
}
.ca-theme-main > .ca-main-section > .ca-section-div, .ca-theme-main > .ca-main-section > .ca-section-div-992 {
  padding: 0 !important;
}
.ca-theme-main > .ca-main-section > .ca-section-div > .ca-section-col, .ca-theme-main > .ca-main-section > .ca-section-div-992 > .ca-section-col, .ca-theme-main > .ca-main-section > .ca-section-div > .ca-section-col > .ca-section-block, .ca-theme-main > .ca-main-section > .ca-section-div-992 > .ca-section-col > .ca-section-block {
  padding: 0 !important;
}
@media screen and (min-width: 1200px) {
  .ca-theme-main > .ca-main-banner {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
  .ca-theme-main > .ca-main-banner .ca-banner-slide-wrap {
    max-width: none;
  }
}
.ca-theme-main > .ca-main-banner + .ca-main-courses {
  margin-top: 2.25rem;
}
.ca-section-div-992 {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 2rem;
}
.ca-section-col, .ca-section-col-65, .ca-section-col-35, .ca-section-col-25, .ca-section-col-75 {
  min-width: 0;
  max-width: 100%;
}
.ca-section-col-65 {
  flex: 0 1 65%;
}
.ca-section-col-35 {
  flex: 0 1 35%;
}
.ca-section-col-25 {
  flex: 0 1 25%;
}
.ca-section-col-75 {
  flex: 0 1 75%;
}
.ca-theme-page-hero {
  padding-top: clamp(2.5rem, 7vw, 6rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.ca-theme-page-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
}
.ca-theme-page-hero__rule {
  width: 100%;
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid var(--ca-theme-border);
}
.ca-theme-page-hero__subtitle, .ca-theme-archive__description, .ca-theme-entry__excerpt {
  color: var(--ca-theme-muted);
  line-height: 1.7;
}
.ca-theme-index-section, .ca-theme-entry-section, .ca-theme-archive-section, .ca-theme-static-page--content, .ca-theme-openstudio-section, .ca-theme-shorts-single-section, .ca-theme-commerce-archive-section, .ca-theme-commerce-product-section, .ca-theme-legacy-builder-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.ca-theme-archive__header {
  margin-bottom: 2rem;
}
.ca-theme-archive__title, .ca-theme-entry__title, .ca-theme-static-page__title, .ca-theme-openstudio__title {
  margin-top: 0;
  color: var(--ca-theme-text);
  line-height: 1.25;
}
.ca-theme-archive__entries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.ca-theme-entry--archive {
  min-width: 0;
  overflow: hidden;
  background: var(--ca-theme-surface);
  border: 1px solid var(--ca-theme-border);
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.ca-theme-entry--archive:hover {
  border-color: var(--ca-theme-muted);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.ca-theme-entry__media, .ca-theme-entry__image {
  overflow: hidden;
}
.ca-theme-entry__media img, .ca-theme-entry__image img {
  display: block;
  width: 100%;
  height: auto;
}
.ca-theme-entry--archive .ca-theme-entry__title, .ca-theme-entry--archive .ca-theme-entry__excerpt {
  margin-right: 1rem;
  margin-left: 1rem;
}
.ca-theme-entry--archive .ca-theme-entry__title {
  margin-top: 1rem;
  font-size: 1.15rem;
}
.ca-theme-entry--archive .ca-theme-entry__excerpt {
  margin-bottom: 1.25rem;
}
.ca-theme-static-page, .ca-theme-entry--default, .ca-theme-openstudio {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.ca-theme-static-page__body, .ca-theme-entry__content {
  overflow-wrap: anywhere;
  line-height: 1.8;
}
.ca-theme-static-page__body img, .ca-theme-static-page__body iframe, .ca-theme-entry__content img, .ca-theme-entry__content iframe {
  max-width: 100%;
}
.ca-theme-static-page__body img, .ca-theme-entry__content img {
  display: block;
  height: auto;
}
.ca-theme-entry--legal .ca-theme-legal-content {
  line-height: 1.8;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 1.5rem 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 1px solid var(--ca-theme-border);
  border-radius: 11px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap:focus-visible {
  outline: 3px solid rgba(128, 171, 211, 0.55);
  outline-offset: 3px;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap th, .ca-theme-entry--legal .ca-theme-legal-table-wrap td {
  padding: 12px 14px;
  color: #222222;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #d9d9d9;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap th {
  color: #181818;
  font-weight: 700;
  background: #f6f6f6;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap th:first-child, .ca-theme-entry--legal .ca-theme-legal-table-wrap td:first-child {
  min-width: 7rem;
  font-weight: 600;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap tr:last-child th, .ca-theme-entry--legal .ca-theme-legal-table-wrap tr:last-child td {
  border-bottom: 0;
}
.ca-theme-entry--legal .ca-theme-legal-table-wrap td a {
  overflow-wrap: anywhere;
}
.ca-theme-my-account {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--ca-theme-page-width);
  min-height: calc(100vh - 60px);
  margin: 0 auto;
  padding: 2rem var(--ca-theme-page-gutter) 4rem;
}
.ca-theme-my-account__nav, .ca-theme-my-account__content {
  min-width: 0;
}
.ca-theme-my-account__content {
  width: 100%;
  max-width: none;
}
.ca-theme-auth-section .ca-theme-section__inner {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.ca-theme-auth-page {
  width: min(100%, 520px);
  padding: 2rem;
  background: var(--ca-theme-surface);
  border: 1px solid var(--ca-theme-border);
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}
.ca-theme-auth-page__logo {
  display: flex;
  width: 150px;
  margin: 0 auto 1.5rem;
}
.ca-theme-auth-page__logo img {
  width: 100%;
  height: auto;
}
.ca-theme-auth-page__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--ca-theme-border);
}
.ca-theme-auth-page__tab {
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.ca-theme-auth-page__tab.is-active {
  border-bottom-color: var(--ca-theme-accent);
}
.ca-theme-auth-page__button, .ca-theme-openstudio a, .ca-theme-auth-page button, .ca-theme-auth-page input[type="submit"] {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  color: #181818;
  background: var(--ca-theme-accent);
  border: 0;
  border-radius: 8px;
  transition: filter 180ms ease, transform 180ms ease;
}
.ca-theme-auth-page__button:hover, .ca-theme-openstudio a:hover, .ca-theme-auth-page button:hover, .ca-theme-auth-page input[type="submit"]:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}
.ca-theme-auth-shortcode__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--ca-theme-muted);
}
.ca-theme-auth-shortcode__divider::before, .ca-theme-auth-shortcode__divider::after {
  flex: 1 1 auto;
  border-top: 1px solid var(--ca-theme-border);
  content: "";
}
.ca-theme-pagination {
  margin-top: 2rem;
}
.ca-theme-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ca-theme-pagination a, .ca-theme-pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ca-theme-border);
  border-radius: 8px;
}
.ca-theme-pagination .current {
  color: #181818;
  background: var(--ca-theme-accent);
  border-color: var(--ca-theme-accent);
}
@media (max-width: 1024px) {
  .ca-theme-archive__entries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .ca-theme {
    --ca-theme-page-gutter: 16px;
  }
  .ca-theme-header__inner {
    gap: 12px;
  }
  .ca-section-div-992 {
    flex-direction: column;
  }
  .ca-section-col-65, .ca-section-col-35, .ca-section-col-25, .ca-section-col-75, .ca-theme-filter-column, .ca-theme-list-column {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .ca-theme-my-account {
    gap: 1rem;
    padding-top: 1rem;
  }
  .ca-theme-archive__entries {
    grid-template-columns: 1fr;
  }
  .ca-theme-auth-section .ca-theme-section__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .ca-theme-auth-page {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .ca-theme-header__inner {
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    min-height: 60px;
    overflow: hidden;
  }
  .ca-theme-header__navigation {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .ca-header-search-form {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: 100%;
    height: 36px;
    margin: 0;
    padding-left: 8px;
  }
  .ca-header-search-submit {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .ca-theme-header__account {
    order: 3;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .ca-theme-header__navigation .ca-logo-box {
    min-width: 0;
    padding-right: 4px;
    padding-left: 4px;
  }
  .ca-theme-header__navigation .ca-logo-svg {
    width: min(100%, 132px);
  }
  .ca-header-secondary-nav {
    display: block;
    overflow: hidden;
  }
  .ca-header-category-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    flex: 0 0 44px;
  }
  .ca-header-category-panel {
    max-height: calc(100dvh - var(--ca-theme-header-height) - var(--ca-theme-admin-bar-offset));
    overflow-y: auto;
    overflow-x: hidden;
  }
  .ca-header-category-panel__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .ca-theme-main > .ca-main-banner + .ca-main-courses {
    margin-top: 1.75rem;
  }
}
@media (max-width: 600px) {
  .admin-bar .ca-theme {
    --ca-theme-admin-bar-offset: 0px;
  }
}
@media (max-width: 480px) {
  .ca-theme-entry--legal .ca-theme-legal-table-wrap {
    margin-right: -10px;
    margin-left: -10px;
    border-right: 0;
    border-left: 0;
    border-radius: 10px;
  }
  .ca-theme-entry--legal .ca-theme-legal-table-wrap table {
    min-width: 660px;
    font-size: 0.875rem;
  }
  .ca-theme-entry--legal .ca-theme-legal-table-wrap th, .ca-theme-entry--legal .ca-theme-legal-table-wrap td {
    padding: 10px 12px;
  }
  .ca-theme {
    --ca-theme-page-gutter: 10px;
  }
  .ca-theme-auth-page {
    padding: 1.25rem 0.875rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .ca-theme-auth-page__logo {
    width: 132px;
  }
  .ca-theme-auth-page__tab {
    padding: 0.75rem 0.25rem;
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ca-theme *, .ca-theme *::before, .ca-theme *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.ca-main-home > .ca-main-section {
  max-width: none;
  padding-inline: 0;
}
.ca-theme-main > .ca-main-home, .ca-main-home {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  --ca-main-accent: #00EB99;
  --ca-main-highlight: #00EB99;
  --ca-main-ink: #17191d;
  --ca-main-muted: #626b73;
  --ca-main-border: #e5e7eb;
  color: var(--ca-main-ink);
  overflow-x: hidden;
  /* CA HERO START */
  /* CA HERO END */
  /* Editorial motion language: calm rails, readable cards, and no viewport bleed. */
}
.ca-theme-main > .ca-main-home .ca-main-wrap, .ca-main-home .ca-main-wrap {
  width: 100%;
  max-width: var(--ca-theme-page-width);
  margin: 0 auto;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 96px);
  padding-right: var(--ca-theme-page-gutter);
  padding-left: var(--ca-theme-page-gutter);
}
.ca-theme-main > .ca-main-home .ca-main-intro h1, .ca-main-home .ca-main-intro h1 {
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  font-size: clamp(1.3125rem, 2.4vw, 1.6875rem);
  font-weight: 800;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-courses > .ca-main-wrap > h2, .ca-theme-main > .ca-main-home .ca-main-curriculum h2, .ca-main-home .ca-main-courses > .ca-main-wrap > h2, .ca-main-home .ca-main-curriculum h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-trusted h2, .ca-main-home .ca-main-trusted h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-testimonials h2, .ca-theme-main > .ca-main-home .ca-main-social h2, .ca-main-home .ca-main-testimonials h2, .ca-main-home .ca-main-social h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-tools h2, .ca-main-home .ca-main-tools h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-design-assets h2, .ca-main-home .ca-main-design-assets h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-discount h2, .ca-theme-main > .ca-main-home .ca-main-faq h2, .ca-main-home .ca-main-discount h2, .ca-main-home .ca-main-faq h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-title, .ca-main-home .ca-main-ctas .main-footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-courses .ca-study-card__title, .ca-main-home .ca-main-courses .ca-study-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-courses .ca-study-card__overlay-promo, .ca-main-home .ca-main-courses .ca-study-card__overlay-promo {
  white-space: normal;
  overflow-wrap: anywhere;
}
.ca-theme-main > .ca-main-home .ca-main-asset-grid, .ca-main-home .ca-main-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  margin-top: 22px;
}
.ca-theme-main > .ca-main-home .ca-main-asset-card, .ca-main-home .ca-main-asset-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--ca-main-ink);
  background: #fff;
  border-radius: clamp(12px, 1.4vw, 14px);
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__image, .ca-theme-main > .ca-main-home .ca-main-asset-card__placeholder, .ca-main-home .ca-main-asset-card__image, .ca-main-home .ca-main-asset-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__placeholder, .ca-main-home .ca-main-asset-card__placeholder {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__badges, .ca-main-home .ca-main-asset-card__badges {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__badge, .ca-main-home .ca-main-asset-card__badge {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__badge--type, .ca-main-home .ca-main-asset-card__badge--type {
  color: #fff;
  background: rgba(15, 15, 15, 0.85);
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__badge--free, .ca-main-home .ca-main-asset-card__badge--free {
  color: var(--ca-main-ink);
  background: #fff;
}
.ca-theme-main > .ca-main-home .ca-main-asset-card__title, .ca-main-home .ca-main-asset-card__title {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--ca-main-ink);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(2px);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.35;
  word-break: keep-all;
  transform: translateY(100%);
  transition: transform 350ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-asset-card:hover .ca-main-asset-card__title, .ca-theme-main > .ca-main-home .ca-main-asset-card:focus-visible .ca-main-asset-card__title, .ca-main-home .ca-main-asset-card:hover .ca-main-asset-card__title, .ca-main-home .ca-main-asset-card:focus-visible .ca-main-asset-card__title {
  transform: translateY(0);
}
.ca-theme-main > .ca-main-home .ca-main-asset-card:hover .ca-main-asset-card__image, .ca-main-home .ca-main-asset-card:hover .ca-main-asset-card__image {
  transform: scale(1.03);
}
.ca-theme-main > .ca-main-home .ca-main-courses .thumb-title, .ca-main-home .ca-main-courses .thumb-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-design-assets .ca-source-card__title, .ca-main-home .ca-main-design-assets .ca-source-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.ca-theme-main > .ca-main-home .ca-main-stat strong, .ca-main-home .ca-main-stat strong {
  display: block;
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.ca-theme-main > .ca-main-home .ca-main-stat, .ca-main-home .ca-main-stat {
  font-size: clamp(0.75rem, 0.95vw, 0.8125rem);
}
.ca-theme-main > .ca-main-home .ca-main-stat span, .ca-main-home .ca-main-stat span {
  display: block;
  margin-top: 2px;
  color: var(--ca-main-muted);
  font-size: inherit;
  white-space: nowrap;
}
.ca-theme-main > .ca-main-home .ca-main-kicker, .ca-main-home .ca-main-kicker {
  color: var(--ca-main-highlight);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.ca-theme-main > .ca-main-home .ca-main-banner, .ca-main-home .ca-main-banner {
  width: 100%;
  max-width: none;
  background: var(--ca-main-ink);
  color: #fff;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero, .ca-main-home .ca-main-banner .ca-banner-hero {
  position: relative;
  min-height: clamp(520px, 54vw, 620px);
  overflow: hidden;
  isolation: isolate;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__background, .ca-main-home .ca-main-banner .ca-banner-hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  animation: caBannerZoom 16s ease-in-out infinite alternate;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__overlay, .ca-main-home .ca-main-banner .ca-banner-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__overlay--base, .ca-main-home .ca-main-banner .ca-banner-hero__overlay--base {
  background: rgba(4, 8, 14, 0.48);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__overlay--vertical, .ca-main-home .ca-main-banner .ca-banner-hero__overlay--vertical {
  background: linear-gradient(90deg, rgba(4, 8, 14, 0.8), transparent 75%);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__overlay--horizontal, .ca-main-home .ca-main-banner .ca-banner-hero__overlay--horizontal {
  background: linear-gradient(0deg, rgba(4, 8, 14, 0.7), transparent 45%);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__content, .ca-main-home .ca-main-banner .ca-banner-hero__content {
  min-height: inherit;
  width: 100%;
  max-width: var(--ca-theme-page-width);
  margin: 0 auto;
  padding-top: clamp(42px, 7vw, 86px);
  padding-bottom: 112px;
  padding-right: var(--ca-theme-page-gutter);
  padding-left: var(--ca-theme-page-gutter);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-wrap, .ca-main-home .ca-main-banner .ca-banner-slide-wrap {
  width: 100%;
  height: auto;
  max-width: none;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-l, .ca-main-home .ca-main-banner .ca-banner-slide-l {
  width: 100%;
  max-width: none;
  order: initial;
  align-items: flex-start;
  text-align: left;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-r, .ca-main-home .ca-main-banner .ca-banner-slide-r {
  max-width: none;
  overflow: hidden;
  border-radius: clamp(14px, 1.8vw, 18px);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-img, .ca-main-home .ca-main-banner .ca-banner-slide-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-wrap, .ca-main-home .ca-main-banner .ca-banner-slide-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  align-items: center;
  gap: clamp(24px, 6vw, 90px);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-l, .ca-main-home .ca-main-banner .ca-banner-slide-l {
  position: relative;
  min-width: 0;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-r, .ca-main-home .ca-main-banner .ca-banner-slide-r {
  position: relative;
  width: 100%;
  height: auto;
  inset: auto;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero--no-image .ca-banner-slide-wrap, .ca-main-home .ca-main-banner .ca-banner-hero--no-image .ca-banner-slide-wrap {
  grid-template-columns: 1fr;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__copy, .ca-main-home .ca-main-banner .ca-banner-hero__copy {
  min-width: 0;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__badge, .ca-main-home .ca-main-banner .ca-banner-hero__badge {
  color: #00EB99;
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__cta, .ca-main-home .ca-main-banner .ca-banner-hero__cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0 clamp(20px, 3vw, 28px);
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 999px;
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  font-weight: 700;
  white-space: nowrap;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__cta-arrow, .ca-main-home .ca-main-banner .ca-banner-hero__cta-arrow {
  transition: transform 180ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__cta:hover .ca-banner-hero__cta-arrow, .ca-main-home .ca-main-banner .ca-banner-hero__cta:hover .ca-banner-hero__cta-arrow {
  transform: translateX(3px);
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__cta:focus-visible, .ca-main-home .ca-main-banner .ca-banner-hero__cta:focus-visible {
  outline: 3px solid #00EB99;
  outline-offset: 4px;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__visual-card, .ca-main-home .ca-main-banner .ca-banner-hero__visual-card {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 16px;
}
@keyframes caBannerZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-repeater-splide, .ca-main-home .ca-main-banner .ca-banner-repeater-splide {
  position: relative;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-repeater-splide .splide__track, .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-repeater-splide .splide__list, .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-repeater-splide .splide__slide, .ca-main-home .ca-main-banner .ca-banner-repeater-splide .splide__track, .ca-main-home .ca-main-banner .ca-banner-repeater-splide .splide__list, .ca-main-home .ca-main-banner .ca-banner-repeater-splide .splide__slide {
  min-height: inherit;
  height: auto;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero-controls, .ca-main-home .ca-main-banner .ca-banner-hero-controls {
  position: absolute;
  z-index: 5;
  left: max(var(--ca-theme-page-gutter), calc((100% - var(--ca-theme-page-width)) / 2 + var(--ca-theme-page-gutter)));
  bottom: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero-counter-live, .ca-main-home .ca-main-banner .ca-banner-hero-counter-live {
  color: #fff;
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero-controls .splide__arrow, .ca-main-home .ca-main-banner .ca-banner-hero-controls .splide__arrow {
  position: static;
  inset: auto;
  margin: 0;
  width: 24px;
  height: 24px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background-color: transparent !important;
  border-radius: 0;
  border: 0;
  transform: none;
}
.ca-theme-main > .ca-main-home .ca-main-banner .splide__arrow svg, .ca-main-home .ca-main-banner .splide__arrow svg {
  transform: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ca-theme-main > .ca-main-home .ca-main-banner .splide__arrow:focus-visible, .ca-main-home .ca-main-banner .splide__arrow:focus-visible {
  outline: 2px solid #fff;
}
.ca-theme-main > .ca-main-home .ca-main-banner .splide__progress, .ca-main-home .ca-main-banner .splide__progress {
  position: absolute;
  right: max(var(--ca-theme-page-gutter), calc((100% - var(--ca-theme-page-width)) / 2 + var(--ca-theme-page-gutter)));
  bottom: 20px;
  left: max(var(--ca-theme-page-gutter), calc((100% - var(--ca-theme-page-width)) / 2 + var(--ca-theme-page-gutter)));
  width: auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.ca-theme-main > .ca-main-home .ca-main-banner .splide__progress__bar, .ca-main-home .ca-main-banner .splide__progress__bar {
  height: 2px;
  background: #fff;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__card-badge, .ca-main-home .ca-main-banner .ca-banner-hero__card-badge {
  position: absolute;
  z-index: 1;
  margin: 16px;
  padding: 6px 10px;
  color: #061018;
  background: #00EB99;
  border-radius: 999px;
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__card-title, .ca-main-home .ca-main-banner .ca-banner-hero__card-title {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__card-title::after, .ca-main-home .ca-main-banner .ca-banner-hero__card-title::after {
  content: "";
  position: absolute;
  inset: -40px -16px -16px;
  z-index: -1;
  background: linear-gradient(transparent, rgba(4, 8, 14, 0.88));
}
@media (max-width: 1024px) {
  .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-wrap, .ca-main-home .ca-main-banner .ca-banner-slide-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 38%);
  }
}
@media (max-width: 767px) {
  .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide__track, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide__list, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide__slide, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-slide-item, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-hero, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-hero__content, .ca-theme-main > .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-slide-wrap, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide__track, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide__list, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .splide__slide, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-slide-item, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-hero, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-hero__content, .ca-main-home .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-slide-wrap {
    min-height: 540px;
    height: auto;
  }
  .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-wrap, .ca-main-home .ca-main-banner .ca-banner-slide-wrap {
    grid-template-columns: 1fr;
    align-content: center;
    padding-bottom: 96px;
  }
  .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__visual-card, .ca-main-home .ca-main-banner .ca-banner-hero__visual-card {
    max-height: 220px;
    object-fit: cover;
  }
  .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-l, .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-slide-r, .ca-main-home .ca-main-banner .ca-banner-slide-l, .ca-main-home .ca-main-banner .ca-banner-slide-r {
    min-width: 0;
  }
  .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero-controls, .ca-main-home .ca-main-banner .ca-banner-hero-controls {
    bottom: 56px;
  }
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-title-3, .ca-main-home .ca-main-banner .ca-title-3 {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.08;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__cta:hover, .ca-main-home .ca-main-banner .ca-banner-hero__cta:hover {
  color: #061018;
  background: #00EB99;
}
.ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__cta.is-disabled, .ca-main-home .ca-main-banner .ca-banner-hero__cta.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .ca-theme-main > .ca-main-home .ca-main-banner .ca-banner-hero__background, .ca-main-home .ca-main-banner .ca-banner-hero__background {
    animation: none;
  }
}
.ca-theme-main > .ca-main-home > .ca-main-section, .ca-main-home > .ca-main-section {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}
.ca-theme-main > .ca-main-home > .ca-main-banner, .ca-main-home > .ca-main-banner {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .ca-theme-main > .ca-main-home > .ca-main-banner, .ca-main-home > .ca-main-banner {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
  .ca-theme-main > .ca-main-home > .ca-main-banner .ca-banner-slide-wrap, .ca-main-home > .ca-main-banner .ca-banner-slide-wrap {
    max-width: none;
  }
}
.ca-theme-main > .ca-main-home .ca-main-intro, .ca-theme-main > .ca-main-home .ca-main-trusted, .ca-theme-main > .ca-main-home .ca-main-testimonials, .ca-theme-main > .ca-main-home .ca-main-faq, .ca-main-home .ca-main-intro, .ca-main-home .ca-main-trusted, .ca-main-home .ca-main-testimonials, .ca-main-home .ca-main-faq {
  background: #fafafa;
}
.ca-theme-main > .ca-main-home .ca-main-intro > .ca-main-wrap, .ca-main-home .ca-main-intro > .ca-main-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 32px);
  padding-top: clamp(18px, 3vw, 28px);
  padding-bottom: clamp(18px, 3vw, 28px);
}
.ca-theme-main > .ca-main-home .ca-main-intro__stats, .ca-main-home .ca-main-intro__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
  flex: 1;
  min-width: 280px;
}
.ca-theme-main > .ca-main-home .ca-main-stat, .ca-main-home .ca-main-stat {
  padding: clamp(12px, 1.8vw, 14px) clamp(8px, 1.2vw, 10px);
  background: #fff;
  border: 0;
  border-radius: clamp(12px, 1.4vw, 14px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.ca-theme-main > .ca-main-home .ca-main-courses__header, .ca-main-home .ca-main-courses__header {
  text-align: center;
}
.ca-theme-main > .ca-main-home .ca-main-courses__header .ca-main-kicker, .ca-main-home .ca-main-courses__header .ca-main-kicker {
  margin-bottom: 12px;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial, .ca-theme-main > .ca-main-home .ca-main-checklist > *, .ca-main-home .ca-main-testimonial, .ca-main-home .ca-main-checklist > * {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ca-main-border);
  border-radius: 16px;
}
.ca-theme-main > .ca-main-home .ca-main-tabs, .ca-main-home .ca-main-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 36px;
  overflow-x: auto;
}
.ca-theme-main > .ca-main-home .ca-main-tabs button, .ca-main-home .ca-main-tabs button {
  flex: 0 0 auto;
  padding: 11px 18px;
  border: 1px solid var(--ca-main-border);
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease;
}
.ca-theme-main > .ca-main-home .ca-main-tabs button[aria-selected="true"], .ca-main-home .ca-main-tabs button[aria-selected="true"] {
  color: #061018;
  background: var(--ca-main-highlight);
  border-color: var(--ca-main-highlight);
  animation: caMainTabIn 220ms ease both;
}
.ca-theme-main > .ca-main-home .ca-main-tab-content, .ca-main-home .ca-main-tab-content {
  min-width: 0;
  animation: caMainCoursesFade 400ms ease both;
}
.ca-theme-main > .ca-main-home .ca-main-tab-content:not([hidden]), .ca-main-home .ca-main-tab-content:not([hidden]) {
  display: block;
}
.ca-theme-main > .ca-main-home .ca-main-tab-content[hidden], .ca-main-home .ca-main-tab-content[hidden] {
  display: none;
}
.ca-theme-main > .ca-main-home .ca-main-courses__all, .ca-main-home .ca-main-courses__all {
  display: block;
  width: max-content;
  margin: 28px 0 0 auto;
  color: #2b2b2b;
  font-size: 0.875rem;
  font-weight: 700;
}
.ca-theme-main > .ca-main-home .ca-main-testimonials__intro, .ca-main-home .ca-main-testimonials__intro {
  max-width: 720px;
  margin: 16px 0 36px;
  color: var(--ca-main-muted);
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial-grid, .ca-main-home .ca-main-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
  max-height: 560px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.ca-theme-main > .ca-main-home .ca-main-testimonial-viewport, .ca-main-home .ca-main-testimonial-viewport {
  min-width: 0;
  overflow: hidden;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial-column, .ca-main-home .ca-main-testimonial-column {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
  min-width: 0;
  will-change: transform;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial, .ca-main-home .ca-main-testimonial {
  padding: 20px;
  border: 0;
  border-radius: clamp(12px, 1.4vw, 14px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.ca-theme-main > .ca-main-home .ca-main-testimonial__quote, .ca-main-home .ca-main-testimonial__quote {
  color: var(--ca-main-highlight);
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial p, .ca-main-home .ca-main-testimonial p {
  margin: 8px 0 0;
  color: #3f4145;
  font-size: clamp(0.9375rem, 1.15vw, 1rem);
  line-height: 1.65;
  word-break: keep-all;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial__person, .ca-main-home .ca-main-testimonial__person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial__avatar, .ca-main-home .ca-main-testimonial__avatar {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: var(--ca-main-highlight);
  background: #e3fbef;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial__person > span:last-child, .ca-main-home .ca-main-testimonial__person > span:last-child {
  display: grid;
  min-width: 0;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial__person b, .ca-main-home .ca-main-testimonial__person b {
  font-size: 0.9375rem;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial__person small, .ca-main-home .ca-main-testimonial__person small {
  overflow: hidden;
  color: var(--ca-main-muted);
  font-size: 0.8125rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-theme-main > .ca-main-home .ca-main-tools__intro, .ca-theme-main > .ca-main-home .ca-main-tools__beyond, .ca-main-home .ca-main-tools__intro, .ca-main-home .ca-main-tools__beyond {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(24px, 4vw, 48px);
}
.ca-theme-main > .ca-main-home .ca-main-tools__intro > p, .ca-theme-main > .ca-main-home .ca-main-tools__beyond > div > p:last-child, .ca-theme-main > .ca-main-home .ca-main-curriculum__intro, .ca-main-home .ca-main-tools__intro > p, .ca-main-home .ca-main-tools__beyond > div > p:last-child, .ca-main-home .ca-main-curriculum__intro {
  margin: 16px 0 0;
  color: var(--ca-main-muted);
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}
.ca-theme-main > .ca-main-home .ca-main-tools__beyond, .ca-main-home .ca-main-tools__beyond {
  margin-top: 56px;
  align-items: center;
}
.ca-theme-main > .ca-main-home .ca-main-tools__beyond h3, .ca-main-home .ca-main-tools__beyond h3 {
  margin: 14px 0 0;
  font-size: clamp(1.875rem, 3.4vw, 2.4375rem);
  line-height: 1.3;
}
.ca-theme-main > .ca-main-home .ca-main-tool-marks, .ca-theme-main > .ca-main-home .ca-main-skills, .ca-theme-main > .ca-main-home .ca-main-checklist, .ca-main-home .ca-main-tool-marks, .ca-main-home .ca-main-skills, .ca-main-home .ca-main-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.ca-theme-main > .ca-main-home .ca-main-skills, .ca-main-home .ca-main-skills {
  align-content: center;
  margin-top: 0;
}
.ca-theme-main > .ca-main-home .ca-main-skills span, .ca-main-home .ca-main-skills span {
  padding: 14px 18px;
  border: 1px solid var(--ca-main-border);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  transition: transform 180ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-skills span:hover, .ca-main-home .ca-main-skills span:hover {
  transform: scale(1.06);
}
.ca-theme-main > .ca-main-home .ca-main-tool-marks, .ca-main-home .ca-main-tool-marks {
  min-height: 120px;
  align-items: center;
}
.ca-theme-main > .ca-main-home .ca-main-tool-mark, .ca-main-home .ca-main-tool-mark {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0.25rem;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: width 260ms ease, height 260ms ease, transform 260ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-tool-mark.is-active, .ca-main-home .ca-main-tool-mark.is-active {
  width: 7rem;
  height: 7rem;
  transform: translateY(-4px);
  box-shadow: none;
}
.ca-theme-main > .ca-main-home .ca-main-tools__current.is-changing, .ca-main-home .ca-main-tools__current.is-changing {
  animation: caMainTabIn 220ms ease both;
}
.ca-theme-main > .ca-main-home .ca-main-tool-mark img, .ca-main-home .ca-main-tool-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: clamp(6px, 0.8vw, 12px);
}
.ca-theme-main > .ca-main-home .ca-main-youtube, .ca-main-home .ca-main-youtube {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.ca-theme-main > .ca-main-home .ca-main-youtube__media, .ca-main-home .ca-main-youtube__media {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.ca-theme-main > .ca-main-home .ca-main-youtube__media img, .ca-main-home .ca-main-youtube__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7777777778;
  object-fit: contain;
  transition: transform 300ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-youtube__media:hover img, .ca-main-home .ca-main-youtube__media:hover img {
  transform: scale(1.03);
}
.ca-theme-main > .ca-main-home .ca-main-social__cta, .ca-theme-main > .ca-main-home .ca-main-instagram a, .ca-main-home .ca-main-social__cta, .ca-main-home .ca-main-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ca-main-border);
}
.ca-theme-main > .ca-main-home .ca-main-youtube__copy p, .ca-main-home .ca-main-youtube__copy p {
  margin: 16px 0 0;
  color: var(--ca-main-muted);
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}
.ca-theme-main > .ca-main-home .ca-main-youtube__copy .ca-main-social__cta, .ca-main-home .ca-main-youtube__copy .ca-main-social__cta {
  margin-top: 20px;
}
.ca-theme-main > .ca-main-home .ca-main-instagram, .ca-main-home .ca-main-instagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  padding: clamp(18px, 2.6vw, 24px) clamp(22px, 3vw, 28px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.ca-theme-main > .ca-main-home .ca-main-instagram h2, .ca-main-home .ca-main-instagram h2 {
  font-size: clamp(1.1875rem, 1.6vw, 1.3125rem);
}
.ca-theme-main > .ca-main-home .ca-main-instagram p, .ca-main-home .ca-main-instagram p {
  margin: 6px 0 0;
  color: var(--ca-main-muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
}
.ca-theme-main > .ca-main-home .ca-main-curriculum .ca-main-wrap, .ca-main-home .ca-main-curriculum .ca-main-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
}
.ca-theme-main > .ca-main-home .ca-main-instagram > div:last-child, .ca-main-home .ca-main-instagram > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ca-theme-main > .ca-main-home .ca-main-instagram strong, .ca-main-home .ca-main-instagram strong {
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-discount, .ca-main-home .ca-main-discount {
  background: #fff;
}
.ca-theme-main > .ca-main-home .ca-main-discount .ca-main-wrap, .ca-main-home .ca-main-discount .ca-main-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.ca-theme-main > .ca-main-home .ca-main-discount__copy, .ca-main-home .ca-main-discount__copy {
  min-width: 0;
}
.ca-theme-main > .ca-main-home .ca-main-package-collage, .ca-main-home .ca-main-package-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.ca-theme-main > .ca-main-home .ca-main-package-collage img, .ca-main-home .ca-main-package-collage img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: none;
}
.ca-theme-main > .ca-main-home .ca-main-benefit, .ca-main-home .ca-main-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 0;
}
.ca-theme-main > .ca-main-home .ca-main-benefit__check, .ca-main-home .ca-main-benefit__check {
  flex: 0 0 auto;
  color: var(--ca-main-highlight);
  font-size: 1.25rem;
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-benefit > span:last-child, .ca-main-home .ca-main-benefit > span:last-child {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.ca-theme-main > .ca-main-home .ca-main-benefit b, .ca-main-home .ca-main-benefit b {
  font-size: clamp(1.0625rem, 1.45vw, 1.25rem);
}
.ca-theme-main > .ca-main-home .ca-main-benefit small, .ca-main-home .ca-main-benefit small {
  color: var(--ca-main-muted);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}
.ca-theme-main > .ca-main-home .ca-main-curriculum__intro, .ca-main-home .ca-main-curriculum__intro {
  max-width: 440px;
}
.ca-theme-main > .ca-main-home .ca-main-checklist, .ca-main-home .ca-main-checklist {
  flex-direction: column;
  margin-top: 0;
}
.ca-theme-main > .ca-main-home .ca-main-checklist > *, .ca-main-home .ca-main-checklist > * {
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-checklist > *::before, .ca-main-home .ca-main-checklist > *::before {
  content: "✓";
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: var(--ca-main-highlight);
  background: #e3fbef;
  border-radius: 50%;
  font-weight: 800;
}
.ca-theme-main > .ca-main-home .ca-main-checklist > *:hover, .ca-main-home .ca-main-checklist > *:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-box, .ca-main-home .ca-main-ctas .main-footer-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-div, .ca-main-home .ca-main-ctas .main-footer-div {
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border: 0;
  border-radius: clamp(14px, 1.8vw, 18px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-t, .ca-main-home .ca-main-ctas .main-footer-t {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-title, .ca-main-home .ca-main-ctas .main-footer-title {
  margin: 0;
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-link, .ca-main-home .ca-main-ctas .main-footer-link {
  flex: 0 0 auto;
  padding: 0;
  color: var(--ca-main-highlight);
  background: transparent;
  border-radius: 0;
  font-weight: 700;
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-text, .ca-main-home .ca-main-ctas .main-footer-text {
  color: var(--ca-main-muted);
  line-height: 1.65;
}
.ca-theme-main > .ca-main-home .ca-main-faq__intro, .ca-main-home .ca-main-faq__intro {
  margin: 14px 0 0;
  color: var(--ca-main-muted);
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}
.ca-theme-main > .ca-main-home .ca-main-faq__list, .ca-main-home .ca-main-faq__list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 12px);
  margin-top: 28px;
}
.ca-theme-main > .ca-main-home .ca-main-faq details, .ca-main-home .ca-main-faq details {
  margin: 0;
  padding: clamp(16px, 2.2vw, 20px) clamp(16px, 2.5vw, 24px);
  background: #fff;
  border: 0;
  border-radius: clamp(12px, 1.4vw, 14px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.ca-theme-main > .ca-main-home .ca-main-faq summary, .ca-main-home .ca-main-faq summary {
  cursor: pointer;
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  font-weight: 700;
}
.ca-theme-main > .ca-main-home .ca-main-faq details[open] summary, .ca-main-home .ca-main-faq details[open] summary {
  color: var(--ca-main-highlight);
}
.ca-theme-main > .ca-main-home .ca-main-faq details p, .ca-main-home .ca-main-faq details p {
  margin: 14px 0 0;
  color: var(--ca-main-muted);
  line-height: 1.7;
}
.ca-theme-main > .ca-main-home a:focus-visible, .ca-theme-main > .ca-main-home button:focus-visible, .ca-theme-main > .ca-main-home summary:focus-visible, .ca-main-home a:focus-visible, .ca-main-home button:focus-visible, .ca-main-home summary:focus-visible {
  outline: 3px solid var(--ca-main-highlight);
  outline-offset: 4px;
}
@media (min-width: 768px) {
  .ca-theme-main > .ca-main-home .ca-main-wrap, .ca-main-home .ca-main-wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .ca-theme-main > .ca-main-home .ca-main-intro > .ca-main-wrap, .ca-main-home .ca-main-intro > .ca-main-wrap {
    padding-top: clamp(18px, 3vw, 28px);
    padding-bottom: clamp(18px, 3vw, 28px);
  }
}
@media (min-width: 1440px) {
  .ca-theme-main > .ca-main-home .ca-main-wrap, .ca-main-home .ca-main-wrap {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .ca-theme-main > .ca-main-home .ca-main-intro > .ca-main-wrap, .ca-main-home .ca-main-intro > .ca-main-wrap {
    padding-top: clamp(18px, 3vw, 28px);
    padding-bottom: clamp(18px, 3vw, 28px);
  }
}
@media (max-width: 768px) {
  .ca-theme-main > .ca-main-home .ca-main-courses .ca-study-card__title, .ca-main-home .ca-main-courses .ca-study-card__title {
    font-size: 1rem;
  }
  .ca-theme-main > .ca-main-home .ca-main-courses .thumb-title, .ca-main-home .ca-main-courses .thumb-title {
    font-size: 1rem;
  }
  .ca-theme-main > .ca-main-home .ca-main-design-assets .ca-source-card__title, .ca-main-home .ca-main-design-assets .ca-source-card__title {
    font-size: 1rem;
  }
  .ca-theme-main > .ca-main-home .ca-main-intro__stats, .ca-theme-main > .ca-main-home .ca-main-testimonial-grid, .ca-main-home .ca-main-intro__stats, .ca-main-home .ca-main-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ca-theme-main > .ca-main-home .ca-main-youtube, .ca-theme-main > .ca-main-home .ca-main-tools__intro, .ca-theme-main > .ca-main-home .ca-main-tools__beyond, .ca-theme-main > .ca-main-home .ca-main-discount .ca-main-wrap, .ca-theme-main > .ca-main-home .ca-main-curriculum .ca-main-wrap, .ca-main-home .ca-main-youtube, .ca-main-home .ca-main-tools__intro, .ca-main-home .ca-main-tools__beyond, .ca-main-home .ca-main-discount .ca-main-wrap, .ca-main-home .ca-main-curriculum .ca-main-wrap {
    grid-template-columns: 1fr;
  }
  .ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-box, .ca-main-home .ca-main-ctas .main-footer-box {
    grid-template-columns: 1fr;
  }
  .ca-theme-main > .ca-main-home .ca-main-tools__beyond, .ca-main-home .ca-main-tools__beyond {
    margin-top: 44px;
  }
  .ca-theme-main > .ca-main-home .ca-main-skills, .ca-main-home .ca-main-skills {
    margin-top: 8px;
  }
}
.ca-theme-main > .ca-main-home .ca-main-tabs button, .ca-theme-main > .ca-main-home .ca-main-testimonial, .ca-theme-main > .ca-main-home .ca-main-checklist > *, .ca-main-home .ca-main-tabs button, .ca-main-home .ca-main-testimonial, .ca-main-home .ca-main-checklist > * {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  cursor: pointer;
}
.ca-theme-main > .ca-main-home .ca-main-tabs button:hover, .ca-theme-main > .ca-main-home .ca-main-tabs button:focus-visible, .ca-theme-main > .ca-main-home .ca-main-testimonial:hover, .ca-main-home .ca-main-tabs button:hover, .ca-main-home .ca-main-tabs button:focus-visible, .ca-main-home .ca-main-testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 25, 29, 0.08);
}
.ca-theme-main > .ca-main-home .ca-main-trusted .ca-affiliated-list, .ca-main-home .ca-main-trusted .ca-affiliated-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
.ca-theme-main > .ca-main-home .ca-main-trusted .ca-affiliated-list > *, .ca-main-home .ca-main-trusted .ca-affiliated-list > * {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ca-main-border);
  border-radius: 8px;
}
.ca-theme-main > .ca-main-home .ca-main-trusted .ca-affiliated-list img, .ca-main-home .ca-main-trusted .ca-affiliated-list img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  object-position: center;
  flex: none;
}
.ca-theme-main > .ca-main-home .ca-main-logo-rail, .ca-main-home .ca-main-logo-rail {
  overflow: visible;
}
@media (max-width: 767px) {
  .ca-theme-main > .ca-main-home, .ca-main-home {
    /* 375px mobile baseline */
  }
  .ca-theme-main > .ca-main-home .ca-main-wrap, .ca-main-home .ca-main-wrap {
    min-width: 0;
  }
  .ca-theme-main > .ca-main-home .ca-main-tabs, .ca-main-home .ca-main-tabs {
    justify-content: flex-start;
    margin-inline: calc(var(--ca-theme-page-gutter) * -1);
    padding-inline: var(--ca-theme-page-gutter);
  }
  .ca-theme-main > .ca-main-home .ca-main-testimonial-grid, .ca-main-home .ca-main-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 480px;
  }
  .ca-theme-main > .ca-main-home .ca-main-asset-grid, .ca-main-home .ca-main-asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ca-theme-main > .ca-main-home .ca-main-instagram, .ca-main-home .ca-main-instagram {
    align-items: flex-start;
  }
  .ca-theme-main > .ca-main-home .ca-main-tool-marks, .ca-main-home .ca-main-tool-marks {
    gap: 10px;
  }
  .ca-theme-main > .ca-main-home .ca-main-tool-mark, .ca-main-home .ca-main-tool-mark {
    width: 3.25rem;
    height: 3.25rem;
  }
  .ca-theme-main > .ca-main-home .ca-main-tool-mark.is-active, .ca-main-home .ca-main-tool-mark.is-active {
    width: 5.25rem;
    height: 5.25rem;
  }
  .ca-theme-main > .ca-main-home .ca-main-benefit, .ca-main-home .ca-main-benefit {
    gap: 8px;
  }
  .ca-theme-main > .ca-main-home .ca-main-discount .ca-main-wrap, .ca-main-home .ca-main-discount .ca-main-wrap {
    grid-template-columns: 1fr;
  }
  .ca-theme-main > .ca-main-home .ca-main-package-collage, .ca-main-home .ca-main-package-collage {
    max-width: 100%;
  }
  .ca-theme-main > .ca-main-home .ca-main-checklist > *, .ca-main-home .ca-main-checklist > * {
    flex: 1 1 14rem;
    min-width: 0;
  }
  .ca-theme-main > .ca-main-home .ca-main-trusted .ca-affiliated-list, .ca-main-home .ca-main-trusted .ca-affiliated-list {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
  }
  .ca-theme-main > .ca-main-home .ca-main-trusted .ca-affiliated-list > *, .ca-main-home .ca-main-trusted .ca-affiliated-list > * {
    min-height: 80px;
    padding: 1rem;
    border-radius: 6px;
  }
  .ca-theme-main > .ca-main-home .ca-main-trusted .ca-affiliated-list img, .ca-main-home .ca-main-trusted .ca-affiliated-list img {
    max-height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ca-theme-main > .ca-main-home .ca-main-tabs button, .ca-theme-main > .ca-main-home .ca-main-testimonial, .ca-theme-main > .ca-main-home .ca-main-tool-mark, .ca-theme-main > .ca-main-home .ca-main-checklist > *, .ca-main-home .ca-main-tabs button, .ca-main-home .ca-main-testimonial, .ca-main-home .ca-main-tool-mark, .ca-main-home .ca-main-checklist > * {
    transition: none;
  }
  .ca-theme-main > .ca-main-home .ca-main-logo-rail, .ca-theme-main > .ca-main-home .ca-main-testimonial-grid, .ca-main-home .ca-main-logo-rail, .ca-main-home .ca-main-testimonial-grid {
    animation: none !important;
  }
}
.ca-theme-main > .ca-main-home .ca-theme-header *, .ca-theme-main > .ca-main-home .ca-theme-footer *, .ca-main-home .ca-theme-header *, .ca-main-home .ca-theme-footer * {
  min-width: 0;
}
.ca-theme-main > .ca-main-home .ca-main-logo-rail, .ca-main-home .ca-main-logo-rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ca-theme-main > .ca-main-home .ca-main-logo-track, .ca-main-home .ca-main-logo-track {
  display: flex;
  width: max-content;
  min-width: 0;
  flex-wrap: nowrap;
  animation: caMainLogoMarquee 58s linear infinite;
  will-change: transform;
}
.ca-theme-main > .ca-main-home .ca-main-logo-track .ca-affiliated-list, .ca-main-home .ca-main-logo-track .ca-affiliated-list {
  display: flex;
  width: max-content !important;
  max-width: none !important;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: clamp(28px, 3.5vw, 40px);
  margin: 0;
  padding: 20px clamp(14px, 1.75vw, 20px);
}
.ca-theme-main > .ca-main-home .ca-main-logo-rail .ca-affiliated-list > *, .ca-main-home .ca-main-logo-rail .ca-affiliated-list > * {
  width: 180px;
  min-height: 52px;
  flex: 0 0 180px;
  padding: 0;
  background: transparent;
  border: 0;
}
.ca-theme-main > .ca-main-home .ca-main-logo-rail:hover .ca-main-logo-track, .ca-theme-main > .ca-main-home .ca-main-logo-rail:focus-within .ca-main-logo-track, .ca-main-home .ca-main-logo-rail:hover .ca-main-logo-track, .ca-main-home .ca-main-logo-rail:focus-within .ca-main-logo-track {
  animation-play-state: paused;
}
.ca-theme-main > .ca-main-home .ca-main-logo-rail.is-js-marquee .ca-main-logo-track, .ca-main-home .ca-main-logo-rail.is-js-marquee .ca-main-logo-track {
  animation: none !important;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial-grid, .ca-main-home .ca-main-testimonial-grid {
  overflow: hidden;
  max-height: 590px;
}
.ca-theme-main > .ca-main-home [data-reveal], .ca-main-home [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
.ca-theme-main > .ca-main-home [data-reveal].is-revealed, .ca-main-home [data-reveal].is-revealed {
  animation: caMainReveal 620ms ease both;
}
.ca-theme-main > .ca-main-home .ca-main-testimonial-column:hover, .ca-main-home .ca-main-testimonial-column:hover {
  animation-play-state: paused;
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-div, .ca-main-home .ca-main-ctas .main-footer-div {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.ca-theme-main > .ca-main-home .ca-main-ctas .main-footer-div:hover, .ca-main-home .ca-main-ctas .main-footer-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(23, 25, 29, 0.12);
}
.ca-theme-main > .ca-main-home .ca-main-faq details, .ca-main-home .ca-main-faq details {
  overflow: hidden;
}
.ca-theme-main > .ca-main-home .ca-main-faq details[open] p, .ca-main-home .ca-main-faq details[open] p {
  animation: caMainFaqFade 220ms ease both;
}
@keyframes caMainReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes caMainLogoMarquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes caMainTabIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes caMainCoursesFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes caMainReviewColumn {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes caMainFaqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ca-theme-main > .ca-main-home .ca-footer-main-content, .ca-theme-main > .ca-main-home .ca-footer-copyright, .ca-main-home .ca-footer-main-content, .ca-main-home .ca-footer-copyright {
  display: block;
}
.ca-theme-main > .ca-main-home .ca-theme-header__inner, .ca-theme-main > .ca-main-home .ca-header-secondary-nav__inner, .ca-theme-main > .ca-main-home .ca-header-category-panel__inner, .ca-theme-main > .ca-main-home .ca-theme-footer .ca-footer-section-inner-wrap, .ca-main-home .ca-theme-header__inner, .ca-main-home .ca-header-secondary-nav__inner, .ca-main-home .ca-header-category-panel__inner, .ca-main-home .ca-theme-footer .ca-footer-section-inner-wrap {
  width: 100%;
  max-width: var(--ca-theme-page-width);
  margin-inline: auto;
  padding-inline: var(--ca-theme-page-gutter);
}
.ca-theme-main > .ca-main-home .ca-header-category-panel, .ca-main-home .ca-header-category-panel {
  transition: opacity 180ms ease, transform 180ms ease;
  transform-origin: top center;
}
.ca-theme-main > .ca-main-home .ca-header-category-panel[hidden], .ca-main-home .ca-header-category-panel[hidden] {
  display: none;
}
.ca-theme-main > .ca-main-home .ca-header-category-panel:not([hidden]), .ca-main-home .ca-header-category-panel:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}
.ca-theme-main > .ca-main-home .ca-header-category-panel--closing, .ca-main-home .ca-header-category-panel--closing {
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .ca-theme-main > .ca-main-home [data-reveal], .ca-main-home [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .ca-theme-main > .ca-main-home [data-reveal].is-revealed, .ca-theme-main > .ca-main-home .ca-main-testimonial-column, .ca-main-home [data-reveal].is-revealed, .ca-main-home .ca-main-testimonial-column {
    animation: none !important;
  }
  .ca-theme-main > .ca-main-home .ca-main-logo-track, .ca-main-home .ca-main-logo-track {
    animation-duration: 90s !important;
    animation-iteration-count: infinite !important;
  }
}
