.ipcheck {
  max-width: 720px;
  margin: 0 auto;
}

.ipcheck__lead {
  margin: 0 0 1.1rem;
  color: #475569;
  font-size: .95rem;
}

.ipcheck-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .8rem;
}

.ipcheck-actions button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: .5rem 1.1rem;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: #1e40af;
  border: 1px solid transparent;
  border-radius: 999px;
}

.ipcheck-actions button:hover {
  background: #1e3a8a;
}

.ipcheck-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}

.ipcheck-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .8rem .9rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.ipcheck-item__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #64748b;
  text-transform: uppercase;
}

.ipcheck-item__value {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .92rem;
  color: #0f172a;
  word-break: break-all;
}

.ipcheck-item__copy {
  align-self: flex-start;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: .3rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  color: #1e40af;
  background: #fff;
  border: 1px solid #1e40af;
  border-radius: 999px;
}

.ipcheck-item__copy:hover {
  background: #eff6ff;
}

.ipcheck-note {
  margin: 1.1rem 0 0;
  font-size: .8rem;
  color: #94a3b8;
}

@media (max-width: 560px) {
  .ipcheck-grid {
    grid-template-columns: 1fr;
  }

  .ipcheck-actions {
    justify-content: stretch;
  }

  .ipcheck-actions button {
    width: 100%;
  }
}
