/* --------------------------------------------------------------------------
   Informace pro zájemce a nováčky — stránka
   -------------------------------------------------------------------------- */

.page-banner {
  background: var(--charcoal);
  color: var(--bone);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 0%, rgba(193,127,46,0.28), transparent 60%);
}
.page-banner .container { position: relative; }
.page-banner .layer-eyebrow { color: var(--ochre-light); }
.page-banner h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 0.6rem;
}
.page-banner p {
  margin: 0;
  color: var(--parchment-dim);
  max-width: 46ch;
  font-size: 1.05rem;
}

.info-page {
  background: var(--bone);
  padding: 5rem 0 6rem;
}

.info-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.info-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-block {
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(43,36,32,0.08);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.6rem;
  box-shadow: 0 10px 22px rgba(43,36,32,0.04);
}
.text-block h2,
.text-block h4 {
  margin-bottom: 0.8rem;
}
.text-block h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}
.text-block h4 {
  font-size: 1.3rem;
}
.text-block p {
  margin: 0.5rem 0 0;
  color: rgba(43,36,32,0.88);
  line-height: 1.8;
}
.text-block a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(156,59,43,0.35);
}
.text-block a:hover {
  border-color: currentColor;
}

.info-visuals {
  position: relative;
}
.photo-stack {
  display: grid;
  gap: 1.25rem;
}
.photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(43,36,32,0.12);
}

@media (max-width: 860px) {
  .info-layout {
    grid-template-columns: 1fr;
  }
}
