/**
 * 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: 1400px;
  --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));
  border-bottom: 1px solid var(--ca-theme-border);
}
.ca-theme-header.is-sticky-active {
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.ca-theme-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-width: 0;
  min-height: 60px;
  margin: 0 auto;
  padding: 0 var(--ca-theme-page-gutter);
}
.ca-theme-header__navigation {
  flex: 1 1 auto;
  min-width: 0;
}
.ca-theme-header__account {
  flex: 0 0 auto;
  min-width: 0;
}
.ca-inner {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
}
.ca-theme-sidebar-shell {
  flex: 0 0 auto;
  position: relative;
  z-index: 10;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}
.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-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-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 {
    --ca-theme-header-height: 0px;
  }
  .ca-theme-header {
    display: none;
  }
}
@media (max-width: 600px) {
  .admin-bar .ca-theme {
    --ca-theme-admin-bar-offset: 0px;
  }
}
@media (max-width: 480px) {
  .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;
  }
}
