.domaci-repro-help {
  margin: 30px 0 10px;
  padding: 18px 20px;
  background: #f5f8fb;
  border-radius: 12px;
  border: 1px solid #d4e3f3;
}

.domaci-repro-articles-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.domaci-repro-article-mini {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
}

.domaci-repro-article-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 44, 77, 0.82);
  z-index: 1;
}

.domaci-repro-article-inner {
  position: relative;
  z-index: 2;
  padding: 15px;
}

.domaci-repro-article-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;   /* VŠE VELKÝMI PÍSMENY */
  letter-spacing: 0.05px;       /* jemné roztažení pro lepší čitelnost */
}

.domaci-repro-btn {
  display: inline-block;
  padding: 8px 25px;
  margin: 15px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 20px;
  background-color: rgba(0, 135, 199, 0.15);
  border: 1px solid rgba(0, 135, 199, 0.4);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background-color 0.45s ease, border-color 0.45s ease;
}

.domaci-repro-btn:hover {
  background-color: rgba(0, 135, 199, 0.25);
  border-color: rgba(0, 135, 199, 0.7);
}

.domaci-repro-more {
  margin-top: 12px;
  text-align: right;
}

.domaci-repro-more a {
  font-size: 0.9rem;
  color: #0087c7;
  text-decoration: none;
  font-weight: 600;
}

.domaci-repro-more a:hover {
  text-decoration: underline;
}

/* responsivita */
@media (max-width: 900px) {
  .domaci-repro-articles-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .domaci-repro-articles-row {
    grid-template-columns: 1fr;
  }
}