/* Общие стили карточек-лейблов для radio */
.swatch {
  position: relative;
  border: 2px solid #e5e7eb;              /* светлая рамка по умолчанию */
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .05s;
  user-select: none;
  background: #fff;
  line-height: 1;
}
.swatch:active { transform: scale(.99); }
.swatch img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin-bottom: .5rem;
  border: 1px solid #e5e7eb;

}
/* Состояние выбранного радио */
input[type="radio"]:checked + label.swatch {
  border-color: #13845F;
}
/* Фокус по табу для доступности */
input[type="radio"]:focus + label.swatch {
  outline: 2px solid #13845F;
  outline-offset: 2px;
}
/* Скрытие нативного радио, оставляя доступность */
.visually-hidden-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Подпись под свотчем */
.swatch small {
  font-size: .9rem;
  color: #111827;
  font-weight: 500;
}
.form-control{
  border-radius: 30px;
}

/* Мелкие улучшения */
.section-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: #000;
}
.hint {
  color: #000;
  font-size: .9rem;
  margin-top: -4px;
  margin-bottom: .8rem;
}
.ft-about-content-3{
  background: #f0f0f0;
  padding: 30px;
  border-radius: 10px
}
@media screen and (max-width: 680px) {
  .ft-about-content-3{
    padding: 10px;
  }
}
