.foot-split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.foot-main h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.foot-main h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.foot-main p {
  color: var(--muted);
  margin-bottom: 14px;
}

.foot-pullquote {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  position: sticky;
  top: 80px;
}

.foot-pullquote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.foot-pullquote img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 16px;
}

.foot-markets-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.foot-markets-table th,
.foot-markets-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.foot-markets-table th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.foot-markets-table td {
  color: var(--muted);
}

@media (max-width: 768px) {
  .foot-split {
    grid-template-columns: 1fr;
  }

  .foot-pullquote {
    position: static;
  }

  .foot-pullquote img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    object-fit: cover;
  }
}
