/* About page styles */

.about-pg {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* Hero section */
.about-hero {
  background-color: var(--pool-deep);
  background-image:
    linear-gradient(var(--tile-color-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--tile-color-dark) 1px, transparent 1px);
  background-size: var(--tile-size-hero) var(--tile-size-hero);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: var(--sp-8) 0;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: var(--sp-3);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: var(--sp-4);
}

.hero-body {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* About sections */
.about-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: var(--sp-4);
  overflow: hidden;
  position: relative;
}

.section-anchor {
  position: absolute;
  top: -70px;
}

.section-head {
  padding: var(--sp-5) var(--sp-5) var(--sp-3);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pool-deep);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--stone);
}

.section-body {
  padding: var(--sp-5);
}

.section-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.section-body p:last-child {
  margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--pool);
  padding-left: var(--sp-4);
  margin: var(--sp-5) 0;
}

.pull-quote p {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 0;
}

/* Author card */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.author-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pool-light);
  color: var(--pool-deep);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-1);
}

.author-bio {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Commitment list */
.commitment-list {
  margin: var(--sp-5) 0;
}

.commitment-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}

.commitment-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.commitment-item:first-child {
  padding-top: 0;
}

.commitment-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pool-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.commitment-icon svg {
  stroke: var(--pool);
}

.commitment-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-1);
}

.commitment-text p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Affiliate table */
.affiliate-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-5) 0;
  font-size: 13px;
}

.affiliate-table th,
.affiliate-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.affiliate-table th {
  font-weight: 600;
  color: var(--text-2);
  font-size: 11px;
  letter-spacing: 0.02em;
  background: var(--surface-2);
}

.affiliate-table td {
  color: var(--text);
}

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

.status-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}

.status-none {
  background: var(--pool-light);
  color: var(--pool-deep);
}

/* Data privacy rows */
.data-row {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.data-row:last-child {
  margin-bottom: 0;
}

.data-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pool);
  margin-top: 6px;
  flex-shrink: 0;
}

.data-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.data-text strong {
  color: var(--text);
}

/* Contact section */
.contact-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.contact-note a {
  color: var(--pool);
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}
