/** Shopify CDN: Minification failed

Line 62:17 Expected ":"

**/
  .repair-section-container {
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    padding: 5px 0;
  }


  .repair-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }
  .repair-heading {
    margin-bottom: 25px;
    margin-top: 0; 
  }

  .repair-text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0 0 20px;
  }

  .repair-text p {
    margin: 0;
  }
  
  .repair-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 10px 20px;
  }

  @media screen and (min-width: 750px) {
    .repair-features-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .repair-features-item {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
  }

  .repair-features-icon {
    margin-right: 10px;
    line-height: 1.5;
  }

  .repair-image-column {
    position: relative;
    height: 100%;
    width: 100%;s
  }

  .repair-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
  
  .repair-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .repair-image-wrapper .placeholder-svg {
    border-radius: 12px;
  }

  .repair-cta-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 380px;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-wrap:no-wrap;
  }

  .cta-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-icon-wrapper svg {
    width: 26px;
    height: 26px;
  }

  .cta-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .cta-title {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .cta-phone-number {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
  }

  .cta-phone-number:hover {
    text-decoration: underline;
    color: #fff;
  }
 @media screen and (min-width: 990px) {
    .repair-grid {
        grid-template-columns: 3fr 1fr;
        gap: 60px;
    }
   .repair-section-container {
    padding: 50px 0;
}
 }