/* Producthost — één verzekering op zijn eigen domein (base_product.html).

   Alleen geladen door die layout, en alles hangt onder .product-host of onder
   een eigen klassenaam: niets hierin kan de gewone site raken. Zie
   web/shared/product_host.py.

   De pagina zelf (insurance-page.css) blijft ongewijzigd; hier staat alleen de
   smalle balk, de juridische voet, en de correctie op de bovenpadding die
   .content-area voor de vaste header van de gewone site meedraagt. */

/* ---------- SMALLE BALK ---------- */
/* Bewust niet fixed. De gewone header is dat wel, en compenseert dat met
   140px bovenpadding op .content-area; die compensatie valt hier weg, zodat
   de donkere hero direct onder de balk begint. */
.product-bar {
  background: rgba(var(--color-white), 1);
  border-bottom: 1px solid rgba(var(--color-grey-medium), 1);
}
.product-bar__inner {
  max-width: 1220px;
  margin-inline: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-bar__logo-link {
  display: inline-flex;
  align-items: center;
}
.product-bar__logo {
  height: 38px;
  width: auto;
  display: block;
}
.product-bar__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(var(--color-blue-dark), 1);
}
.product-bar__contact:hover {
  color: rgba(var(--color-blue-primary), 1);
}

/* De bovenpadding van .content-area maakt ruimte voor de vaste header van de
   gewone site (main.css: 140px, mobiel 72px). Op een producthost staat de
   balk in de flow, dus die ruimte is hier een gat. */
.product-host .content-area {
  padding-top: 20px;
}

/* ---------- JURIDISCHE VOET ---------- */
.product-foot {
  background: rgba(var(--color-blue-dark), 1);
  color: rgba(var(--color-white), 0.75);
  font-size: 13px;
  line-height: 1.6;
}
.product-foot__regulatory {
  max-width: 1220px;
  margin-inline: auto;
  padding: 24px 20px 0;
}
.product-foot__bottom {
  max-width: 1220px;
  margin-inline: auto;
  padding: 16px 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.product-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.product-foot a {
  color: rgba(var(--color-white), 0.75);
  text-decoration: none;
}
.product-foot a:hover {
  color: rgba(var(--color-white), 1);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .product-bar__inner {
    padding: 12px 16px;
  }
  .product-bar__logo {
    height: 32px;
  }
  .product-bar__contact {
    font-size: 14px;
  }
  .product-host .content-area {
    padding-top: 16px;
  }
  .product-foot__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
