/* articulos.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #090909;
  --background-2: #111111;
  --card: #181818;
  --text: #f2f2f2;
  --muted: #999999;
  --accent: #d5a746;
  --accent-light: #f0ca72;
  --border: rgba(255, 255, 255, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  min-height: 100vh;

  background: radial-gradient(
    circle at 50% -10%,
    #303030 0%,
    #171717 30%,
    #090909 70%
  );
}

/* =========================================
   AUTORÍA
========================================= */

.autoria {
  max-width: 610px;
  margin: 18px auto 12px;
  text-align: center;
  font-size: 0.78rem;
  margin-bottom: 45px;
}

.autoria-toggle {
  background: none;
  border: none;
  padding: 4px 8px;
  color: #999;
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 0.25s ease;
}

.autoria-toggle:hover {
  color: #ccc;
}

.autoria-text {
  max-width: 760px;
  margin: 8px auto 0;
  padding: 12px 18px;
  color: #888;
  font-size: 0.75rem;
  line-height: 1.55;
  text-align: left;

  background: rgba(0, 0, 0, 0.2);
  border-left: 2px solid rgba(255, 255, 255, 0.15);

  display: none;
}

.autoria-text p {
  margin: 0 0 8px;
  font-size: 0.75rem;
}

.autoria-text p:last-child {
  margin-bottom: 0;
}
.autoria-toggle i {
  margin-right: 4px;
}
.autoria button {
  text-transform: uppercase;
  font-size: 0.8em;
}
