/* === KOMPONENTA: Kategorie karty === */

.catCards {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.catCards__inner {
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
}

.catCards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* KARTA */
.catCards__item {
  background: #F0ECDB;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
  padding: 30px 20px 25px;
}

/* OBRÁZKOVÁ SEKCE */
.catCards__imageWrap {
  height: 180px;
  display: flex;
  align-items: center;      /* 👈 vyvážené vertikálně */
  justify-content: center;
  margin-bottom: 15px;      /* menší mezera = lepší balance */
  position: relative;
}

/* BÍLÝ KRUH */
.catCards__imageWrap::before {
  content: "";
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: auto;             /* zrušení spodního přilepení */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

/* OBRÁZEK */
.catCards__imageWrap img {
  max-height: 150px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.catCards__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #000;
}

.catCards__text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

/* TLAČÍTKO */
.catCards .myButton--black {
  color: #000;
  border: 1px solid #000;
  background: transparent;
  padding: 8px 22px;
  font-size: 1.4rem; /* oprava překlepu */
  border-radius: 10px;
  transition: all 0.25s ease;
}

.catCards .myButton--black:hover {
  background: #000;
  color: #fff;
}
/* NADPIS SEKCE */
.catCards__heading {
  text-align: center;
  margin: 0 0 40px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #066AD44;
}