/* ============================================================
   TRIVIAHOSTHELP.COM - COMPLETE STYLE SYSTEM
   A comprehensive, production-ready CSS file for a ~45-page
   static HTML site. No frameworks. Pure CSS.
   Estimated size: ~1,800 lines
   ============================================================ */

/* ------------------------------------------------------------
   1. IMPORTS
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Source+Serif+4:wght@400;600;700&display=swap');

/* ------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Primary Palette - Deep Navy */
  --primary: #1B2A4A;
  --primary-light: #2C3E6B;
  --primary-dark: #0F1A30;

  /* Accent - Teal */
  --teal: #00BFA5;
  --teal-light: #33CFBA;
  --teal-dark: #009882;

  /* Accent - Amber */
  --amber: #FF8F00;
  --amber-light: #FFB300;
  --amber-dark: #E65100;

  /* Grays */
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #424242;

  /* Text */
  --text: #212121;
  --text-light: #616161;
  --white: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);

  /* Shape */
  --radius: 8px;
  --radius-lg: 16px;

  /* Layout */
  --max-width: 1200px;
  --content-width: 820px;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

/* ------------------------------------------------------------
   3. CSS RESET
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

p {
  margin: 0 0 1.2em 0;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin: 0 0 1.2em 0;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.4em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 24px 0;
}

figcaption {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-heading);
}

strong {
  font-weight: 700;
  color: var(--primary);
}

em {
  font-style: italic;
}

blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid var(--teal);
  background: var(--light-gray);
  font-style: italic;
  color: var(--text-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

hr {
  border: none;
  border-top: 1px solid var(--medium-gray);
  margin: 40px 0;
}

/* Selection color */
::selection {
  background: rgba(0, 191, 165, 0.2);
  color: var(--primary-dark);
}

::-moz-selection {
  background: rgba(0, 191, 165, 0.2);
  color: var(--primary-dark);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--medium-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gray);
}

/* ------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   ------------------------------------------------------------ */
h1 {
  font-size: 2.5em;
  font-weight: 800;
}

h2 {
  font-size: 1.8em;
  font-weight: 700;
}

h3 {
  font-size: 1.4em;
  font-weight: 700;
}

h4 {
  font-size: 1.2em;
  font-weight: 700;
}

/* ------------------------------------------------------------
   5. LAYOUT
   ------------------------------------------------------------ */
.main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 24px;
}

.article-content {
  width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------
   6. SITE HEADER
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.site-logo .logo-trivia {
  color: var(--primary);
}

.site-logo .logo-hosthelp {
  color: var(--teal);
}

.site-logo:hover {
  text-decoration: none;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--teal);
  text-decoration: none;
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
}

/* Mobile Hamburger Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ------------------------------------------------------------
   7. BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.breadcrumb li {
  margin: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: '\203A';
  margin: 0 10px;
  color: var(--medium-gray);
  font-size: 16px;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* ------------------------------------------------------------
   8. ARTICLE CONTENT
   ------------------------------------------------------------ */
.article-content h1 {
  margin-top: 40px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.article-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--primary);
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--primary-light);
}

.article-content h4 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--teal-dark);
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 16px;
}

.article-content th {
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
}

.article-content td {
  padding: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.article-content tr:nth-child(even) {
  background: #FAFAFA;
}

.article-content tr:hover {
  background: var(--light-gray);
}

.article-content code {
  background: var(--light-gray);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.article-content pre {
  background: var(--primary-dark);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
}

.article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ------------------------------------------------------------
   9. QUICK ANSWER BOX
   ------------------------------------------------------------ */
.quick-answer {
  background: linear-gradient(135deg, #E8F8F5, #F0FDFB);
  border-left: 4px solid var(--teal);
  padding: 24px;
  border-radius: var(--radius);
  margin: 24px 0;
}

.quick-answer-label {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.quick-answer p {
  color: var(--text);
  font-size: 1.05em;
  margin: 0;
  line-height: 1.7;
}

.quick-answer p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   10. TABLE OF CONTENTS
   ------------------------------------------------------------ */
.toc {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-heading);
  display: block;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.toc-list a:hover {
  color: var(--teal);
}

.toc-list .toc-h2 {
  font-weight: 600;
}

.toc-list .toc-h3 {
  padding-left: 16px;
  font-size: 14px;
}

/* Mobile TOC collapsible */
.toc-toggle {
  display: none;
  width: 100%;
  background: var(--light-gray);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  position: relative;
}

.toc-toggle::after {
  content: '+';
  position: absolute;
  right: 16px;
  font-size: 18px;
}

.toc-toggle[aria-expanded="true"]::after {
  content: '\2212';
}

/* ------------------------------------------------------------
   11. GUIDE STEPS (Numbered Step-by-Step)
   ------------------------------------------------------------ */
.guide-steps {
  margin: 32px 0;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--medium-gray);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  margin-right: 24px;
}

.step-content {
  flex-grow: 1;
  min-width: 0;
}

.step-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.step-content h3 {
  margin-top: 20px;
}

.step-content p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   12. PRO TIP BOX
   ------------------------------------------------------------ */
.pro-tip {
  background: #FFF8E1;
  border-left: 4px solid var(--amber);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 16px;
}

.pro-tip strong {
  color: var(--amber-dark);
}

.pro-tip p {
  margin: 0;
}

.pro-tip p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   13. CHECKLISTS
   ------------------------------------------------------------ */
.checklist-section {
  margin: 32px 0;
}

.checklist {
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  overflow: hidden;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background 0.15s ease;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item:hover {
  background: #FAFAFA;
}

.checklist-item input[type="checkbox"] {
  margin-right: 16px;
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}

.checklist-text {
  flex-grow: 1;
  font-size: 16px;
  font-family: var(--font-heading);
  line-height: 1.5;
}

/* Checked state */
.checklist-item.checked {
  opacity: 0.6;
}

.checklist-item.checked .checklist-text {
  text-decoration: line-through;
  color: var(--text-light);
}

.checklist-progress {
  text-align: center;
  padding: 12px;
  background: var(--light-gray);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border-top: 1px solid var(--medium-gray);
}

/* ------------------------------------------------------------
   14. TEMPLATES / SCORE TABLES
   ------------------------------------------------------------ */
.template-section {
  margin: 32px 0;
}

.template-preview {
  background: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius);
  padding: 24px;
  overflow-x: auto;
}

.score-template {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  font-size: 15px;
}

.score-template th {
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.score-template td {
  padding: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.score-template tr:nth-child(even) {
  background: #FAFAFA;
}

.score-template input {
  width: 100%;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  padding: 6px 8px;
  font-family: var(--font-heading);
  font-size: 14px;
}

.print-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.print-btn:hover {
  background: var(--primary-light);
}

/* ------------------------------------------------------------
   15. CTA BANNERS
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-md);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 0;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ------------------------------------------------------------
   16. BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ------------------------------------------------------------
   17. INLINE CTA
   ------------------------------------------------------------ */
.inline-cta {
  background: #E8F8F5;
  border: 1px solid #B2DFDB;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 20px 0;
  font-size: 16px;
  font-family: var(--font-heading);
}

.inline-cta p {
  margin: 0;
}

.inline-cta a {
  font-weight: 600;
  color: var(--teal-dark);
}

/* ------------------------------------------------------------
   18. COMPARISON CARDS
   ------------------------------------------------------------ */
.comparison-section {
  margin: 32px 0;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.comparison-card:last-child {
  margin-bottom: 0;
}

.comparison-card h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 16px;
}

.comparison-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-pros {
  background: #E8F5E9;
  padding: 16px;
  border-radius: 4px;
}

.comparison-cons {
  background: #FFEBEE;
  padding: 16px;
  border-radius: 4px;
}

.comparison-pros h4 {
  color: #2E7D32;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-cons h4 {
  color: #C62828;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-pros ul,
.comparison-cons ul {
  margin: 0;
  padding-left: 1.2em;
}

.comparison-pros li,
.comparison-cons li {
  margin-bottom: 6px;
  font-size: 15px;
}

.comparison-verdict {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--medium-gray);
  font-style: italic;
  color: var(--text-light);
}

/* ------------------------------------------------------------
   19. NAME CARDS (Team Names)
   ------------------------------------------------------------ */
.names-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.name-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s ease;
  cursor: default;
}

.name-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.list-section {
  margin: 32px 0;
}

.list-count {
  text-align: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 14px;
  margin-top: 16px;
}

/* ------------------------------------------------------------
   20. EXPAND / COLLAPSE
   ------------------------------------------------------------ */
.expand-btn {
  background: var(--light-gray);
  border: 1px solid var(--medium-gray);
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.expand-btn:hover {
  background: var(--medium-gray);
}

.expand-btn::after {
  content: '\25BC';
  font-size: 10px;
  transition: transform 0.2s ease;
}

.expand-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.expand-content.collapsed {
  display: none;
}

.expand-content.expanded {
  display: block;
  animation: fadeInExpand 0.3s ease;
}

@keyframes fadeInExpand {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 2000px;
  }
}

/* ------------------------------------------------------------
   21. SISTER LINK CROSS-PROMO BOX
   ------------------------------------------------------------ */
.sister-link {
  background: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.sister-link-text h3 {
  color: var(--primary);
  margin-bottom: 8px;
  margin-top: 0;
}

.sister-link-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  margin-top: 0;
}

.sister-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sister-link .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  font-size: 14px;
}

.sister-link .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ------------------------------------------------------------
   22. SITE FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ------------------------------------------------------------
   23. BACK TO TOP BUTTON
   ------------------------------------------------------------ */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: background 0.2s ease, transform 0.2s ease;
}

#back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

#back-to-top.visible {
  display: flex;
}

/* ------------------------------------------------------------
   24. READING PROGRESS BAR
   ------------------------------------------------------------ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ------------------------------------------------------------
   25. SCROLL REVEAL ANIMATIONS
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ------------------------------------------------------------
   26. SHARE BAR
   ------------------------------------------------------------ */
.share-bar {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--medium-gray);
  flex-wrap: wrap;
  align-items: center;
}

.share-bar span {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-light);
  margin-right: 8px;
}

.share-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.share-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--white);
}

.share-twitter {
  background: #1DA1F2;
}

.share-facebook {
  background: #4267B2;
}

.share-linkedin {
  background: #0077B5;
}

/* ------------------------------------------------------------
   27. CARD GRID SYSTEM
   ------------------------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  flex-grow: 1;
}

.card a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card a:hover {
  text-decoration: none;
}

/* Colored card variants */
.card-navy {
  background: #1B2A4A;
  color: var(--white);
}

.card-teal {
  background: #00BFA5;
  color: var(--white);
}

.card-amber {
  background: #FF8F00;
  color: var(--white);
}

.card-green {
  background: #2E7D32;
  color: var(--white);
}

.card-purple {
  background: #5E35B1;
  color: var(--white);
}

.card-red {
  background: #C62828;
  color: var(--white);
}

/* White card variant */
.card-white {
  background: var(--white);
  border: 1px solid var(--medium-gray);
}

.card-white h3 {
  color: var(--primary);
}

.card-white p {
  color: var(--text-light);
}

.card-white a {
  color: var(--teal);
}

/* Card with colored top border */
.card-border-top {
  border-top: 4px solid var(--teal);
}

.card-border-top-navy { border-top-color: var(--primary); }
.card-border-top-teal { border-top-color: var(--teal); }
.card-border-top-amber { border-top-color: var(--amber); }
.card-border-top-green { border-top-color: #2E7D32; }

/* ------------------------------------------------------------
   28. HOMEPAGE SPECIFIC
   ------------------------------------------------------------ */

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero .btn-primary {
  font-size: 18px;
  padding: 16px 40px;
}

/* --- Value Props --- */
.value-props {
  padding: 60px 24px;
  background: var(--light-gray);
}

.value-props-title {
  text-align: center;
  margin-bottom: 40px;
}

.value-props-title h2 {
  margin-top: 0;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prop-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 191, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.prop-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2em;
}

.prop-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 16px;
  font-family: var(--font-body);
  line-height: 1.6;
}

/* --- Featured Guides --- */
.featured-guides {
  padding: 60px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-guides-title {
  text-align: center;
  margin-bottom: 40px;
}

.featured-guides-title h2 {
  margin-top: 0;
}

/* --- Category Preview --- */
.category-preview {
  padding: 60px 24px;
  background: var(--light-gray);
}

.category-preview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-preview-title {
  text-align: center;
  margin-bottom: 40px;
}

.category-preview-title h2 {
  margin-top: 0;
}

/* ------------------------------------------------------------
   29. 404 ERROR PAGE
   ------------------------------------------------------------ */
.error-page {
  text-align: center;
  padding: 80px 24px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--teal);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
}

.error-message {
  font-size: 1.2em;
  margin-bottom: 32px;
  color: var(--text-light);
}

.error-page .btn-primary {
  margin-top: 8px;
}

/* ------------------------------------------------------------
   30. RELATED ARTICLES
   ------------------------------------------------------------ */
.related-articles {
  margin: 48px 0;
  padding-top: 32px;
  border-top: 1px solid var(--medium-gray);
}

.related-articles h3 {
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.2s ease;
}

.related-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.related-card a {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.related-card a:hover {
  color: var(--teal);
}

.related-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   31. TAGS
   ------------------------------------------------------------ */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag:hover {
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
}

/* ------------------------------------------------------------
   32. PAGINATION
   ------------------------------------------------------------ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 48px 0;
  font-family: var(--font-heading);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination a {
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--medium-gray);
}

.pagination a:hover {
  background: var(--light-gray);
  border-color: var(--teal);
  color: var(--teal);
}

.pagination .current {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}

.pagination .disabled {
  color: var(--medium-gray);
  cursor: not-allowed;
}

/* ------------------------------------------------------------
   33. SEARCH BOX
   ------------------------------------------------------------ */
.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--teal);
}

.search-box button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--teal);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.search-box button:hover {
  background: var(--teal-dark);
}

/* ------------------------------------------------------------
   34. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */

/* --- 1024px and below --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.4em;
  }

  .footer-grid {
    gap: 32px;
  }
}

/* --- 768px and below (PRIMARY BREAKPOINT) --- */
@media (max-width: 768px) {
  /* Typography */
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.2em;
  }

  /* Layout */
  .main {
    padding: 16px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header / Nav */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
    font-size: 16px;
  }

  .site-nav a:last-of-type {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }

  /* Hero */
  .hero {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1.1em;
  }

  /* Article content */
  .article-content h1 {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .article-content h2 {
    margin-top: 32px;
  }

  /* Step layout */
  .step {
    flex-direction: column;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Comparison cards */
  .comparison-details {
    grid-template-columns: 1fr;
  }

  /* Card grids */
  .card-grid {
    grid-template-columns: 1fr;
  }

  .names-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  /* CTA banner */
  .cta-banner {
    padding: 32px 24px;
    margin: 32px 0;
  }

  .cta-banner h2 {
    font-size: 1.5em;
  }

  .cta-banner p {
    font-size: 16px;
  }

  .cta-banner .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* Sister link */
  .sister-link {
    padding: 24px 16px;
    margin: 32px 0;
  }

  .sister-link-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-links h4 {
    margin-bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Share bar */
  .share-bar {
    gap: 8px;
  }

  .share-bar span {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }

  /* Table overflow */
  .template-preview {
    padding: 16px;
  }

  /* Back to top */
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* TOC - Mobile collapsible */
  .toc {
    padding: 0;
    border: none;
    box-shadow: none;
    margin: 16px 0;
  }

  .toc-toggle {
    display: block;
  }

  .toc-content {
    display: none;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 8px;
    background: var(--white);
  }

  .toc-content.expanded {
    display: block;
  }

  /* Value props */
  .value-props {
    padding: 40px 16px;
  }

  .prop-grid {
    grid-template-columns: 1fr;
  }

  /* Error page */
  .error-code {
    font-size: 80px;
  }

  /* Related articles */
  .related-grid {
    grid-template-columns: 1fr;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* --- 480px and below --- */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }

  .hero h1 {
    font-size: 1.7em;
  }

  .hero {
    padding: 48px 16px;
  }

  .hero p {
    font-size: 1em;
  }

  .quick-answer {
    padding: 16px;
  }

  .guide-steps .step {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .name-card {
    padding: 10px 12px;
    font-size: 14px;
  }

  .names-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cta-banner {
    padding: 24px 16px;
    border-radius: var(--radius);
  }

  .comparison-card {
    padding: 20px;
  }

  .card {
    padding: 20px;
  }

  .sister-link {
    padding: 20px 12px;
  }

  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  .error-code {
    font-size: 64px;
  }

  .error-message {
    font-size: 1em;
  }
}

/* --- Desktop Sticky TOC Sidebar (1024px+) --- */
@media (min-width: 1025px) {
  .has-sidebar {
    display: flex;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    align-items: flex-start;
  }

  .has-sidebar .main {
    flex: 1;
    max-width: none;
    min-width: 0;
  }

  .toc-sidebar {
    position: sticky;
    top: 100px;
    width: 260px;
    flex-shrink: 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .toc-sidebar .toc {
    margin: 0;
    box-shadow: var(--shadow-sm);
  }
}

/* --- Tablet TOC (768px - 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .toc {
    margin: 24px 0;
  }
}

/* ------------------------------------------------------------
   35. UTILITY CLASSES
   ------------------------------------------------------------ */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing - margin top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

/* Spacing - margin bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

/* Spacing - padding top */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 48px; }

/* Spacing - padding bottom */
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 48px; }

/* Display */
.hidden { display: none !important; }
.visible { display: block !important; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* No print (hidden when printing) */
.no-print {
  /* Intentionally empty - see @media print */
}

/* Full width */
.full-width {
  width: 100%;
}

/* Text colors */
.text-primary { color: var(--primary); }
.text-teal { color: var(--teal); }
.text-amber { color: var(--amber); }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }

/* Background colors */
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }

/* Font utilities */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* Font weight */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Font size */
.fs-small { font-size: 14px; }
.fs-medium { font-size: 16px; }
.fs-large { font-size: 20px; }

/* ------------------------------------------------------------
   36. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  /* Hide interactive/non-content elements */
  .site-header,
  .site-footer,
  .toc,
  .toc-sidebar,
  .cta-banner,
  .sister-link,
  #back-to-top,
  #progress-bar,
  .share-bar,
  .nav-toggle,
  .breadcrumb,
  .related-articles,
  .search-box,
  .expand-btn,
  .print-btn {
    display: none !important;
  }

  /* Reset backgrounds and colors */
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }

  .main {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .article-content {
    width: 100%;
  }

  /* Show all expand/collapse content */
  .expand-content.collapsed,
  .expand-content.expanded {
    display: block !important;
  }

  /* Typography for print */
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
    page-break-before: always;
  }

  h3 {
    font-size: 14pt;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  /* Links - show URL */
  a {
    color: #000;
    text-decoration: underline;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
    color: #666;
    word-break: break-all;
  }

  a[href^="#"]::after {
    content: '';
  }

  /* Remove shadows, backgrounds, borders */
  .card,
  .comparison-card,
  .name-card,
  .pro-tip,
  .quick-answer,
  .inline-cta,
  .checklist,
  .template-preview {
    box-shadow: none !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
  }

  .step {
    border-bottom: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .step-number {
    background: #000 !important;
    color: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Checklist - show checkboxes */
  .checklist-item {
    border-bottom: 1px solid #eee;
    page-break-inside: avoid;
  }

  /* Score template */
  .score-template th {
    background: #333 !important;
    color: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Prevent page breaks inside */
  .comparison-card,
  .pro-tip,
  .quick-answer,
  figure,
  table {
    page-break-inside: avoid;
  }

  /* Ensure images print */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* No animations */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Value props for print */
  .value-props {
    background: #fff !important;
  }

  .prop-card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* ============================================================
   END OF STYLE SYSTEM
   ============================================================ */
