.nl * { box-sizing: border-box; }

.nl {
  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --brand:#165788;
  --accent:#165788;
  --line:#e5e7eb;
  --standard-prod-card-width: 260px;

  color:var(--ink);
  background:var(--bg);
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

.nl a { color: var(--brand); }

.nl .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* Hero-container: fuld bredde */
.nl .container.hero {
  max-width: 100%;
  padding: 0;
}

/* ====== Grid (basis) ====== */
.nl .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* VIGTIGT: slå globale clearfix-pseudoer ihjel, de giver “tomt” grid-item */
.nl .row::before,
.nl .row::after {
  content: none !important;
  display: none !important;
}

/* Produktgrid – responsiv, uden “huller” */
.nl .products .row--2 {
  display: grid;
  gap: 18px;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fit, minmax(var(--standard-prod-card-width), 1fr));
  justify-content: flex-start;
  justify-items: start;
}

/* ====== Hero ====== */
.nl .hero {
  background: var(--brand);
  border-radius: 0;       /* fuld bredde look */
  padding: 30px 16px;
  color:#ffffff;
}

@media (max-width: 960px) {
.nl .hero__media img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 10px 10px;
  display: block;
  object-fit: cover;
}
}

/* Hero layout på store skærme: billede venstre, tekst højre */
@media (min-width: 960px) {
  .nl .hero .row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
  .nl .hero__media {
    padding-right: 24px;
  }

.nl .hero__media img {
  width: 100%;
  height: auto;
  border-radius: 10px 0px 0px 10px;
  display: block;
  object-fit: cover;
}

}

  .nl .hero__copy {
    padding: 40px;
  }



.nl .hero h1 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 8px 0 4px;
}

.nl .hero h1,
.nl .hero p {
  color:#ffffff;
}

.nl .hero p.sub {
  font-size: 16px;
  margin: 0 0 10px;
  opacity: .9;
}

/* ====== Buttons ====== */
.nl .btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.nl .btn:hover {
  background: #1a659e;
  color: #fff;
  text-decoration: none;
}

.nl .btn--primary {
  background: var(--brand);
}

/* ====== Produktkort ====== */
.nl .products article {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.nl .products article > *:not(.btn) {
  flex-shrink: 0;
}

.nl .products article .btn {
  margin-top: auto;
  display: inline-block;
  width: auto;
  align-self: flex-start;
}

.nl .products article h4 {
  margin-top: 10px;
  margin-bottom: 6px;
}

.nl .products article p {
  margin-top: 0;
  margin-bottom: 8px;
}

.nl .products .article-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: block;
}

/* ====== Sections ====== */
.nl .section { margin-top: 50px; }

.nl .usps {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.nl .usps ul {
  margin: 0;
  padding-left: 18px;
}

.nl .clerk { margin: 10px 0; }

.nl hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

/* ====== Contact / Lead ====== */
.nl .contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.nl .contact .panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.nl .contact h3 {
  text-align: center;
  margin: 0 0 6px;
  font-size: 22px;
}

.nl .contact p {
  text-align: center;
  margin: 0 0 6px;
}

/* ====== Helpers ====== */
.nl .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}