/* =========================================================================
   PD 2. Klicove latky
   Vyzaduje: assets/mth-base.css + product/_shared.css
   ========================================================================= */

.mth-pd-facts .mth-pd__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mth-pd-facts .mth-pd__row {
  gap: 0;
}
.mth-pd-facts .mth-pd__row > div:nth-child(1) {
  border-radius: var(--mth-radius) 0 0 var(--mth-radius);
}
.mth-pd-facts .mth-pd__row > div:nth-child(2) {
  border-radius: 0 var(--mth-radius) var(--mth-radius) 0;
}
.mth-pd-facts .mth-pd__title {
  margin-bottom: 28px;
  color: #614b2b;
}

.mth-pd-facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mth-pd-facts__item {
  margin: 0 !important;
}
.mth-pd-facts__item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #614b2b;
}
.mth-pd-facts__item h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background-color: #614b2b;
}
.mth-pd-facts__item p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: #8c6e45;
}

@media (max-width: 991px) {
  .mth-pd-facts .mth-pd__row > div:nth-child(1) {
    border-radius: var(--mth-radius) var(--mth-radius) 0 0;
  }
  .mth-pd-facts .mth-pd__row > div:nth-child(2) {
    border-radius: 0 0 var(--mth-radius) var(--mth-radius);
  }
}

@media (max-width: 575px) {
  .mth-pd-facts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
