.reconstruction-page {
  background: var(--bone);
  min-height: 52vh;
  padding: 5rem 0 6rem;
}

.reconstruction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.reconstruction-copy {
  max-width: 38rem;
}

.reconstruction-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.reconstruction-copy p {
  color: rgba(43, 36, 32, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.reconstruction-copy a:not(.btn) {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 59, 43, 0.35);
}

.reconstruction-copy a:not(.btn):hover {
  border-color: currentColor;
}

.reconstruction-mark {
  position: relative;
  aspect-ratio: 1;
  max-width: 18rem;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 1px solid rgba(156, 59, 43, 0.3);
  border-radius: 50%;
  color: var(--rust);
}

.reconstruction-mark::before,
.reconstruction-mark::after {
  content: '';
  position: absolute;
  background: currentColor;
  opacity: 0.45;
}

.reconstruction-mark::before {
  width: 58%;
  height: 1px;
}

.reconstruction-mark::after {
  width: 1px;
  height: 58%;
}

.reconstruction-mark span {
  position: relative;
  z-index: 1;
  background: var(--bone);
  padding: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .reconstruction-page {
    padding: 3.5rem 0 4.5rem;
  }

  .reconstruction-layout {
    grid-template-columns: 1fr;
  }

  .reconstruction-mark {
    max-width: 13rem;
    order: -1;
  }
}
