/* T17 — карта офиса. Размеры и место — те же, что были у карты конструктора. */
.trd-map { position: relative; }
.trd-map__box { position: relative; width: 100%; height: 100%; overflow: hidden; background: #e8e6e1; }
.trd-map__frame { display: block; width: 100%; height: 100%; border: 0; }
.trd-map__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px; text-align: center; cursor: pointer;
  background: #e8e6e1;
  color: #222; text-decoration: none;
  font-family: Arial, sans-serif;
}
.trd-map__pin {
  width: 34px; height: 34px; border-radius: 50% 50% 50% 0;
  background: #004d32; transform: rotate(-45deg); position: relative;
}
.trd-map__pin::after {
  content: ''; position: absolute; left: 11px; top: 11px;
  width: 12px; height: 12px; border-radius: 50%; background: #e8e6e1;
}
.trd-map__addr { font-size: 15px; line-height: 1.45; max-width: 320px; }
.trd-map__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 20px;
  background: #004d32; color: #fff; font-size: 14px; text-transform: uppercase;
}
.trd-map__open { font-size: 13px; text-decoration: underline; color: #222; }
