/* ========================================
   Lokální landing pages (Kobylice, Chlumec, Jičín...)
   + hub "Okolí Nového Bydžova"
   ======================================== */

/* ---------- Hero ---------- */
.vhv-local-hero {
  max-width: 1100px;
  margin: 40px auto 30px;
  padding: 48px 40px;
  background: linear-gradient(135deg, #f1f7ff 0%, #c4daea 100%);
  border-radius: 22px;
  text-align: center;
}
.vhv-local-hero h1 {
  font-size: 2.4rem !important;
  color: #03274b !important;
  margin: 0 0 16px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}
.vhv-local-hero-lead {
  color: #2D3748;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 28px;
}
.vhv-local-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.vhv-local-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.vhv-local-btn-primary {
  background: #da251d;
  color: #ffffff;
}
.vhv-local-btn-primary:hover {
  background: #b70f07;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(218, 37, 29, 0.3);
}
.vhv-local-btn-ghost {
  background: #ffffff;
  color: #0061a5;
  border-color: #0061a5;
}
.vhv-local-btn-ghost:hover {
  background: #0061a5;
  color: #ffffff;
}

/* ---------- Intro box ---------- */
.vhv-local-intro {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  color: #2D3748;
  font-size: 1.05rem;
  line-height: 1.7;
}
.vhv-local-intro p {
  margin-bottom: 16px;
}

/* ---------- Tip box ---------- */
.vhv-tip-box {
  max-width: 900px;
  margin: 30px auto;
  padding: 22px 28px;
  background: #f1f7ff;
  border-left: 5px solid #da251d;
  border-radius: 12px;
  color: #2D3748;
  font-size: 1rem;
  line-height: 1.6;
}
.vhv-tip-box strong {
  color: #03274b;
}

/* ---------- Reasons grid (why us) ---------- */
.vhv-reasons-grid {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.vhv-reason-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 26px;
  transition: all 0.25s ease;
}
.vhv-reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(3, 39, 75, 0.1);
  border-color: #0061a5;
}
.vhv-reason-card h3 {
  font-size: 1.2rem !important;
  color: #03274b !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}
.vhv-reason-card p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Village cards (hub page) ---------- */
.vhv-villages-grid {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vhv-village-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 24px;
  transition: all 0.2s ease;
}
.vhv-village-card:hover {
  border-color: #0061a5;
  box-shadow: 0 10px 25px rgba(3, 39, 75, 0.08);
  transform: translateY(-2px);
}
.vhv-village-card h3 {
  font-size: 1.15rem !important;
  color: #03274b !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f7ff;
}
.vhv-village-card p {
  color: #4A5568;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.vhv-village-card p a {
  color: #da251d;
  font-weight: 700;
}

/* ---------- Nearby section (links to other local articles) ---------- */
.vhv-local-nearby {
  max-width: 900px;
  margin: 50px auto 30px;
  padding: 30px 32px;
  background: #f1f7ff;
  border-radius: 14px;
  border-left: 5px solid #0061a5;
}
.vhv-local-nearby h3 {
  font-size: 1.2rem !important;
  color: #03274b !important;
  margin: 0 0 16px !important;
}
.vhv-local-nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vhv-local-nearby-list a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #c4daea;
  border-radius: 999px;
  color: #0061a5;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.vhv-local-nearby-list a:hover {
  background: #0061a5;
  color: #ffffff;
  border-color: #0061a5;
  transform: translateY(-2px);
}

/* ---------- Responzivita ---------- */
@media (max-width: 900px) {
  .vhv-local-hero {
    padding: 32px 22px;
    margin: 20px 14px 20px;
  }
  .vhv-local-hero h1 { font-size: 1.7rem !important; }
  .vhv-local-hero-lead { font-size: 1rem; }
  .vhv-local-btn { flex: 1; justify-content: center; }
  .vhv-reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .vhv-villages-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vhv-village-card { padding: 18px 20px; }
  .vhv-local-nearby { margin: 30px 14px; padding: 24px 20px; }
  .vhv-tip-box { margin: 20px 14px; padding: 18px 22px; }
}
@media (max-width: 520px) {
  .vhv-villages-grid { grid-template-columns: 1fr; }
}

/* Hero tagline (H2-like style but rendered as <p>) */
.vhv-local-hero-tagline {
  font-size: 2.4rem;
  color: #03274b;
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 700;
  font-family: Ubuntu, sans-serif;
}
@media (max-width: 900px) {
  .vhv-local-hero-tagline { font-size: 1.7rem; }
}
