/** Shopify CDN: Minification failed

Line 49:18 Expected identifier but found whitespace
Line 49:20 Unexpected "{"
Line 49:29 Expected ":"
Line 49:64 Expected ":"

**/
  /* Responsive Column Layout */
  .band-container {
    width: 100% !important;
    max-width: none !important;
    background-size: 100% 100% !important; /* Full stretch, no crop/repeat */
    background-repeat: no-repeat !important;
    background-position: center !important;
  }
@media (max-width: 1024px) {
    .column-row {
      flex-direction: column !important;
      gap: 20px !important;
    }
    .column-block {
      max-width: 100% !important;
      min-width: 100% !important;
    }
  }

  @media (max-width: 767px) {
    .band-container {
      padding: 15px !important;
    }
    .column-header, .column-body {
      padding: 15px !important;
    }
    .column-button {
      padding: 8px !important;
    }
  }

  /* Column Hover Effect (Optional) */
  .column-block:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
  }

  /* Ensure Border Radius Applies */
  .column-block, .column-header, .column-body {
    border-radius: {{ section.settings.column_border_radius }}px !important;
  }