/**
 * contact-lines.css — P1-5
 * Dva vyrazne boxy PORUCHA 24/7 vs Obchod/objednavky na kontakt.html.
 * Bez !important, izolovane tridy vhv-cline-*.
 */

.vhv-cline-section {
  padding: 3rem 1.5rem;
  background: #f8fafc;
}

.vhv-cline-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vhv-cline-head {
  text-align: center;
  margin-bottom: 2rem;
}

.vhv-cline-head h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: #0f172a;
}

.vhv-cline-head p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
}

.vhv-cline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .vhv-cline-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vhv-cline-box {
  display: block;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-left: 4px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.vhv-cline-box:hover,
.vhv-cline-box:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
}

.vhv-cline-box--emergency {
  background: #fef2f2;
  border-left-color: #da251d;
}

.vhv-cline-box--emergency:hover,
.vhv-cline-box--emergency:focus-visible {
  background: #fee2e2;
}

.vhv-cline-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.5rem;
}

.vhv-cline-box--emergency .vhv-cline-label {
  color: #da251d;
}

.vhv-cline-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.vhv-cline-box--emergency .vhv-cline-number {
  color: #0f172a;
}

.vhv-cline-hint {
  display: block;
  font-size: 0.95rem;
  color: #64748b;
}

@media (max-width: 560px) {
  .vhv-cline-head h2 { font-size: 1.5rem; }
  .vhv-cline-number { font-size: 2rem; }
  .vhv-cline-section { padding: 2rem 1rem; }
}
