.site-polish-mobile-contact {
  color: #1593c7 !important;
  font-weight: 800 !important;
}

.site-contact-actions {
  padding: 28px 20px 0;
  background: #fff;
}

.site-contact-actions__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.site-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(37, 149, 200, 0.24);
  border-radius: 999px;
  background: #fff;
  color: #183047;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(24, 48, 71, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-contact-action:hover,
.site-contact-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 149, 200, 0.45);
  box-shadow: 0 18px 38px rgba(24, 48, 71, 0.12);
}

.site-contact-action--primary {
  border-color: #2595c8;
  background: #2595c8;
  color: #fff;
}

.site-contact-map {
  min-height: 400px;
  background: #e8f4fb;
}

.site-contact-map__frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.site-contact-map__card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(213, 230, 239, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(24, 48, 71, 0.16);
}

.site-contact-map__pin {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e7f6fc;
  position: relative;
}

.site-contact-map__pin::before {
  content: "";
  position: absolute;
  inset: 10px 12px 12px;
  border-radius: 50% 50% 50% 0;
  background: #2595c8;
  transform: rotate(-45deg);
}

.site-contact-map__pin::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
}

.site-contact-map__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 3px;
  text-align: left;
}

.site-contact-map__copy strong {
  color: #183047;
  font-size: 15px;
  line-height: 1.4;
}

.site-contact-map__copy span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.site-contact-map__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #2595c8;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 149, 200, 0.22);
}

@media (max-width: 767px) {
  .site-contact-actions {
    padding-top: 22px;
  }

  .site-contact-actions__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-contact-action {
    width: 100%;
  }

  .site-contact-map,
  .site-contact-map__frame {
    min-height: 360px;
  }

  .site-contact-map__card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    display: grid;
    grid-template-columns: 40px 1fr;
  }

  .site-contact-map__link {
    grid-column: 1 / -1;
    width: 100%;
  }
}
