.pmtWrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: start;
}

.pmtMap {
  height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.pmtList {
  max-height: 520px;
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px;
}

.pmtList__item {
  -webkit-appearance: none;
  appearance: none;

  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;

  width: 100%;
  padding: 12px;

  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  outline: none;

  text-align: left;
  text-decoration: none;
  font: inherit;
  color: inherit;
  line-height: inherit;
  cursor: pointer;

  opacity: 1;
}

.pmtList__item,
.pmtList__item:hover,
.pmtList__item:focus,
.pmtList__item:active,
.pmtList__item:visited {
  color: inherit;
  text-decoration: none;
  opacity: 1;
  box-shadow: none;
}

.pmtList__item:hover,
.pmtList__item.is-active {
  background: rgba(0, 0, 0, 0.04);
}
.pmtList__item:focus-visible {
  outline: 2px solid rgba(0, 102, 204, 0.35);
  outline-offset: 2px;
}

.pmtList__item--noLogo {
  grid-template-columns: 1fr;
}

.pmtList__logoWrap {
  width: 84px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  padding: 6px;
  box-sizing: border-box;
}

.pmtList__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.pmtList__content {
  min-width: 0;
}

.pmtList__title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.pmtList__titleText {
  min-width: 0;
}

.pmtList__short {
  margin-top: 6px;
  opacity: 0.8;
  font-size: 0.95em;
  line-height: 1.4;
}

.pmtBadge {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.pmtBadge--supporting {
  font-weight: 700;
}

@media (max-width: 900px) {
  .pmtWrap {
    grid-template-columns: 1fr;
  }

  .pmtMap,
  .pmtList {
    max-height: none;
    height: auto;
  }

  .pmtMap {
    height: 420px;
  }
}

@media (max-width: 520px) {
  .pmtList__item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pmtList__logoWrap {
    width: 100%;
    max-width: 120px;
    height: 64px;
  }

  .pmtList__title {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* === SINGLE: powrót do listy firm === */

.pmtBackLinkWrap{
  margin-bottom:16px;
}

.pmtBackLink{
  font-size:0.95em;
  text-decoration:none;
  font-weight:600;
  opacity:.85;
}

.pmtBackLink:hover{
  text-decoration:underline;
  opacity:1;
}

/* === SINGLE: logo firmy === */

.pmtSingleLogoWrap {
  margin-bottom: 24px;
}

.pmtSingleLogoBox {
  min-height: 120px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.pmtSingleLogo {
  display: block;
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* === SINGLE: kontakt + mini-mapa === */

.pmtContact {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
}

.pmtContact__title {
  margin: 0 0 12px 0;
}

.pmtContact__grid {
  display: grid;
  gap: 10px;
  margin: 0;
}

.pmtContact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

.pmtContact__row dt {
  font-weight: 700;
  opacity: 0.85;
}

.pmtContact__row dd {
  margin: 0;
}

.pmtSingleMapWrap {
  margin-top: 18px;
}

.pmtSingleMap {
  height: 320px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* === popupy mapy === */

.pmtPopup {
  min-width: 200px;
  max-width: 240px;
}

.pmtPopup__logoWrap {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  padding: 6px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.pmtPopup__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.pmtPopup__title {
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pmtPopup__short {
  opacity: 0.85;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 0.95em;
}

.pmtPopup__link {
  font-weight: 600;
  text-decoration: none;
}
