.longread {
  margin-top: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  border-radius: 6px;
  background: var(--shell-2);
  color: #dce2e7;
  line-height: 1.68;
}

.longread article {
  min-width: 0;
}

.longread .wide {
  grid-column: 1 / -1;
}

.longread h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.longread h3 {
  margin: 18px 0 5px;
  color: #eef2f5;
  font-size: 15px;
  line-height: 1.35;
}

.longread p {
  margin: 0 0 12px;
  color: #c9d0d6;
}

.longread .intro-copy,
.longread .legal-note,
.longread .closing-copy {
  padding: 20px;
  border-left: 3px solid var(--green);
  background: #13171c;
}

.longread .intro-copy h2,
.longread .legal-note h2,
.longread .closing-copy h2 {
  color: var(--green-2);
}

@media (max-width: 900px) {
  .longread {
    grid-template-columns: 1fr;
  }

  .longread .wide {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .longread {
    padding: 19px 16px;
    gap: 22px;
  }

  .longread h2 {
    font-size: 18px;
  }

  .longread .intro-copy,
  .longread .legal-note,
  .longread .closing-copy {
    padding: 16px 14px;
  }
}
