/* BITCOIN SELF-CUSTODY MISTAKES — lead magnet page, light theme */

.mistakes-main { background: #F7F3ED; color: #1A1612; min-height: calc(100vh - 62px - 200px); padding: 5rem 1.5rem 5rem; display: block; }

.mistakes-wrap { max-width: 960px; margin: 0 auto; }

/* TWO-COLUMN GRID */
.mistakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* IMAGE SIDE */
.mistakes-cover {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #E8E0D4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mistakes-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.mistakes-cover-placeholder {
  text-align: center;
  color: #B0A89E;
  font-size: 0.82rem;
  font-family: var(--font-body);
  padding: 2rem;
  line-height: 1.6;
}

/* CONTENT SIDE */
.mistakes-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.mistakes-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1A1612;
  margin-bottom: 1rem;
}
.mistakes-sub {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #5C5449;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.mistakes-desc {
  font-size: 0.95rem;
  color: #7A7068;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* FOOTER divider on light bg */
.mistakes-main ~ .footer { border-top-color: #E0D8CE; }

@media (max-width: 720px) {
  .mistakes-main { padding: 3rem 1rem 4rem; }
  .mistakes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mistakes-cover { max-width: 320px; margin: 0 auto; }
}
