/* ============================================================
   FPGAjobs — the About page.

   Was W3.CSS cards and a one-logo-at-a-time carousel on a page that shares
   nothing else with the site. This brings it onto the same vocabulary as the
   listing and the submission flow: a narrow column, `.section-head` /
   `.section-label` headers, and quote cards on the skin's surface tokens.
   Colour is the active skin's.
   ============================================================ */

.about {
  max-width: 780px;
  margin: 0 auto;
}

.about-hero {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}
.about-hero h1 {
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}
.about-hero p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin: 0;
}

.about-prose {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--fg-muted);
  padding: 1.5rem 0 0.5rem;
}
.about-prose p { margin: 0 0 1rem; }
.about-prose a { font-weight: 550; }
.about-prose .btn { margin-top: 0.5rem; }

.about-section { margin-top: 2.5rem; }
.about-section .section-head { margin-bottom: 1.25rem; }

.about-quotes {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-quote {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-quote > img {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  align-self: flex-start;
  /* Vendor logos are a grab bag of dark-on-transparent and white-on-transparent;
     a light backing keeps every one of them legible on a dark surface. */
  background: #fff;
  border-radius: 4px;
  padding: 3px 5px;
}
.about-quote blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fg-default);
}
.about-quote figcaption {
  font-size: 0.82rem;
  color: var(--fg-default);
  font-weight: 600;
  margin-top: auto;
}
.about-quote figcaption a { font-weight: 600; }
.about-quote figcaption span {
  display: block;
  color: var(--fg-subtle);
  font-weight: 400;
}

.about-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}
.about-logos img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 5px 8px;
}

@media (max-width: 575px) {
  .about-hero h1 { font-size: 1.6rem; }
  .about-quotes { grid-template-columns: 1fr; }
}
