/**
 * Post Styles
 * Implements blog posts, projects, and related functionality
 */
/**
 * 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
 */
/**
 * Estimate Table Layout
 * Fixed layout table with customizable column widths
 * Supports responsive design
 */
.ca-blog-repeater {
  display: grid;
  grid-template-columns: repeat(var(--ca-blog-grid-columns, 3), 1fr);
  gap: var(--ca-blog-grid-gap, 1.25rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .ca-blog-repeater {
    grid-template-columns: repeat(var(--ca-blog-grid-columns-tablet, 2), 1fr);
    gap: calc(var(--ca-blog-grid-gap, $grid-gap) / 1.5);
  }
}
@media (max-width: 768px) {
  .ca-blog-repeater {
    grid-template-columns: repeat(var(--ca-blog-grid-columns-mobile, 1), 1fr);
    gap: calc(var(--ca-blog-grid-gap, $grid-gap) / 2);
  }
}
.ca-blog-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  position: relative;
  width: 100%;
  background-color: #ffffff;
}
.ca-blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.ca-blog-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
}
.ca-blog-card-link:hover, .ca-blog-card-link:focus {
  color: inherit;
  text-decoration: none;
}
.ca-blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
@supports not (aspect-ratio: 1) {
  .ca-blog-card-image {
    position: relative;
  }
  .ca-blog-card-image::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .ca-blog-card-image > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.ca-blog-card-link:hover .ca-blog-card-image {
  transform: scale(1.05);
}
.ca-blog-card-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@supports not (aspect-ratio: 1) {
  .ca-blog-card-image-placeholder {
    position: relative;
  }
  .ca-blog-card-image-placeholder::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .ca-blog-card-image-placeholder > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.ca-blog-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  box-sizing: border-box;
  opacity: 1;
  transition: background-color 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .ca-blog-card-overlay {
    padding: 1rem;
  }
}
.ca-blog-card-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .ca-blog-card-title {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .ca-blog-card-title {
    font-size: 0.875rem;
  }
}
.ca-blog-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 {
  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;
  font-weight: 400;
}
.ca-blog-pagination .page-numbers:hover, .ca-blog-pagination .page-numbers.current {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-blog-pagination .page-numbers.current {
  font-weight: 600;
}
.ca-blog-pagination .page-numbers.dots {
  border: none;
  padding: 0.5rem 0;
  background-color: transparent;
  color: #333333;
  cursor: default;
  font-weight: 400;
}
.ca-blog-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 {
  font-weight: 500;
}
.se-oglink .ca-blog-description-bookmark {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 1.25rem auto;
  padding: 1rem;
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease-in-out;
}
.se-oglink .ca-blog-description-bookmark:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.se-oglink .ca-blog-description-bookmark img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}
.se-oglink .ca-blog-description-bookmark .ca-blog-description-bookmark-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: -0.5px;
  word-break: keep-all;
  margin-bottom: 0.25rem;
  color: #333333;
}
.se-oglink .ca-blog-description-bookmark .ca-blog-description-bookmark-url {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: #666666;
  word-break: break-all;
}
.se-oembed .ca-blog-description-embed {
  aspect-ratio: 1.7777777778;
  overflow: hidden;
  margin: 1.25rem auto;
  max-width: 70%;
}
@supports not (aspect-ratio: 1) {
  .se-oembed .ca-blog-description-embed {
    position: relative;
  }
  .se-oembed .ca-blog-description-embed::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
  }
  .se-oembed .ca-blog-description-embed > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.se-oembed .ca-blog-description-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .se-oglink .ca-blog-description-bookmark, .se-oembed .ca-blog-description-embed {
    width: 90%;
    margin: 1rem auto;
  }
  .se-oglink .ca-blog-description-bookmark-title {
    font-size: 1rem;
  }
  .se-oglink .ca-blog-description-bookmark-url {
    font-size: 0.75rem;
  }
}
.ca-blog-filter-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.ca-blog-filter-section {
  margin-bottom: 1.25rem;
}
.ca-blog-filter-title {
  font-size: 1.125rem;
  color: #333333;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #d9d9d9;
}
.ca-blog-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ca-blog-filter-item {
  margin-bottom: 0.25rem;
}
.ca-blog-filter-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  padding: 3px 0;
}
.ca-blog-filter-category-link {
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
  text-decoration: none;
  flex-grow: 1;
  transition: color 0.2s ease-in-out;
}
.ca-blog-filter-category-link:hover {
  color: #333333;
}
.ca-blog-filter-item.active > .ca-blog-filter-category-header > .ca-blog-filter-category-link {
  font-weight: 700;
  color: #333333;
}
.ca-blog-filter-subcategory-list {
  margin-left: 1rem;
  padding-left: 0.75rem;
  border-left: 1px dashed #eeeeee;
}
.ca-blog-filter-category-submenu {
  display: none;
  padding-left: 1rem;
  transition: all 0.2s ease-in-out;
}
.ca-blog-filter-item.active > .ca-blog-filter-category-header > .ca-blog-filter-category-submenu, .ca-blog-filter-item .ca-blog-filter-category-submenu.open {
  display: block;
}
.ca-blog-filter-category-toggle {
  cursor: pointer;
  margin-left: 0.25rem;
  font-size: 1rem;
  color: #666666;
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
  user-select: none;
}
.ca-blog-filter-category-toggle:hover {
  color: #333333;
}
.ca-blog-filter-category-toggle-open {
  transform: rotate(-180deg);
}
.ca-theme-content-filter-column .ca-blog-filter-container, .ca-theme-content-filter-column .ca-blog-filter-section {
  margin-bottom: 0;
}
.ca-theme-content-filter-column .ca-blog-filter-title {
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d9d9d9;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.ca-theme-content-filter-column .ca-blog-filter-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.ca-theme-content-filter-column .ca-blog-filter-item {
  margin-bottom: 0.125rem;
}
.ca-theme-content-filter-column .ca-blog-filter-category-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 26px;
  margin: 0 0 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-theme-content-filter-column .ca-blog-filter-category-header:hover {
  background-color: #fafafa;
  color: #000000;
}
.ca-theme-content-filter-column .ca-blog-filter-category-link {
  display: inline-flex;
  align-items: baseline;
  flex-grow: 1;
  min-width: 0;
  color: #111111;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}
.ca-theme-content-filter-column .ca-blog-filter-item.active > .ca-blog-filter-category-header {
  background-color: #f6f6f6;
  box-shadow: none;
}
.ca-theme-content-filter-column .ca-blog-filter-item.active > .ca-blog-filter-category-header > .ca-blog-filter-category-link, .ca-theme-content-filter-column .ca-blog-filter-item.active > .ca-blog-filter-category-header > .ca-blog-filter-category-toggle {
  color: #000000;
  font-weight: 700;
}
.ca-theme-content-filter-column .ca-blog-filter-subcategory-list {
  margin-left: 1rem;
  padding-left: 0.5rem;
  border-left: 0;
}
.ca-theme-content-filter-column .ca-blog-filter-category-submenu {
  padding-left: 0.75rem;
}
.ca-theme-content-filter-column .ca-blog-filter-category-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0.25rem;
  color: #666666;
  font-size: 1rem;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.ca-theme-content-filter-column .ca-blog-filter-category-toggle:hover {
  color: #000000;
}
.ca-theme-project-page-hero {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  background-image: url("https://d3amsrstn0z2mu.cloudfront.net/wp-content/uploads/2020/10/16133716/End.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-bottom: 1px solid #111111;
}
.ca-theme-project-page-hero::before, .ca-theme-project-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ca-theme-project-page-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.52) 100%);
}
.ca-theme-project-page-hero::after {
  background: repeating-linear-gradient(135deg, transparent 0, transparent 44px, rgba(255, 255, 255, 0.13) 44px, rgba(255, 255, 255, 0.13) 45px, transparent 45px, transparent 88px);
  opacity: 0.28;
}
.ca-theme-project-page-hero .ca-theme-section__inner {
  position: relative;
  z-index: 1;
}
.ca-theme-project-page-hero .ca-section-block {
  min-height: 260px;
  padding: 4rem 0 3rem;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
@media (max-width: 768px) {
  .ca-theme-project-page-hero .ca-section-block {
    min-height: 220px;
    padding: 3rem 0 2.5rem;
  }
}
.ca-theme-project-page-hero__title {
  margin: 0;
  color: inherit;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .ca-theme-project-page-hero__title {
    font-size: 1.875rem;
  }
}
.ca-theme-project-page-hero__rule {
  width: 96px;
  margin: 1rem 0;
  border: 0;
  border-top: 2px solid currentColor;
}
.ca-theme-project-page-hero__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.ca-project-index-section {
  background-color: #ffffff;
}
.ca-project-index-section .ca-section-block {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.ca-project-repeater {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(var(--ca-project-grid-columns, 3), 1fr);
  gap: var(--ca-project-grid-gap, 1.25rem);
}
@media (max-width: 992px) {
  .ca-project-repeater {
    grid-template-columns: repeat(var(--ca-project-grid-columns-tablet, 2), 1fr);
    gap: calc(var(--ca-project-grid-gap, 1.25rem) * 0.8);
  }
}
@media (max-width: 768px) {
  .ca-project-repeater {
    grid-template-columns: repeat(var(--ca-project-grid-columns-mobile, 1), 1fr);
    gap: calc(var(--ca-project-grid-gap, 1.25rem) * 0.8);
  }
}
.ca-project-infinite-wrap {
  width: 100%;
}
.ca-project-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #111111;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.ca-project-card:hover {
  border-color: #000000;
  transform: translateY(-2px);
}
.ca-project-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
  cursor: pointer;
}
.ca-project-card-link:hover, .ca-project-card-link:focus {
  color: inherit;
  text-decoration: none;
}
.ca-project-card-link:focus-visible {
  outline: 2px solid #e9b042;
  outline-offset: 3px;
}
.ca-project-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.3333333333;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}
@supports not (aspect-ratio: 1) {
  .ca-project-card-image {
    position: relative;
  }
  .ca-project-card-image::before {
    content: "";
    display: block;
    padding-bottom: 75%;
  }
  .ca-project-card-image > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.ca-project-card-link:hover .ca-project-card-image, .ca-project-card-link:focus-visible .ca-project-card-image {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.08);
}
.ca-project-card-image-placeholder {
  width: 100%;
  aspect-ratio: 1.3333333333;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@supports not (aspect-ratio: 1) {
  .ca-project-card-image-placeholder {
    position: relative;
  }
  .ca-project-card-image-placeholder::before {
    content: "";
    display: block;
    padding-bottom: 75%;
  }
  .ca-project-card-image-placeholder > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.ca-project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.25rem 1rem;
  box-sizing: border-box;
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.78) 100%);
  transition: background 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .ca-project-card-overlay {
    padding: 1rem;
  }
}
.ca-project-card-link:hover .ca-project-card-overlay, .ca-project-card-link:focus-visible .ca-project-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.9) 100%);
}
.ca-project-card-title-box {
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.ca-project-card-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 992px) {
  .ca-project-card-title {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .ca-project-card-title {
    font-size: 0.875rem;
  }
}
.ca-project-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid #111111;
}
.ca-project-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #111111;
  border-radius: 0;
  color: #111111;
  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: 500;
  line-height: 1.2;
}
.ca-project-pagination .page-numbers:hover, .ca-project-pagination .page-numbers.current {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.ca-project-pagination .page-numbers:focus-visible {
  outline: 2px solid #e9b042;
  outline-offset: 2px;
}
.ca-project-pagination .page-numbers.current {
  font-weight: 700;
}
.ca-project-pagination .page-numbers.dots {
  border: none;
  padding: 0.5rem 0;
  background-color: transparent;
  color: #333333;
  cursor: default;
  font-weight: 400;
}
.ca-project-pagination .page-numbers.dots:hover {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.ca-project-pagination .page-numbers.next, .ca-project-pagination .page-numbers.prev {
  font-weight: 500;
}
.ca-project-infinite-status {
  min-height: 1.5rem;
  margin-top: 2rem;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.ca-project-infinite-sentinel {
  width: 100%;
  height: 1px;
  margin-top: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .ca-theme-content-filter-column .ca-blog-filter-category-header, .ca-theme-content-filter-column .ca-blog-filter-category-link, .ca-theme-content-filter-column .ca-blog-filter-category-toggle, .ca-theme-content-filter-column .ca-blog-filter-category-submenu, .ca-project-card, .ca-project-card-image, .ca-project-card-overlay, .ca-project-pagination .page-numbers {
    transition: none;
  }
  .ca-project-card:hover, .ca-project-card-link:hover .ca-project-card-image, .ca-project-card-link:focus-visible .ca-project-card-image {
    transform: none;
  }
}
