/* scoped: si-InsideTheRangeSection */

  .inside-range-section:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    width: 100%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #FFFFFF;
    box-sizing: border-box;
  }

  .heading-group:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 720px;
  }

  .section-title:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0;
  }

  .title-underline:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    width: 60px;
    height: 4px;
    background: #D62121;
  }

  .section-desc:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #272727;
    margin: 4px 0 0;
  }

  .photo-grid:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .photo-cell:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 3 / 2;
    background: #E8E8EC;
  }

  .photo-cell img:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .photo-cell:hover img:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    transform: scale(1.03);
  }

  .tour-btn:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 4px;
    background: linear-gradient(90deg, #D62121 0%, #701111 100%);
    box-shadow: 0px 4px 20.4px 0px #D62121C2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .tour-btn:hover:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    opacity: 0.9;
  }



  html.is-mobile .inside-range-section:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    width: 430px;
    padding: 64px 24px;
    gap: 28px;
  }

  html.is-mobile .inside-range-section .section-title:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    font-size: 28px;
  }

  html.is-mobile .inside-range-section .section-desc:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    font-size: 14px;
    padding: 0 8px;
  }

  html.is-mobile .inside-range-section .photo-grid:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  html.is-mobile .inside-range-section .photo-cell:hover img:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    transform: none;
  }

  html.is-mobile .inside-range-section .tour-btn:where(.si-InsideTheRangeSection, .si-InsideTheRangeSection *){
    width: 100%;
    max-width: 370px;
    height: 46px;
    box-sizing: border-box;
  }
