/* ============================================================
   Prague Hotels v2 — Guides (long-form article layout)
   ============================================================ */

/* hub page */
.guides-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-card);
  text-decoration: none !important;
  color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-card-hover);
  border-color: var(--c-accent);
  color: inherit;
}
.guide-card__cat {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: .8rem;
}
.guide-card__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6rem;
  color: var(--c-ink);
}
.guide-card__desc { margin: 0 0 1rem; color: var(--c-ink-soft); font-size: .95rem; }
.guide-card__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
  font-size: .82rem;
  color: var(--c-muted);
}
.guide-card__read {
  color: var(--c-accent);
  font-weight: 600;
}

/* article layout */
.guide-article {
  max-width: 760px;
  margin: 0 auto;
}
.guide-article h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}
.guide-article h3 {
  font-family: var(--f-display);
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-top: 2rem;
  margin-bottom: .6rem;
}
.guide-article h4 {
  font-family: var(--f-sans);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.guide-article p, .guide-article li { font-size: 1.05rem; line-height: 1.75; }
.guide-article ul, .guide-article ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.guide-article li { margin-bottom: .4rem; color: var(--c-ink-soft); }
.guide-article li strong { color: var(--c-ink); }

.guide-article blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--c-gold);
  background: var(--c-surface);
  font-style: italic;
  color: var(--c-ink);
}

/* fact / tip callout */
.callout {
  margin: 1.5rem 0;
  padding: 1.2rem 1.4rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-sm);
}
.callout--tip { border-left-color: var(--c-gold); }
.callout__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: .4rem;
}
.callout--tip .callout__label { color: var(--c-gold); }
.callout p:last-child { margin-bottom: 0; }

/* simple data table */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
}
.guide-table th, .guide-table td {
  padding: .7rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.guide-table th {
  background: var(--c-surface-alt);
  font-weight: 600;
  color: var(--c-ink);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.guide-table tr:hover td { background: var(--c-surface); }

/* breadcrumb */
.breadcrumb {
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb__sep { margin: 0 .35rem; color: var(--c-line); }

/* FAQ details (reuse the faq-item style from faq.html, but inline) */
.guide-faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: .8rem;
}
.guide-faq-item summary {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.guide-faq-item summary::-webkit-details-marker { display: none; }
.guide-faq-item summary::after {
  content: "+";
  color: var(--c-accent);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform .25s var(--ease);
}
.guide-faq-item[open] summary::after { transform: rotate(45deg); }
.guide-faq-item .guide-faq-body {
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-soft);
}

/* "see also" related-guides block */
.related-guides {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.related-guides h3 {
  font-family: var(--f-sans) !important;
  font-size: .85rem !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--c-muted) !important;
  margin-top: 0 !important;
}
.related-guides ul { list-style: none; padding: 0; columns: 2; column-gap: 2rem; }
@media (max-width: 600px) { .related-guides ul { columns: 1; } }
.related-guides li { padding: .35rem 0; border: 0; break-inside: avoid; }
