.tdc-widget {
  margin: 2rem auto;
  max-width: 1000px;
}

.tdc-title {
  margin-bottom: 1rem;
}

.tdc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tdc-item {
  border: 1px solid var(--wp--preset--color--contrast-3, rgba(0, 0, 0, 0.15));
  border-radius: 8px;
  padding: 0.75rem;
  background: var(--wp--preset--color--base, #fff);
}

.tdc-key {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.tdc-value {
  word-break: break-word;
  font-size: 0.95rem;
}

.tdc-copy {
  margin-top: 1rem;
}

.tdc-widget .tdc-copy {
  background-color: #07094A;
  color: #fff;
  border: none;
  border-radius: 0.895rem;
  padding: 10px 14px;
  cursor: pointer;
}

.tdc-widget .tdc-copy:hover {
  opacity: 0.92;
}

.tdc-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

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