/* iQQuip post-GA4 minor layout fixes — 2026-08-31
   1) Centre the homepage PRO ONE hero product within the desktop grey visual area.
   2) Make the dynamically added Cookie settings control match the footer link typography. */

/* Desktop homepage hero only. Keep the already-approved mobile hero unchanged. */
@media (min-width: 701px) {
  .hero-visual .hero-product-image {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

/* Cookie settings remains a real button for accessibility and consent behaviour,
   but visually matches the neighbouring INFORMATION links exactly. */
.footer-links .iq-consent-settings {
  display: block;
  width: auto;
  padding: 5px 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--navy) !important;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.footer-links .iq-consent-settings:hover {
  color: var(--blue) !important;
  text-decoration: none;
}
