/* VeriPlace coverage map — minimalist. Literal hex (standalone component). */
.vp-cov {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}
.vp-cov svg { display: block; }

.vp-cov__ctx {
  transition: fill-opacity .12s ease;
  cursor: default;
}
.vp-cov__ctx:hover { fill-opacity: 0.95 !important; }

.vp-cov--full svg { touch-action: none; }
.vp-cov__zoom {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 6;
}
.vp-cov__zoom button {
  width: 34px;
  height: 34px;
  border: 1px solid #e2e7ec;
  background: #ffffff;
  color: #0f1f2e;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15,31,46,.08);
  transition: background .12s ease, border-color .12s ease;
}
.vp-cov__zoom button:hover { background: #f4f9f7; border-color: #059669; color: #059669; }
.vp-cov__zoom button:active { transform: translateY(1px); }
.vp-cov__hint {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 11.5px;
  color: #97a3af;
  background: rgba(255,255,255,.82);
  padding: 3px 9px;
  border-radius: 999px;
  pointer-events: none;
}

.vp-cov__region {
  cursor: pointer;
  transition: fill-opacity .12s ease, filter .12s ease;
}
.vp-cov__region.is-active {
  /* --vp-aura (= viewBox/W, set by JS in full mode on zoom) counter-scales the
     shadow so it stays the same subtle size as on the landing at any zoom. */
  filter: drop-shadow(0 calc(1px * var(--vp-aura, 1)) calc(4px * var(--vp-aura, 1)) rgba(5, 150, 105, .35));
}
.vp-cov__region:focus { outline: none; }

.vp-cov__inset {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 17%;
  max-width: 130px;
  min-width: 86px;
  height: auto;
  pointer-events: none;
  opacity: .9;
}

.vp-cov__tip {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  background: #ffffff;
  border: 1px solid #e7ebef;
  box-shadow: 0 6px 22px rgba(15, 31, 46, .12);
  border-radius: 10px;
  padding: 9px 12px;
  min-width: 150px;
  font-family: inherit;
  line-height: 1.35;
}
.vp-cov__tip-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #0f1f2e;
}
.vp-cov__tip-region {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #8a97a4;
  margin-bottom: 4px;
}
.vp-cov__tip-stats { display: block; font-size: 12.5px; color: #334}
.vp-cov__tip-stats b { color: #059669; }

.vp-cov__err {
  padding: 28px;
  text-align: center;
  color: #8a97a4;
  font-size: 14px;
}

/* Section wrapper used on the landing page + /zasieg */
.vp-cov-section { padding: 56px 20px; background: #ffffff; }
.vp-cov-section__inner { max-width: 920px; margin: 0 auto; }
.vp-cov-section__eyebrow {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: #059669; font-weight: 700; margin: 0 0 6px;
}
.vp-cov-section__title {
  font-size: 28px; line-height: 1.15; color: #0f1f2e; margin: 0 0 8px; font-weight: 800;
}
.vp-cov-section__sub { font-size: 15px; color: #5a6776; margin: 0 0 24px; max-width: 620px; }
.vp-cov-section__legend {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px;
  font-size: 13px; color: #5a6776;
}
.vp-cov-section__legend i {
  width: 12px; height: 12px; border-radius: 3px; display: inline-block;
  margin-right: 7px; vertical-align: -1px;
}
.vp-cov-totals { font-weight: 700; color: #0f1f2e; }
