/**
 * Design tokens for ca-custom plugin
 * Based on .example/script/_variables.scss structure
 * 
 * Centralized variables to eliminate duplication across SCSS files
 */
/**
 * Color System
 * Migrated from $color-map found in all feature files
 * Maintains backward compatibility with numbered system
 */
/**
 * Semantic color aliases for better maintainability
 */
/**
 * Typography System
 * Migrated from $font-attributes-map
 */
/**
 * Font Sizes - Title
 */
/**
 * Font Sizes - Subtitle
 */
/**
 * Font Sizes - Text
 */
/**
 * Font Sizes - Caption
 */
/**
 * Font Weights
 */
/**
 * Font Weights - Title
 */
/**
 * Font Weights - Subtitle
 */
/**
 * Font Weights - Text
 */
/**
 * Font Weights - Caption
 */
/**
 * Line Heights
 */
/**
 * Responsive Font Sizes
 * Base font sizes for root element
 */
/**
 * Spacing Scale
 * Base unit: 8px for consistency
 */
/**
 * Legacy spacing aliases
 */
/**
 * Borders
 */
/**
 * Z-index Scale
 */
/**
 * Breakpoints
 */
/**
 * Legacy breakpoint aliases
 */
/**
 * Container Widths
 */
/**
 * Shadows
 */
/**
 * Transitions
 */
/**
 * Common transitions
 */
/**
 * WordPress Admin Sidebar
 */
/**
 * Font attributes map for backward compatibility
 * Used by front-default.scss to generate utility classes
 */
/**
 * Reusable mixins for ca-custom plugin
 * Based on .example/script/_mixins.scss patterns
 * 
 * Common patterns and utilities for consistent styling
 */
/**
 * Responsive breakpoint mixins
 * Mobile-first approach with multiple breakpoints
 */
/**
 * Legacy responsive mixins for backward compatibility
 */
/**
 * Named breakpoint mixins
 */
/**
 * Flexbox utilities
 */
/**
 * Grid Layout Mixins
 */
/**
 * Button Mixins
 */
/**
 * Card Component Mixins
 */
/**
 * Form Control Mixins
 */
/**
 * Text Utilities
 */
/**
 * Position Utilities
 */
/**
 * Aspect Ratio Mixins
 */
/**
 * Scrollbar Styling
 */
/**
 * Loading States
 */
@keyframes ca-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Overlay Mixins
 */
/**
 * Animation Mixins
 */
@keyframes ca-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * Utility Mixins
 */
/**
 * Container Mixins
 */
/**
 * WordPress Specific Mixins
 */
.ca-affiliated-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
}
.ca-affiliated-list[data-count="1"] {
  grid-template-columns: 1fr;
  max-width: 300px;
}
.ca-affiliated-list[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
  max-width: 400px;
}
.ca-affiliated-list[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
}
.ca-affiliated-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}
.ca-affiliated-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ca-affiliated-list__item:hover, .ca-affiliated-list__item:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d9d9d9;
}
.ca-affiliated-list__item:hover::before, .ca-affiliated-list__item:focus::before {
  opacity: 1;
}
.ca-affiliated-list__item:hover .ca-affiliated-list__logo, .ca-affiliated-list__item:focus .ca-affiliated-list__logo {
  transform: scale(1.05);
}
.ca-affiliated-list__item:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.ca-affiliated-list__logo {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.ca-affiliated-list__name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 992px) {
  .ca-affiliated-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  .ca-affiliated-list[data-count="1"], .ca-affiliated-list[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }
  .ca-affiliated-list__item {
    padding: 1.25rem;
    min-height: 100px;
  }
  .ca-affiliated-list__logo {
    max-height: 70px;
  }
}
@media (max-width: 768px) {
  .ca-affiliated-list {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
  }
  .ca-affiliated-list[data-count="1"], .ca-affiliated-list[data-count="2"], .ca-affiliated-list[data-count="3"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
  }
  .ca-affiliated-list__item {
    padding: 1rem;
    min-height: 80px;
    border-radius: 6px;
  }
  .ca-affiliated-list__item:hover, .ca-affiliated-list__item:focus {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .ca-affiliated-list__logo {
    max-height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ca-affiliated-list__item {
    transition: none;
  }
  .ca-affiliated-list__item:hover .ca-affiliated-list__logo {
    transform: none;
  }
  .ca-affiliated-list__logo {
    transition: none;
  }
}
