/* ================================
   Brief Page Layout
   ================================ */

.brief-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.brief-page__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.brief-page__back {
  font-size: 15px;
  font-weight: 600;
  color: #eb297d;
  text-decoration: none;
}
.brief-page__back:hover {
  text-decoration: underline;
}

.brief-page__footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 60px;
}

/* ================================
   Prose Styles (rendered markdown)
   ================================ */

.prose h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.prose h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #000;
  margin-top: 50px;
  margin-bottom: 15px;
}

.prose h3 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.3;
  color: #111;
  margin-top: 35px;
  margin-bottom: 10px;
}

.prose p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 16px;
}

.prose strong {
  font-weight: 800;
  color: #111;
}

.prose em {
  font-style: italic;
}

.prose ul, .prose ol {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 16px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
}

.prose li strong {
  color: #000;
}

.prose code {
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  color: #c7254e;
}

.prose hr {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 40px 0;
}

.prose a {
  color: #eb297d;
  text-decoration: none;
}
.prose a:hover {
  text-decoration: underline;
}

/* ================================
   Brief Responsive
   ================================ */
@media only screen and (max-width: 1023px) {
  .prose h1 {
    font-size: 32px;
  }
  .prose h2 {
    font-size: 26px;
    margin-top: 40px;
  }
  .prose h3 {
    font-size: 19px;
    margin-top: 28px;
  }
  .prose p, .prose ul, .prose ol {
    font-size: 16px;
    line-height: 1.6;
  }
}
