.pg_municipality__article {
  background-color: hsl(206, 100%, 10%);
}

.pg_municipality_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in hsl, var(--pg-color-main), transparent 85%);
  padding: 0.5em;
}
.pg_municipality_header__title {
  color: white;
  margin-bottom: 0;
  font-size: 3em;
  font-family: var(--pg-font-family-title-roboto-condenzed);
  font-weight: 700;
}

.pg_municipality_top {
  position: relative;
}
.pg_municipality_top__map {
  text-align: right;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .pg_municipality_top__map {
    display: none;
  }
}
.pg_municipality_top__map > svg {
  width: 600px;
  height: auto;
}

.pg_municipality_box {
  border: 1px solid rgba(171, 213, 255, 0.1);
  background-color: color-mix(in hsl, var(--pg-color-main), transparent 70%);
  border-radius: 0.5em;
  padding: 1.5em 1em;
}

.pg_municipality_info {
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 1201px) {
  .pg_municipality_info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.pg_municipality_info__title {
  font-size: 1.25em;
  font-family: var(--pg-font-family-title-roboto-condenzed);
  color: var(--pg-color-sticker-category);
  margin-bottom: 1em;
}
.pg_municipality_info__items {
  width: 60%;
}
@media screen and (max-width: 1200px) {
  .pg_municipality_info__items {
    width: 100%;
  }
}

.pg_municipality_info_items {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pg_municipality_info_items_item {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 0.875em;
}
.pg_municipality_info_items_item__title {
  display: block;
  opacity: 0.5;
  font-weight: 400;
}
.pg_municipality_info_items_item__value {
  font-weight: 700;
}

.pg_municipality_right__item:not(:last-child)::after {
  display: block;
  content: "";
  width: 80%;
  height: 1px;
  background-color: var(--pg-color-line-gray-soft);
  margin: 2em auto;
}

.pg_municipality_right_more {
  font-size: 0.875em;
  padding: 0.5em 2em;
}
