.wtc-cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 12px 0 12px;
  font-family: Arial, sans-serif;
  color: #111111;
}

.wtc-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-content: center;
  align-items: stretch;
  justify-items: center;
}

@media (max-width: 980px) {
  .wtc-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .wtc-cards__grid {
    grid-template-columns: 1fr;
  }
}

.wtc-card {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  border: 2px solid #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.wtc-card__media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.wtc-card__body {
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.wtc-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  color: #ba0c2f;
}

.wtc-card__type {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

.wtc-card__desc {
  margin: 6px 0 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #111111;
  flex: 1;
}

.wtc-card__price {
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.wtc-card__actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.wtc-card__btn {
  display: inline-block;
  background: #ba0c2f;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 6px;
  border: 2px solid #ba0c2f;
}

.wtc-card__btn:hover {
  filter: brightness(0.95);
}

.wtc-card__btn:focus,
.wtc-card__btn:focus-visible {
  outline: 3px solid #ffc600;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .wtc-card__btn:hover {
    filter: none;
  }
}