/* about.css
   Uses variables defined in static/colors.css
   ---------------------------------------------------- */

/* Page wrapper */
.about {
  background: linear-gradient(180deg, var(--bg-elevated), var(--surface));
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: var(--space-8);
  max-width: var(--container);
  margin: var(--space-8) auto;
}

/* Typography */
.about h1 {
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.about h2 {
  color: var(--heading);
  margin-top: 2rem;
  margin-bottom: .5rem;
  font-weight: 560;
}

.about p {
  margin: 0 0 var(--space-4);
}

.about .lead {
  font-size: 1.05rem;
  color: var(--text);
}

/* Lists */
.about ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 var(--space-4);
}

.about ul li {
  margin-bottom: .4rem;
  color: var(--text-muted);
}

/* Links */
.about a {
  color: var(--accent);
  text-decoration: none;
}
.about a:hover { color: var(--accent-600); text-decoration: underline; }
.about a:active { color: var(--accent-700); }

/* Muted / secondary text */
.about .muted {
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: .9;
}

/* Content blocks */
.about .card {
  background: linear-gradient(180deg, var(--bg-elevated), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: var(--space-6);
  margin-top: var(--space-6);
}

/* Media / images inside About */
.about img,
.about video {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Simple responsive grid for two-column sections */
.about .grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .about .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Buttons used on About (if any) */
.about .btn { /* inherits from global .btn styles in colors.css */
  margin-top: var(--space-4);
}
.about .btn + .btn {
  margin-left: var(--space-2);
}

/* Tables (optional) */
.about table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.about th, .about td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.about thead th { color: var(--heading); text-align: left; }
