*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  #mp-map-container {
    --mp-green: #0F8D39;
    --mp-green-hover: #0A7230;
    --mp-bg: #f7f7f7;
    --mp-border: #e2e2e2;
    --mp-text: #494E51;
    --mp-muted: #888;
  }

  .mp-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1560px;
    margin: 48px auto;
    padding: 0 24px;
  }

  .mp-col-map  { flex: 0 0 50%; }
  .mp-col-info { flex: 1; min-width: 200px; position: sticky; top: 48px; }

  /* ── SVG map ── */
  #poland-map {
    width: 100%;
    height: auto;
    display: block;
  }

  .mp-region {
    fill: #ffffff;
    stroke: var(--mp-green);
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-miterlimit: 4;
    cursor: pointer;
    transition: fill 0.15s ease;
  }

  .mp-region:hover,
  .mp-region.is-active {
    fill: var(--mp-green);
  }

  /* ── Info panel ── */
  .mp-region-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .mp-region-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mp-green);
    flex-shrink: 0;
  }

  .mp-region-name {
    font-size: clamp(24px, calc(1vw + 20px), 32px);
    font-weight: 700;
    color: var(--mp-green);
    line-height: 1.3;
  }

  .mp-section-label { display: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mp-muted);
    margin-bottom: 12px;
  }

  .mp-card {
    background: #fff;
    border: 1px solid var(--mp-border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: border-color 0.15s;
    user-select: text;
  }
  .mp-card:hover { border-color: var(--mp-green); }

  .mp-card__name   { font-size: clamp(16px, calc(0.5vw + 14px), 20px); font-weight: 600; color: var(--mp-text); margin-bottom: 3px; line-height: 1.3; }
  .mp-card__detail { font-size: clamp(14px, calc(0.4vw + 12.5px), 17px); color: var(--mp-muted); line-height: 1.6; }


  .mp-card__detail a { color: inherit; text-decoration: none; }
  .mp-card__detail a:hover { color: var(--mp-green); }

  /* ── Mobile / Tablet responsive ── */
  @media (max-width: 860px) {
    .mp-wrapper {
      flex-direction: column;
      gap: 32px;
      margin: 24px auto;
    }
    .mp-col-map {
      flex: none;
      width: 100%;
    }
    .mp-col-info {
      position: static;
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .mp-wrapper {
      gap: 20px;
      margin: 16px auto;
      padding: 0 16px;
    }
    .mp-region-name { font-size: 18px; }
  }
  .mp-empty { font-size: 13px; color: var(--mp-muted); margin-top: 8px; }