@charset "UTF-8";

/* src/styles.scss */
:root {
  --primary: #006b68;
  --primary-container: #6df7f1;
  --on-primary: #ffffff;
  --accent-tiffany: #0abab5;
  --secondary: #627c7a;
  --secondary-container: #cce8e6;
  --on-secondary-container: #3d5655;
  --background: #f6faf9;
  --surface: #f6faf9;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #eef5f4;
  --surface-container: #e8f1f0;
  --surface-container-high: #e1ebe9;
  --surface-container-highest: #d9e5e3;
  --on-surface: #2a3434;
  --on-surface-variant: #5d706f;
  --on-surface-muted: #859492;
  --outline-variant: #a9b4b3;
  --status-draft: #859492;
  --status-review: #b5782f;
  --status-changes: #d45547;
  --status-scheduled: #517c94;
  --status-published: #006b68;
  --status-archived: #9aa6a4;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --gradient-primary:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-container) 160%);
  --shadow-ambient: 0 8px 24px 0 rgba(42, 52, 52, 0.08);
  --shadow-soft: 0 4px 16px 0 rgba(42, 52, 52, 0.05);
  --font-display:
    "Newsreader",
    Georgia,
    "Noto Serif Thai",
    serif;
  --font-body:
    "Manrope",
    "Noto Sans Thai",
    system-ui,
    -apple-system,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--on-surface);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--on-surface);
}
a {
  color: var(--primary);
  text-decoration: none;
}
.display-lg {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 600;
}
.headline-lg {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}
.headline-sm {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 600;
}
.title-md {
  font-weight: 700;
  font-size: 1.05rem;
}
.body-lg {
  font-size: 1rem;
}
.label-md {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.text-muted {
  color: var(--on-surface-variant);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.98);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: var(--shadow-ambient);
}
.btn-ghost {
  background: transparent;
  color: var(--on-surface);
  box-shadow: inset 0 0 0 1.5px rgba(169, 180, 179, 0.45);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--surface-container-low);
}
.btn-danger {
  background: transparent;
  color: var(--status-changes);
  box-shadow: inset 0 0 0 1.5px rgba(212, 85, 71, 0.35);
}
.btn-danger:hover:not(:disabled) {
  background: rgba(212, 85, 71, 0.08);
}
.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
}
.card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.5rem 1.75rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--secondary-container);
  color: var(--on-secondary-container);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: currentColor;
}
.status-draft {
  color: var(--status-draft);
  background: rgba(133, 148, 146, 0.14);
}
.status-in_review {
  color: var(--status-review);
  background: rgba(181, 120, 47, 0.14);
}
.status-changes_requested {
  color: var(--status-changes);
  background: rgba(212, 85, 71, 0.14);
}
.status-scheduled {
  color: var(--status-scheduled);
  background: rgba(81, 124, 148, 0.14);
}
.status-published {
  color: var(--status-published);
  background: rgba(0, 107, 104, 0.14);
}
.status-archived {
  color: var(--status-archived);
  background: rgba(154, 166, 164, 0.16);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field > label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--on-surface-variant);
}
.input,
.textarea,
.select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--on-surface);
  background: var(--surface-container-low);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.18s ease, background 0.18s ease;
  width: 100%;
}
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-bottom-color: var(--primary);
  background: var(--surface-container);
}
.textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}
.scrollbar-thin::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background: var(--surface-container-highest);
  border-radius: var(--radius-full);
}

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