.x-link-button {
  width: 100%;
  height: 38px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3b3b40;
  border-radius: 6px;
  background: #050505;
  color: #fff;
  font: 700 12px/1 Consolas, monospace;
}

.x-link-button:hover {
  border-color: var(--accent);
  background: #111;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-x-button {
  display: none;
}

@media (max-width: 760px) {
  .mobile-x-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #3b3b40;
    border-radius: 6px;
    background: #0d0d10;
    color: #fff;
    font: 700 14px/1 Consolas, monospace;
  }

  .mobile-x-button:hover {
    border-color: var(--accent);
    background: #17171b;
  }
}
