.content-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-charcoal);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 32px;
  font-size: 0.9rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 1;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

header {
  text-align: center;
  padding: 40px 0 60px;
  border-bottom: 1px solid rgba(44,38,37,0.1);
  margin-bottom: 48px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--c-red);
  margin-top: 20px;
  margin-bottom: 10px;
}

.doc-date {
  font-style: italic;
  opacity: 0.55;
  font-size: 0.95rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--c-green);
  margin-top: 48px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(42,92,78,0.2);
  padding-bottom: 8px;
}

h3 {
  font-size: 1.05rem;
  color: var(--c-charcoal);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

p,
li {
  font-size: 1rem;
  color: rgba(44,38,37,0.82);
  margin-bottom: 16px;
  line-height: 1.75;
  overflow-wrap: break-word;
}

ul,
ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

strong {
  color: var(--c-charcoal);
}

a {
  color: var(--c-red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--c-charcoal);
}

@media (max-width: 768px) {
  .content-container {
    padding: 36px 16px 80px;
  }

  header {
    padding: 32px 0 48px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.4rem);
    line-height: 1.12;
  }

  header p {
    font-size: 1rem !important;
    line-height: 1.55;
    overflow-wrap: break-word;
  }
}
