/* Novostavby archive — namespaced. */
.novostavby-page { color: #0a0a0a; background: #fff; }
.novostavby-hero { padding: 4rem 0 2.5rem; }
.novostavby-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #002EB8;
}
.novostavby-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.novostavby-hero p {
  margin: 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.55;
  color: #555;
}
.novostavby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  padding: 0 0 5rem;
  list-style: none;
  margin: 0;
}
.novostavby-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.novostavby-card:focus-visible {
  outline: 2px solid #002EB8;
  outline-offset: 4px;
}
.novostavby-card__media {
  margin: 0 0 14px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.novostavby-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.novostavby-card:hover img { transform: scale(1.04); }
.novostavby-card__meta {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #002EB8;
}
.novostavby-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}
.novostavby-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.novostavby-detail-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #0a0a0a;
  overflow: hidden;
}
.novostavby-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.novostavby-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.08) 20%, rgba(10,10,10,0.72) 100%);
}
.novostavby-detail-hero__copy {
  position: relative;
  z-index: 1;
  padding: 0 0 8vh;
}
.novostavby-detail-hero__copy h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.novostavby-crumb {
  margin: 0 0 14px;
  font-size: 13px;
}
.novostavby-crumb a { color: rgba(255,255,255,0.82); }
.novostavby-article {
  padding: 3.5rem 0 5rem;
  max-width: 46rem;
}
.novostavby-article h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 1rem; }
.novostavby-article h2 { font-size: clamp(22px, 3vw, 30px); margin: 2.2rem 0 0.8rem; }
.novostavby-article h3 { font-size: 18px; margin: 1.6rem 0 0.6rem; }
.novostavby-article p,
.novostavby-article li { line-height: 1.6; color: #333; }
.novostavby-article a { color: #002EB8; }
.novostavby-article blockquote {
  margin: 1.4rem 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid #002EB8;
  color: #444;
}
.novostavby-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.8rem;
  font-size: 15px;
}
.novostavby-table th,
.novostavby-table td {
  border-bottom: 1px solid #e6e6e0;
  padding: 10px 12px 10px 0;
  text-align: left;
  vertical-align: top;
}
.novostavby-table th {
  color: #666;
  font-weight: 600;
  width: 38%;
}
.novostavby-back {
  display: inline-block;
  margin: 2rem 0 0;
  font-weight: 700;
  color: #002EB8;
  text-decoration: none;
}
.novostavby-article .novostavby-credit {
  margin-top: 3.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid #e8e8e2;
}
.novostavby-article .novostavby-credit h2 {
  margin: 1rem 0 0.35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a94;
}
.novostavby-article .novostavby-credit h2:first-child { margin-top: 0; }
.novostavby-article .novostavby-credit ul {
  margin: 0;
  padding-left: 1.05rem;
}
.novostavby-article .novostavby-credit p,
.novostavby-article .novostavby-credit li {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.45;
  color: #8a8a84;
}
.novostavby-article .novostavby-credit a { color: #8a8a84; }
@media (max-width: 900px) {
  .novostavby-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .novostavby-grid { grid-template-columns: 1fr; }
  .novostavby-hero { padding: 3rem 0 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .novostavby-card__media img { transition: none; }
  .novostavby-card:hover img { transform: none; }
}
