.pgmap {
  --pgmap-bg: #000;
  --pgmap-acc: #a3c618;
  --pgmap-max: 1600px;
  background: var(--pgmap-bg);
  padding: 8px 0 48px;
}

.pgmap *,
.pgmap *::before,
.pgmap *::after {
  box-sizing: border-box;
}

.pgmap-in {
  width: 100%;
  max-width: var(--pgmap-max);
  margin: 0 auto;
  padding: 0 16px;
}

.pgmap-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  background: #1a1a1a;
}

.pgmap-map {
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}

.pgmap-pin {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 40px;
  margin-left: -14px;
  margin-top: -38px;
  pointer-events: none;
}

.pgmap-pin::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: 4px auto 0;
  border-radius: 50% 50% 50% 0;
  background: var(--pgmap-acc);
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.pgmap-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #1a1c20;
}

@media (max-width: 639px) {
  .pgmap-box {
    height: 240px;
    border-radius: 16px;
  }
}
