.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.template-button,
.template-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #1f2937;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.template-button {
  color: #fff;
  background: linear-gradient(135deg, #1f2937, #0f172a);
  cursor: pointer;
}

.template-link {
  color: #1f2937;
  background: #ffffff;
}

.template-button:hover,
.template-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.template-button:active,
.template-link:active {
  transform: translateY(0);
  box-shadow: none;
}

details summary {
  cursor: pointer;
}
