/* Контейнер карточек в сетку */
#recXXXXXX .t-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    justify-items: center !important;
    align-items: stretch !important;
    max-width: 1100px;
    margin: 0 auto;
}

/* Карточки одинакового размера */
#recXXXXXX .t-item {
    width: 100% !important;
    max-width: 320px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Планшеты – 2 колонки */
@media (max-width: 991px) {
    #recXXXXXX .t-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Телефоны – 1 колонка */
@media (max-width: 640px) {
    #recXXXXXX .t-container {
        grid-template-columns: 1fr !important;
    }
}

/* Анимация для кнопок при наведении */
.t-btn {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.t-btn {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
    background-color: #fff6f0 !important; /* светлый базовый цвет */
    color: #000 !important; /* текст чёрный */
}

.t-btn:hover {
    transform: scale(1.08);
    background-color: #e6c8b7 !important; /* тёплый оттенок при наведении */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    color: #000 !important; /* текст остаётся чёрным */
}

/* Карточки: при наведении показываем описание */
#rec548953199 .t-col {                 
  cursor: pointer;
}

/* Скрываем описание по умолчанию */
#rec548953199 .t-col .t-text,
#rec548953199 .t-col .t-descr {       
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
}

/* Немного подправим списки, если они есть */
#rec548953199 .t-col .t-text ul,
#rec548953199 .t-col .t-descr ul {
  margin: 8px 0 0 18px;
}

/* Эффект при наведении на колонку */
#rec548953199 .t-col:hover .t-text,
#rec548953199 .t-col:hover .t-descr {
  max-height: 1200px;   /* большое значение для полного раскрытия */
  opacity: 1;
}

/* Небольшое увеличение фото при наведении */
#rec548953199 .t-col img {
  transition: transform .35s ease;
}
#rec548953199 .t-col:hover img {
  transform: scale(1.03);
}

/* На мобильных ховера нет — текст всегда открыт */
@media (max-width: 991px) {
  #rec548953199 .t-col .t-text,
  #rec548953199 .t-col .t-descr {
    max-height: none;
    opacity: 1;
  }
}

.privacy-checkbox {
  margin-top: 15px;
  font-size: 14px;
  text-align: left;
}

.privacy-checkbox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #b48a6e; /* гармонирует с бежевым фоном */
}

.privacy-checkbox a {
  color: #b48a6e;
  text-decoration: underline;
}

.privacy-checkbox a:hover {
  color: #8b6b55;
}

a {
  color: #000000 !important;
}
a:hover {
  color: #FFFFFF !important; 
}