/* ============================================
   ÚVODNÁ SEKCIA
   ============================================ */

.uvod-bohosluzby {
  margin-bottom: 2rem;
}

.uvod-bohosluzby h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
}

.uvod-bohosluzby p {
  text-align: center;
  max-width: 55ch;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SEKČNÉ BLOKY
   ============================================ */

.section {
  padding: 0.75rem 0;
  margin: 1.8rem 0;
  background: linear-gradient(to bottom, #fff, #fdfdfd);
  border-radius: 0.6rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.section + .section {
  margin-top: 2.5rem;
}

/* ============================================
   NADPISY SEKCIÍ
   ============================================ */

.section h3 {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-dark);
  letter-spacing: 0.01rem;
}

.section h3::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin: 0.4rem auto 0;
  border-radius: 2px;
}

/* ============================================
   BLOKY RIADKOV
   ============================================ */

.section .rows {
  margin-top: 1rem;
}

.section .row {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  margin: 0.6rem 0;
  padding: 0.8rem 1rem;
  background: white;
  line-height: 1.6;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
}

.section .row:hover {
  background-color: rgba(196, 154, 82, 0.08);
  transform: scale(1.01);
  color: var(--text-dark);
}

/* Deliaca čiara */
.section .row .label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.1rem;
  background: rgba(0,0,0,0.12);
  margin: 0 0.75rem;
}

/* ============================================
   TYPOGRAFIA
   ============================================ */

.tucne-pismo {
  font-weight: 600;
  color: var(--accent-dark);
}

.section .label {
  font-weight: 500;
  color: var(--text-dark);
}

.section .label small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section .value {
  color: var(--text-muted);
}

.section .full {
  color: var(--text-grey);
  font-style: italic;
}

.section .full p {
  margin-bottom: 0.4rem;
}

/* ============================================
   MOBILNÁ VERZIA
   ============================================ */

@media (max-width: 600px) {
  .section .row {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.7rem 0.8rem;
  }

  .section h3 {
    font-size: 1.25rem;
  }

  .section h3::after {
    width: 2.5rem;
  }

  .section .row .label::after {
    display: none;
  }
}
