/* ── About Page ── */
.about-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
  min-height: 100vh;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
  margin-bottom: 40px;
}

.back-link {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--black);
}

.about-header .logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--black);
}

/* Hero */
.about-hero {
  text-align: center;
  padding: 40px 0 60px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 48px;
}

.about-eyebrow {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.about-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.about-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.about-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-500);
}

.about-meta span::before {
  content: "·";
  margin-right: 20px;
  color: var(--gray-300);
}
.about-meta span:first-child::before {
  content: "";
  margin-right: 0;
}

/* Sections */
.about-section {
  margin-bottom: 56px;
}

.about-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  letter-spacing: 0.5px;
}

.about-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.about-section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.about-section strong {
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(180deg, transparent 60%, var(--yellow-light) 60%);
  padding: 0 2px;
}

/* Tables */
.about-table-wrapper {
  overflow-x: auto;
  margin: 16px 0 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.about-table th {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.about-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-300);
  color: var(--gray-900);
  vertical-align: top;
  line-height: 1.6;
}

.about-table tbody tr:nth-child(even) td {
  background: var(--gray-100);
}

.about-table tbody tr:last-child td {
  border-bottom: none;
}

.about-table td.center {
  text-align: center;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.about-table.about-table-blue th {
  background: #2563eb;
}

.about-table.about-table-yellow th {
  background: var(--yellow);
  color: var(--black);
}

/* Callout */
.about-callout {
  background: linear-gradient(90deg, var(--yellow-light) 0%, #fff 100%);
  border-left: 4px solid var(--yellow-dark);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

.about-callout strong {
  color: var(--yellow-dark);
  background: none;
  padding: 0;
}

/* Contact */
.about-contact {
  background: linear-gradient(135deg, #fafafa 0%, var(--yellow-light) 100%);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  margin: 60px 0 40px;
}

.about-contact h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: 0.5px;
}

.about-contact p {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.about-contact a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}

.about-contact a:hover {
  border-bottom-color: var(--black);
}

/* CTA */
.about-cta {
  text-align: center;
  margin: 40px 0;
}

.about-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.5);
}

.about-cta-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
  .about-container {
    padding: 24px 16px 60px;
  }

  .about-hero {
    padding: 24px 0 40px;
    margin-bottom: 32px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-section {
    margin-bottom: 40px;
  }

  .about-section h2 {
    font-size: 19px;
  }

  .about-section h3 {
    font-size: 15px;
    margin-top: 24px;
  }

  .about-table {
    font-size: 13px;
  }

  .about-table th,
  .about-table td {
    padding: 10px 12px;
  }

  .about-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}
