* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f5f5f1;
  color: #142529;
  font:
    16px/1.7 Inter,
    'Segoe UI',
    Arial,
    sans-serif;
}
a {
  color: #126669;
}
header {
  margin: 24px auto 0;
  width: min(1450px, calc(100% - 50px));
  padding: 18px 25px;
  border-radius: 20px;
  background: #102b37;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #eaf7f3;
}
header a {
  color: inherit;
  text-decoration: none;
}
header nav {
  display: flex;
  gap: 30px;
  font-size: 0.85rem;
}
.brand {
  font-size: 28px;
  letter-spacing: -0.05em;
}
.brand small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.button {
  display: inline-block;
  border: 0;
  border-radius: 99px;
  background: #142529;
  color: #fff;
  padding: 13px 22px;
  min-height: 46px;
  font: 600 0.82rem/1.5 inherit;
  cursor: pointer;
  text-decoration: none;
}
header .button {
  background: #e8f1e8;
  color: #142529;
}
main {
  max-width: 830px;
  margin: 80px auto;
  padding: 0 25px;
}
h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 450;
  letter-spacing: -0.05em;
  margin: 24px 0;
}
h2 {
  font-size: 2rem;
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.question {
  padding-bottom: 45px;
  border-bottom: 1px solid #bdcbca;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #426464;
}
.byline,
.muted {
  color: #536165;
  font-size: 0.8rem;
}
.body {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin-top: 25px;
}
.body a {
  overflow-wrap: anywhere;
}
.reply {
  padding: 25px 0;
  border-bottom: 1px solid #bdcbca;
}
.reply small {
  font-size: 0.65rem;
  color: #536165;
}
.eidos-reply {
  background: #e7ede8;
  border-radius: 12px;
  padding: 25px;
  margin-block: 25px;
}
.reply-form {
  margin-top: 65px;
}
form label {
  display: grid;
  gap: 7px;
  font-size: 0.85rem;
  margin: 20px 0;
}
input,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #aebcbe;
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: #142529;
}
textarea {
  resize: vertical;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #168c91;
  outline-offset: 4px;
}
#reply-status {
  font-size: 0.85rem;
}
.trap {
  position: absolute;
  left: -9999px;
}
.skip {
  position: absolute;
  top: -100px;
}
.skip:focus {
  top: 0;
  background: white;
  padding: 15px;
  z-index: 10;
}
footer {
  background: #0b202a;
  color: #cbdadc;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 35px max(25px, calc((100vw - 780px) / 2));
  font-size: 0.75rem;
}
footer a {
  color: inherit;
}
@media (max-width: 600px) {
  header {
    width: calc(100% - 28px);
    padding: 15px;
    flex-wrap: wrap;
    gap: 12px;
  }
  header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.75rem;
  }
  header .button {
    padding: 9px 15px;
    font-size: 0.72rem;
  }
  main {
    margin: 45px auto;
  }
  h1 {
    font-size: 2.8rem;
  }
  footer {
    gap: 20px;
    padding: 30px 25px;
  }
}
