/** Shopify CDN: Minification failed

Line 38:12 Expected identifier but found whitespace
Line 38:14 Unexpected "{"
Line 38:23 Expected ":"
Line 604:17 Unexpected "{"
Line 604:26 Expected ":"
Line 611:17 Unexpected "{"
Line 611:26 Expected ":"
Line 618:17 Unexpected "{"
Line 618:26 Expected ":"
Line 625:17 Unexpected "{"
... and 7 more hidden warnings

**/
.solutions-role-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7f4ee;
    padding: 28px 14px 10px;
    color: #222;
  }

  /* BACKGROUND BLUEPRINT */
  .solutions-role-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .solutions-role-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: {{ section.settings.background_opacity | divided_by: 100.0 }};
  }

  .solutions-role-content {
    position: relative;
    z-index: 2;
    max-width: 1244px;
    margin: 0 auto;
  }

  /* =========================================================
     TOP HEADER
  ========================================================= */

  .solutions-role-header {
    text-align: center;
    margin-bottom: 18px;
  }

  .solutions-role-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5px;
    color: #b77b32;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .solutions-role-eyebrow::before,
  .solutions-role-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #d7b98e;
  }

  .solutions-role-heading {
    margin: 0 auto 7px;
    color: #151515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -1px;
  }

  .solutions-role-description {
    max-width: 680px;
    margin: 0 auto;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.45;
  }

  .solutions-role-description p {
    margin: 0;
  }

  /* =========================================================
     ROLE CARDS
  ========================================================= */

  .solutions-role-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 12px;
  }

  .solutions-role-card {
    position: relative;
    min-width: 0;
    height: 240px;
    overflow: hidden;
    border-radius: 5px;
    background: #27231f;
    border: 1px solid rgba(255,255,255,.3);
  }

  .solutions-role-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .solutions-role-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .solutions-role-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.03) 15%,
        rgba(0,0,0,.08) 35%,
        rgba(0,0,0,.75) 100%
      );
  }

  .solutions-role-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfc8bc;
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 11px;
  }

  .solutions-role-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 18px 18px 15px;
    color: #fff;
  }

  .solutions-role-card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 7px;
  }

  .solutions-role-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .solutions-role-card-title {
    margin: 0 0 6px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.05;
    font-weight: 400;
  }

  .solutions-role-card-subtitle {
    min-height: 29px;
    margin: 0 0 10px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .solutions-role-card-link {
    color: #e0a144;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  /* =========================================================
     DETAIL PANEL
  ========================================================= */

  .solutions-detail {
    display: grid;
    grid-template-columns: 31% 69%;
    min-height: 295px;
    background: rgba(255,253,249,.97);
    border: 1px solid #ded5c8;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.07);
  }

  /* DETAIL IMAGE */
  .solutions-detail-image {
    min-width: 0;
    padding: 9px;
  }

  .solutions-detail-image-inner {
    width: 100%;
    height: 100%;
    min-height: 275px;
    overflow: hidden;
    border-radius: 4px;
    background: #e6dfd4;
  }

  .solutions-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .solutions-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-family: Arial, sans-serif;
    font-size: 11px;
  }

  /* DETAIL RIGHT SIDE */
  .solutions-detail-content {
    min-width: 0;
    padding: 14px 20px 12px;
  }

  .solutions-detail-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
  }

  .solutions-detail-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid #c99a5b;
    border-radius: 50%;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solutions-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .solutions-detail-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b77b32;
    font-size: 18px;
  }

  .solutions-detail-heading-wrap {
    flex: 1;
    min-width: 0;
  }

  .solutions-detail-eyebrow {
    margin: 0 0 3px;
    color: #b77b32;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .solutions-detail-title {
    margin: 0;
    max-width: 600px;
    color: #191919;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 400;
  }

  /* =========================================================
     FOUR COLUMNS
  ========================================================= */

  .solutions-detail-columns {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 1.05fr 1fr;
    border-top: 1px solid #ded6ca;
  }

  .solutions-detail-column {
    min-width: 0;
    padding: 12px 14px 5px;
    border-right: 1px solid #ded6ca;
  }

  .solutions-detail-column:first-child {
    padding-left: 0;
  }

  .solutions-detail-column:last-child {
    border-right: 0;
  }

  .solutions-detail-column-title {
    margin: 0 0 13px;
    color: #252525;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
  }

  .solutions-detail-text {
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.45;
  }

  .solutions-detail-text p {
    margin: 0 0 8px;
  }

  /* =========================================================
     SOLUTION LIST
  ========================================================= */

  .solutions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .solutions-list-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }

  .solutions-list-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-top: 1px;
  }

  .solutions-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .solutions-list-check {
    width: 14px;
    flex: 0 0 14px;
    color: #c77a27;
    font-size: 11px;
    line-height: 1.4;
  }

  .solutions-list-text {
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
  }

  /* =========================================================
     BUSINESS BENEFITS
  ========================================================= */

  .solutions-benefits {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .solutions-benefit {
    display: flex;
    align-items: flex-start;
    gap: 7px;
  }

  .solutions-benefit-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .solutions-benefit-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .solutions-benefit-check {
    width: 22px;
    flex: 0 0 22px;
    color: #c77a27;
    font-size: 14px;
  }

  .solutions-benefit-text {
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
  }

  /* =========================================================
     EXAMPLE
  ========================================================= */

  .solutions-example {
    position: relative;
    padding-left: 13px;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.5;
  }

  .solutions-example::before {
    content: "“";
    position: absolute;
    left: -2px;
    top: -7px;
    color: #c77a27;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1;
  }

  .solutions-example p {
    margin: 0;
  }

  /* =========================================================
     FOOTER CTA
  ========================================================= */

  .solutions-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 965px;
    margin: 9px auto 0;
    padding: 9px 20px;
    background: rgba(239,233,223,.96);
    border-radius: 2px;
  }

  .solutions-footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .solutions-footer-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solutions-footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .solutions-footer-icon-placeholder {
    color: #b77b32;
    font-size: 22px;
  }

  .solutions-footer-text {
    color: #282828;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    line-height: 1.4;
  }

  .solutions-footer-text p {
    margin: 0;
  }

  .solutions-footer-buttons {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
  }

  .solutions-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 17px;
    border-radius: 3px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s ease;
  }

  .solutions-footer-button-primary {
    background: #b87929;
    color: #fff;
    border: 1px solid #b87929;
  }

  .solutions-footer-button-primary:hover {
    background: #99611f;
    border-color: #99611f;
  }

  .solutions-footer-button-secondary {
    background: transparent;
    color: #b87929;
    border: 1px solid #c89a61;
  }

  .solutions-footer-button-secondary:hover {
    background: #b87929;
    color: #fff;
  }

  .solutions-footer-arrow {
    margin-left: 7px;
    font-size: 11px;
  }


/* Make role cards clickable */

#solutions-role-{{ section.id }} .solutions-role-card {
  cursor: pointer;
}


/* Detail panels hidden by default */

#solutions-role-{{ section.id }} .solutions-detail {
  display: none;
}


/* Selected detail panel */

#solutions-role-{{ section.id }} .solutions-detail.active {
  display: grid;
}


/* Selected role card */

#solutions-role-{{ section.id }} .solutions-role-card.active {
  /* Keep your existing active design here */
}


/* Optional hover */

#solutions-role-{{ section.id }} .solutions-role-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#solutions-role-{{ section.id }} .solutions-role-card:hover {
  cursor: pointer;
}


/* Mobile */

@media screen and (max-width: 749px) {

  #solutions-role-{{ section.id }} .solutions-detail.active {
    display: block;
  }

}



  /* =========================================================
     TABLET
  ========================================================= */

  @media screen and (max-width: 1000px) {

    .solutions-role-section {
      padding-left: 12px;
      padding-right: 12px;
    }

    .solutions-role-heading {
      font-size: 36px;
    }

    .solutions-role-cards {
      grid-template-columns: repeat(5, minmax(150px, 1fr));
      overflow-x: auto;
      padding-bottom: 5px;
    }

    .solutions-role-card {
      min-width: 150px;
    }

    .solutions-detail {
      grid-template-columns: 34% 66%;
    }

    .solutions-detail-columns {
      grid-template-columns: repeat(2, 1fr);
    }

    .solutions-detail-column:nth-child(2) {
      border-right: 0;
    }

    .solutions-detail-column:nth-child(3),
    .solutions-detail-column:nth-child(4) {
      border-top: 1px solid #ded6ca;
    }

    .solutions-detail-column:nth-child(3) {
      padding-left: 0;
    }

    .solutions-footer {
      max-width: 100%;
    }
  }
  /* =========================================
   ROLE DETAIL SWITCHING
========================================= */

.solutions-role-card {
  cursor: pointer;
}

.solutions-role-details .solutions-detail {
  display: none;
}

.solutions-role-details .solutions-detail.active {
  display: grid;
}

/* Active card */
.solutions-role-card.active {
  transform: translateY(-2px);
}

/* Smooth transition */
.solutions-role-card {
  transition: all 0.25s ease;
}


/* Mobile */
@media screen and (max-width: 749px) {

  .solutions-role-details .solutions-detail.active {
    display: block;
  }

}
  /* =========================================================
     MOBILE
  ========================================================= */

  @media screen and (max-width: 749px) {

    .solutions-role-section {
      padding: 22px 10px 10px;
    }

    .solutions-role-header {
      margin-bottom: 15px;
    }

    .solutions-role-eyebrow {
      font-size: 9px;
      letter-spacing: 1.5px;
    }

    .solutions-role-eyebrow::before,
    .solutions-role-eyebrow::after {
      width: 18px;
    }

    .solutions-role-heading {
      font-size: 30px;
      line-height: 1.05;
      letter-spacing: -.5px;
    }

    .solutions-role-description {
      padding: 0 10px;
      font-size: 11px;
    }

    .solutions-role-cards {
      display: flex;
      overflow-x: auto;
      gap: 8px;
      margin-right: -10px;
      padding-right: 10px;
      scrollbar-width: thin;
    }

    .solutions-role-card {
      min-width: 205px;
      width: 205px;
      height: 245px;
      flex: 0 0 205px;
    }

    .solutions-role-card-title {
      font-size: 20px;
    }

    .solutions-detail {
      display: flex;
      flex-direction: column;
    }

    .solutions-detail-image {
      padding: 8px;
    }

    .solutions-detail-image-inner {
      min-height: 230px;
      height: 230px;
    }

    .solutions-detail-content {
      padding: 16px 14px 14px;
    }

    .solutions-detail-top {
      gap: 9px;
      margin-bottom: 13px;
    }

    .solutions-detail-icon {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
    }

    .solutions-detail-title {
      font-size: 23px;
      line-height: 1.08;
    }

    .solutions-detail-columns {
      grid-template-columns: 1fr;
    }

    .solutions-detail-column,
    .solutions-detail-column:first-child,
    .solutions-detail-column:nth-child(3) {
      padding: 15px 0;
      border-right: 0;
      border-bottom: 1px solid #ded6ca;
    }

    .solutions-detail-column:last-child {
      border-bottom: 0;
    }

    .solutions-detail-column-title {
      margin-bottom: 11px;
    }

    .solutions-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 13px;
    }

    .solutions-footer-left {
      align-items: flex-start;
    }

    .solutions-footer-buttons {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .solutions-footer-button {
      width: 100%;
      padding: 0 8px;
      font-size: 8px;
    }
  }

  @media screen and (max-width: 480px) {

    .solutions-role-heading {
      font-size: 27px;
    }

    .solutions-role-card {
      min-width: 190px;
      width: 190px;
      flex-basis: 190px;
    }

    .solutions-footer-buttons {
      grid-template-columns: 1fr;
    }
  }
