.copy-block {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  width: 100%;
  max-width: 580px;
  margin: 16px 0;
  padding: 19px;
  background: var(--base-2);
  border: 1px solid var(--base-border);
  border-radius: 10px;
}

.copy-block__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.copy-block__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--font-light-1);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.copy-block__button {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 6px;
  background: var(--base-3);
  border: 1px solid var(--base-border);
  border-radius: 5px;
  cursor: pointer;
}

.copy-block__button:hover,
.copy-block__button:focus-visible {
  border-color: var(--icon-secondary);
}

.copy-block__icon {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--icon-secondary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5.833' y='5.833' width='11.667' height='11.667' rx='2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.833 14.167H4.167A1.667 1.667 0 0 1 2.5 12.5V4.167A1.667 1.667 0 0 1 4.167 2.5H12.5a1.667 1.667 0 0 1 1.667 1.667v1.666' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 20px 20px;
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5.833' y='5.833' width='11.667' height='11.667' rx='2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.833 14.167H4.167A1.667 1.667 0 0 1 2.5 12.5V4.167A1.667 1.667 0 0 1 4.167 2.5H12.5a1.667 1.667 0 0 1 1.667 1.667v1.666' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 20px 20px;
}

.copy-block__line {
  position: relative;
  top: -1px;
  width: 100%;
  height: 1px;
  margin-bottom: -1px;
  background: linear-gradient(90deg, var(--focus-yellow-light), var(--focus-blue));
}

@media (max-width: 600px) {
  .copy-block {
    padding: 15px;
  }
}
