/* Homepage only. */

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quick-links .card { min-height: 132px; }

.hero-panel {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-top { display: grid; gap: 0.9rem; }

.panel-block {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 1rem 1rem 0.95rem;
}

.panel-block small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.panel-block strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.panel-block span { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.panel-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .quick-links { grid-template-columns: 1fr; }
  .hero-panel { min-height: auto; }
}
