.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--card);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.button:hover {
  transform: translateY(-1px);
  background: #ede9e3;
}

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-strong);
}

.text-link {
  font-size: 14px;
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-strong);
}

.project-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.project-hero-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #f1f5f9;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.project-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
