/**
 * Notice Feature Styles
 * 
 * Styles for notice lists, items, and single notice pages
 * Uses common variables and mixins for consistency
 */
/**
 * Global SCSS Variables
 * 
 * Implements the design system from STYLE.md
 * All design tokens are centralized here
 */
/**
 * Global SCSS Mixins
 * 
 * Reusable mixins for consistent styling patterns
 * Import variables before using these mixins
 */
/**
 * Responsive Breakpoints
 * Mobile-first approach
 */
/**
 * Button Base
 * Standard button styling foundation
 */
/**
 * Button Variants
 */
/**
 * Button Sizes
 */
/**
 * Card Component
 */
/**
 * Form Controls
 */
/**
 * Flexbox Utilities
 */
/**
 * Grid Layout
 */
/**
 * Text Utilities
 */
/**
 * Spacing Utilities
 */
/**
 * Visual Effects
 */
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Accessibility
 */
/**
 * Enhanced Grid System
 * Flexible grid system with responsive behavior
 */
/**
 * Card Component Enhancement
 * Consistent card styling across all pages
 */
/**
 * Overlay Pattern
 * For image overlays with gradient
 */
/**
 * Button Variations
 * Extended button styles for consistency
 */
/**
 * Form Control Variations
 * Additional form patterns
 */
/**
 * Loading States
 * Consistent loading patterns
 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Responsive Typography
 * Fluid type sizing
 */
/**
 * Aspect Ratio
 * Maintain aspect ratios for media
 */
/**
 * Container Query Support
 * Progressive enhancement for container queries
 */
/**
 * Dark Mode Support
 * Prepare for future dark mode implementation
 */
/**
 * Banner Base Mixin
 * Consistent banner foundation
 */
/**
 * Banner Image Mixin
 * Consistent image styling
 */
/**
 * Responsive Banner Mixin
 * Handles aspect ratio changes
 */
/**
 * Banner Loading State
 * Shows loading skeleton
 */
/**
 * Banner Error State
 * Shows error state
 */
/**
 * Product Card Base
 * Consistent product card styling
 */
/**
 * Product Image Container
 * Maintains aspect ratio for product images
 */
/**
 * Price Display
 * Consistent price formatting
 */
/**
 * Sale Price
 * Styling for discounted prices
 */
/**
 * Form Group
 * Consistent form field grouping
 */
/**
 * Table Base
 * Consistent table styling
 */
/**
 * Badge
 * Small label components
 */
/**
 * Modal Base
 * Consistent modal styling
 */
/**
 * Smooth Scroll
 * Enable smooth scrolling behavior
 */
/**
 * Custom Scrollbar
 * Styled scrollbar for webkit browsers
 */
/**
 * Tab List
 * Horizontal tab navigation
 */
/**
 * Tab Item
 * Individual tab styling
 */
/**
 * Pagination
 * Page navigation styling
 */
/**
 * Responsive Image
 * Optimized image loading with placeholder
 */
/**
 * Sticky Position
 * Cross-browser sticky positioning
 */
/**
 * Visually Hidden
 * Hide element visually but keep accessible
 */
/**
 * Reset List
 * Remove default list styling
 */
/**
 * Reset Button
 * Remove default button styling
 */
/**
 * Link Reset
 * Remove default link styling
 */
/**
 * Notice List Styles
 */
.ca-notice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  border-top: 2px solid #333333;
}
.ca-notice-item {
  border-bottom: 1px solid #eeeeee;
}
.ca-notice-item:last-child {
  border-bottom: none;
}
.ca-notice-item-link {
  display: block;
  padding: 1rem 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease-in-out;
}
.ca-notice-item-link:hover {
  background-color: #fafafa;
}
.ca-notice-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ca-notice-item-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  flex-grow: 1;
}
.ca-notice-item-date {
  font-size: 0.875rem;
  color: #666666;
  flex-shrink: 0;
}
.ca-notice-item-excerpt {
  font-size: 0.875rem;
  color: #333333;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.ca-no-notices {
  padding: 1.25rem;
  text-align: center;
  color: #666666;
  border-bottom: 1px solid #eeeeee;
}
/**
 * Notice Pagination
 * Reusable pagination pattern
 */
.ca-notice-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
}
.ca-notice-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  font-weight: 400;
}
.ca-notice-pagination .page-numbers:hover, .ca-notice-pagination .page-numbers.current {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-notice-pagination .page-numbers.current {
  font-weight: 600;
}
.ca-notice-pagination .page-numbers.dots {
  border: none;
  padding: 0.5rem 0;
  background-color: transparent;
  color: #333333;
  cursor: default;
}
.ca-notice-pagination .page-numbers.dots:hover {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.ca-notice-pagination .page-numbers.next, .ca-notice-pagination .page-numbers.prev {
  font-weight: 500;
}
/**
 * Single Notice Content Styles
 */
.ca-single-notice-article {
  padding: 1.25rem 0;
}
.ca-single-notice-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eeeeee;
}
.ca-single-notice-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}
.ca-single-notice-meta {
  font-size: 0.875rem;
  color: #666666;
}
.ca-single-notice-author {
  margin-left: 0.75rem;
}
.ca-single-notice-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
.ca-single-notice-content p {
  margin-bottom: 1.5em;
}
.ca-single-notice-content a {
  color: #0073aa;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
.ca-single-notice-content a:hover {
  text-decoration: none;
}
.ca-single-notice-content ul, .ca-single-notice-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5rem;
}
.ca-single-notice-content blockquote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #333333;
  background-color: #fafafa;
}
/**
 * Single Notice Navigation
 */
.ca-single-notice-navigation {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eeeeee;
}
.ca-notice-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ca-notice-nav-prev a, .ca-notice-nav-next a {
  display: block;
  padding: 0.75rem;
  text-decoration: none;
  border: 1px solid #f6f6f6;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.ca-notice-nav-prev a:hover, .ca-notice-nav-next a:hover {
  background-color: #fafafa;
  border-color: #eeeeee;
}
.ca-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #999999;
  margin-bottom: 0.25rem;
}
.ca-nav-title {
  font-size: 0.875rem;
  color: #333333;
  font-weight: 500;
}
.ca-nav-empty {
  display: block;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #999999;
  border: 1px solid #f6f6f6;
  border-radius: 0.25rem;
}
/**
 * Shared pagination styles for blog and project
 * Using the same mixin for consistency
 */
.ca-blog-pagination, .ca-project-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid #eeeeee;
}
.ca-blog-pagination .page-numbers, .ca-project-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  font-weight: 400;
}
.ca-blog-pagination .page-numbers:hover, .ca-blog-pagination .page-numbers.current, .ca-project-pagination .page-numbers:hover, .ca-project-pagination .page-numbers.current {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-blog-pagination .page-numbers.current, .ca-project-pagination .page-numbers.current {
  font-weight: 600;
}
.ca-blog-pagination .page-numbers.dots, .ca-project-pagination .page-numbers.dots {
  border: none;
  padding: 0.5rem 0;
  background-color: transparent;
  color: #333333;
  cursor: default;
}
.ca-blog-pagination .page-numbers.dots:hover, .ca-project-pagination .page-numbers.dots:hover {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.ca-blog-pagination .page-numbers.next, .ca-blog-pagination .page-numbers.prev, .ca-project-pagination .page-numbers.next, .ca-project-pagination .page-numbers.prev {
  font-weight: 500;
}
