/* Общие блоки */
.download-item-block {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.download-item-block p:first-child {
  margin-top: 5px;
  margin-bottom: 31px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.inner-features__content-box .text-area h2:first-child {
  text-align: center;
}

.inner-features__content-box .text-area p.text-center {
  text-align: center;
}

.inner-features__content-box .text-area *.align-center {
  margin-left: auto;
  margin-right: auto;
}

.inner-features__content-box .text-area table thead td {
  background: #6f6551;
}

.inner-features__content-box .text-area table td.has-icon {
  width: auto;
}

.inner-features__content-box .text-area table td.has-icon img {
  display: block;
  height: 40px;
  margin: 0 auto;
}

.inner-features__content-box .text-area table td.has-icon-and-text img {
  display: block;
  height: 32px;
  margin: 0 auto;
  border-radius: 32px;
  margin-bottom: 5px;
}

.footer__menu {
  margin-top: 20px;
  font-size: 14px;
  line-height: 14px;
  gap: 20px;
  color: #6f6551;
}

/* Адаптивность карточек */
@media (max-width: 1024px) {
  .patch-list .patch-list-content {
    width: 50%; /* 2 карточки в ряду */
  }
}

@media (max-width: 680px) {
  .patch-list .patch-list-content {
    width: 100%; /* 1 карточка в ряду */
  }
}

/* Заголовок */
.patch-title {
  font-family: "Angelus Medieval";
  padding-top: 10px;
}

.patch-title p {
  line-height: 38px;
}

/* Карточки */
.card {
  overflow: hidden; /* Предотвращает выход содержимого за границы карточки */
  border-radius: 10px; /* Закругленные углы карточки */
  height: 100%; /* Автоматическое выравнивание по высоте */
}

/* Изображение */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.card-hover:hover .card-img {
  transform: scale(1.05); /* Увеличение изображения при наведении */
  filter: brightness(80%);
}

/* Полупрозрачный фон текста */
.card-img-overlay {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s ease-in-out;
}

.card-hover:hover .overlay-dark {
  background: rgba(0, 0, 0, 0.4);
}

/* Текст */
.card-title {
/*  font-family: "Angelus Medieval";*/
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}

.card-text {
  font-size: 0.9rem;
  font-family: 'Proxima Nova';
  font-size: 16px;
}

/* Равная высота карточек */
.row-equal-height {
  display: flex;
  flex-wrap: wrap;
/*  gap: 15px;*/
}

.col-md-4 {
  padding: 10px;
}
