/* ===== Stub Pages ===== */
.stub {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2.5rem 3rem;
}

.stub__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #343F4B;
  text-align: center;
}

/* Show header description only on large screens */
@media (min-width: 1025px) {
  body:has(.stub) .header__description {
    display: block !important;
  }
}

/* Mobile/desktop name swap */
.header__name--short {
  display: none;
}

@media (max-width: 1024px) {
  .header__name--full {
    display: none;
  }

  .header__name--short {
    display: inline;
  }
}

@media (max-width: 768px) {
  .stub {
    padding: 5rem 1.25rem 2rem;
  }

  .stub__text {
    font-size: 1rem;
  }
}
