/** Shopify CDN: Minification failed

Line 21:12 Expected identifier but found whitespace
Line 21:14 Unexpected "{"
Line 21:23 Expected ":"
Line 21:50 Unexpected "0"
Line 21:53 Unexpected "{"
Line 21:62 Expected ":"
Line 21:91 Expected ":"
Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:recovery-journey-selector (INDEX:53) */
.recovery-journey-selector {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px 0;
    background-color: {{ section.settings.background_color }};
  }

  .recovery-journey-selector__heading {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
    color: inherit;
  }

  .recovery-journey-selector__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  @media (max-width: 900px) {
    .recovery-journey-selector__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 480px) {
    .recovery-journey-selector__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  .recovery-journey-selector__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }

  .recovery-journey-selector__card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-color: #c8d8c8;
  }

  .recovery-journey-selector__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
  }

  .recovery-journey-selector__icon svg {
    width: 100%;
    height: 100%;
    stroke: #3d5a3e;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .recovery-journey-selector__label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: #2c2c2c;
  }
/* END_SECTION:recovery-journey-selector */