@media(min-width: 800px)
{
.buttons.cnt {display: inline-flex;
             flex-wrap: nowrap;
             }    
    .buttons.cnt .btn {
        flex-grow: 0;
        min-width: 140px; 
    }
}

@media(max-width: 763px)
{
.buttons.cnt {display: flex;
             flex-wrap: wrap;
             margin: 10px auto 0px;
             }    
    .buttons.cnt .btn {
        flex-grow: 1;
        min-width: 140px; 
                max-width: 75%;
        margin: 0 auto;
    }
}


  .address .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0px;
  }
  
  /* Левая колонка */
  .address__left {
    flex: 1;
  }
  .address__left .route__title {
    font-size: 28px;
    font-weight: 700;
    color: #2E2556;
    margin-bottom: 12px;
  }
  .address__left .route__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #2E2556;
    margin-bottom: 24px;
  }
  .address__left .route__subtitle_color_white {
    color: #743F91;
  }
  .address__left .route__subtitle_font-weight_bold {
    font-weight: 700;
  }
  
  /* Список станций */
  .route__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
  }
  .route__item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .route__border {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .route__border_bg_red {
    background: #E63946;
  }
  .route__border_bg_yellow {
    background: #F4D35E;
  }
  .route__pic-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
  .route__list-text {
    font-size: 16px;
    color: #2E2556;
  }
  
  /* Текст про транспорт */
  .route__text {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
  }
  
  /* Правая колонка — карта */
  .address__right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .address__right iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
  }
  
  /* Адаптив */
  @media (max-width: 992px) {
    .address .container {
      flex-direction: column;
    }
    .address__right {
              margin: -32px auto 0px;
    }
  }
  

  .cnt__wrapper {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 80px;
}
.cnt__get
{
 display: flex;
 flex-direction: column;
 justify-content: center;
 
}

.cnt__get + section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
}

.cnt__get + section h2 {width: 245px;}
    .contacts {
    width: 245px;
}

@media(min-width: 1200px)
{
.cnt__get + section h2 {width: 214px;}
      .contacts {
    width: 220px;
}
}

.cnt__get h2 {
      background: linear-gradient(90deg, #18274B 0%, #3945B1 100%);

  /* делаем фон «видимым» только на буквах */
  -webkit-background-clip: text;   /* Chrome / Safari / Edge */
  background-clip: text;           /* Firefox */

  /* убираем заливку шрифтом, чтобы просвечивал фон-градиент */
  -webkit-text-fill-color: transparent;
          color: transparent;      /* запасной вариант */

  /* Дополнительно можно задать жирность и межстрочный */
  font-weight: 800;
  font-size: 3rem;
}
@media(max-width: 465px)
{
    .cnt__wrapper {
    gap: 10px;
}
    .cnt__get + section h2 {width: 174px;}
    .contacts {
    max-width: 180px;
}
.cnt__get h2 { font-size: 1.7rem; }
    
}




