.detail-help {
	box-sizing: border-box;
  background-color: #f4f8ff;
  border: 1px solid #cce0ff;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
	align-items: center;
  min-height: 140px;
	line-height: 1.2;
}

.detail-help__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  align-items: start; /* Zarovná oba sloupce nahoře */
}

/* Levý i pravý sloupec */
.detail-help__left,
.detail-help__right {
	line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Titulek */
.detail-help__title {
  font-size: 20px;
  font-weight: bold;
  color: #004080;
  margin: 0 0 4px; /* zmenšená mezera pod nadpisem */
}

/* Odstavec pod titulkem */
.detail-help__left p {
	margin: 0; /* odstraní mezeru nad a pod textem */
  padding: 0;
}

/* Telefonní číslo */
.detail-help__tel {
  font-size: 16px;
  font-weight: bold;
  color: #004080;
  text-decoration: underline;
  display: block;
  margin: 3px 0 5px;
}

/* Kontaktní kanály */
.detail-help__channels {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* Responzivní rozvržení pro mobil */
@media (max-width: 768px) {
  .detail-help__content {
    grid-template-columns: 1fr;
  }

  .detail-help__left,
  .detail-help__right {
    width: 100%;
  }
}