/* src/styles.css */
:root {
  --bg-paper: #fdfbf7;
  --bg-secondary: #f4f1ea;
  --ink-primary: #111111;
  --ink-secondary: #333333;
  --ink-muted: #666666;
  --accent-red: #8a1c1c;
  --accent-blue: #0f2c4c;
  --border-strong: #000000;
  --border-light: #bfbfbf;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --font-headline: "Playfair Display", serif;
  --font-body: "Merriweather", serif;
  --font-sans: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--bg-paper);
  color: var(--ink-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  color: var(--ink-primary);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: all 0.2s ease;
}
a:hover {
  background-color: var(--accent-blue);
  color: var(--bg-paper);
  text-decoration: none;
}
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (max-width: 600px) {
  .container {
    padding: 0 var(--space-sm);
  }
}
.journal-border-top {
  border-top: 4px double var(--border-strong);
}
.journal-border-bottom {
  border-bottom: 4px double var(--border-strong);
}
.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.section-header--centered {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: var(--space-sm);
}
.section-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-primary);
  position: relative;
}
.section-title--with-underline::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-red);
}
.section-title--with-ornaments {
  display: inline-block;
  padding: 0 var(--space-md);
}
.section-title--with-ornaments::before,
.section-title--with-ornaments::after {
  content: "\2014";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-red);
}
.section-title--with-ornaments::before {
  right: 100%;
  margin-right: 8px;
}
.section-title--with-ornaments::after {
  left: 100%;
  margin-left: 8px;
}
.badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  display: inline-block;
}
.badge--dark {
  color: var(--bg-paper);
  background: var(--ink-primary);
}
.badge--accent {
  color: var(--bg-paper);
  background: var(--accent-red);
}
.badge--light {
  color: var(--ink-primary);
  background: var(--bg-secondary);
  border-radius: 3px;
  font-size: 0.85rem;
  padding: 5px 10px;
}
.label-small {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.label-small--muted {
  color: var(--ink-muted);
}
.label-small--accent {
  color: var(--accent-red);
}
.text-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-secondary);
}
.text-body--justify {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.section-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 0.5rem;
  margin-bottom: var(--space-md);
  display: block;
}
.dropcap {
  float: left;
  font-family: var(--font-headline);
  font-size: 4.6rem;
  line-height: 0.75;
  margin-right: 0.6rem;
  font-weight: 900;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--ink-secondary);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-paper);
}
::-webkit-scrollbar-thumb {
  background: var(--ink-secondary);
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.2rem;
  }
  .section-title--with-ornaments::before,
  .section-title--with-ornaments::after {
    display: none;
  }
  .section-header {
    margin-bottom: var(--space-md);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
