/** Shopify CDN: Minification failed

Line 31:9 Expected identifier but found whitespace
Line 31:11 Unexpected "{"
Line 31:18 Expected ":"
Line 31:47 Unexpected "{"
Line 31:54 Expected ":"
Line 31:80 Unexpected "{"
Line 31:81 Unexpected "{"
Line 31:88 Expected ":"
Line 31:114 Expected identifier but found "!"
Line 50:16 Expected identifier but found whitespace
... and 17 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from block stylesheet tags */
/* START_BLOCK:ai_gen_block_ec193ba (INDEX:52) */
/* Reset any existing borders and apply consistent borders to all multicolumn items */
.multicolumn-list__item {
  /* Remove any default borders that might cause doubling */
  border: none !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
  
  /* Apply consistent border on all sides */
  border: {{ block.settings.border_width }}px {{ block.settings.border_style }} {{ block.settings.border_color }} !important;
  
  /* Ensure box-sizing includes border */
  box-sizing: border-box;
}

/* Target the inner content wrapper if it exists */
.multicolumn-card {
  border: none !important;
}

/* Prevent border collapse issues */
.multicolumn-list {
  border-collapse: separate;
}

/* Specific fix for any column that might have inherited double borders */
.multicolumn-list__item:last-child,
.multicolumn-list__item:nth-child(3) {
  border-bottom: {{ block.settings.border_width }}px {{ block.settings.border_style }} {{ block.settings.border_color }} !important;
}

/* Ensure consistent border on all columns regardless of position */
.multicolumn .multicolumn-list .multicolumn-list__item {
  border: {{ block.settings.border_width }}px {{ block.settings.border_style }} {{ block.settings.border_color }} !important;
}
/* END_BLOCK:ai_gen_block_ec193ba */