/* ============================================
   Modern SEO-Optimized Style for Research Article
   ============================================ */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Professional Research Theme */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 5rem;
  --card-padding: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent horizontal overflow - Force word breaking */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Force all text elements to break long words */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, div, a, strong, em {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Specific fix for long Indonesian compound words */
.status-2f7f p,
.hero-dim-d12a,
.element_dd23,
.notification-c4eb,
.background-9197,
.lite_1963,
.main-2d38,
.fresh_f9fc {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.primary_basic_cd77 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.primary_basic_cd77 > *,
.pagination-left-2e43,
.status-2f7f,
.easy_9f5e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .primary_basic_cd77 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .primary_basic_cd77 {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.preview_middle_5b9b {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.preview_middle_5b9b.hover_full_9af7 {
  box-shadow: var(--shadow-md);
}

.outer_bb63 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.static-12f7 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.notice_iron_ee9a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.main-white-bdc4 {
  display: none;
}

/* Hide mobile actions on desktop */
.article_4638 {
  display: none;
}

.highlight_liquid_bef9 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.highlight_liquid_bef9 a:hover,
.highlight_liquid_bef9 a.fn-active-a3a0 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.button-ab45 {
  margin-left: 1rem;
}

.shadow-32a8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.out-6943,
.title_fluid_a0b2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.out-6943 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.out-6943:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.title_fluid_a0b2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.title_fluid_a0b2:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.out-6943 svg,
.title_fluid_a0b2 svg {
  flex-shrink: 0;
}

.sort_b84c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.component_2fb1 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.component_2fb1::before,
.component_2fb1::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.component_2fb1::before {
  top: -7px;
}

.component_2fb1::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.element_inner_a42e {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-color);
}

/* === Hero Brand Image - First Screen / Above the Fold === */
.highlight_0a10 {
  margin: 2.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.west-9e0a {
  margin: 0 0 2rem;
  text-align: center;
}

.south_fe0d {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.south_fe0d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.top_83d8 {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.top_83d8 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.overlay-advanced-00ac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-stale-e923 {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-stale-e923:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.image_paper_95ec {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.smooth-af27 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.highlight_88cd {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.highlight_88cd .popup-7dcc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.highlight_88cd .popup-7dcc svg {
  flex-shrink: 0;
}

.highlight_88cd .under-2d34 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.highlight_88cd .under-2d34:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.highlight_88cd .bronze-0132 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.highlight_88cd .bronze-0132:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile optimization for hero brand */
@media (max-width: 768px) {
  .highlight_0a10 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .south_fe0d {
    max-width: 100%;
  }

  .overlay-advanced-00ac {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-stale-e923 {
    padding: 1rem;
  }

  .image_paper_95ec {
    font-size: 1.5rem;
  }

  .smooth-af27 {
    font-size: 0.75rem;
  }

  .top_83d8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .highlight_88cd {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .highlight_88cd .popup-7dcc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .overlay-advanced-00ac {
    grid-template-columns: 1fr;
  }
}

.dropdown_16f6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.static-fdee {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

time {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* === Article Header & Meta === */
.paper_831d {
  margin-bottom: 2.5rem;
}

.widget_2d12 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dropdown_16f6 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.container_c70f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.north-050b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.active_0f19 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lite-8f46 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.text_9bff {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.accordion_f73b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-steel-d0a6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-steel-d0a6 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.wood_f1b7 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.prev-be43 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.button-80ce {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.upper_a967 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.focus_946a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.image_3368 {
  display: grid;
  gap: 1rem;
}

.sidebar_9266 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.backdrop_over_1bd8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.input-thick-8366 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tabs-pink-78c3 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.article-1736 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.header_huge_799c {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header_huge_799c p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.hero-dim-d12a {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gallery_47bc {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.cold-0c8b {
  display: grid;
  gap: 2rem;
}

.element_531b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.north-050b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.container_c70f {
  flex: 1;
}

.lite-8f46 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.lite-8f46 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.backdrop-e279 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.text_9bff {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.slider_narrow_b8a4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.slider_narrow_b8a4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.summary_7a65 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.summary_7a65 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.glass-5a9a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.glass-5a9a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.glass-5a9a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glass-5a9a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.white-1435 {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.video-blue-26e4 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.notice-motion-e308 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.fluid-0b7e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-523e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gallery-523e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.gallery-523e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.gallery-523e ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gallery-523e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.gallery-523e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.status-2f7f {
  padding: 3rem 0 5rem;
}

.easy_9f5e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.easy_9f5e.gold_4610 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.element_dd23 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.solid_8098 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.green-23b7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.green-23b7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.row-static-7e27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tiny_b1e1 {
  text-align: center;
}

.right_cca6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.item_cold_f2d9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.surface_basic_b028 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.lite_1963 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.notification-c4eb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.notification-c4eb * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notification-c4eb:hover {
  box-shadow: var(--shadow-lg);
}

.notification-c4eb.warm_2464 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notification-c4eb h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notification-c4eb ul {
  margin: 1rem 0;
}

.notification-c4eb li {
  margin-bottom: 0.75rem;
}

.aside_857a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wrapper-02fa {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wrapper-02fa a {
  font-weight: 600;
}

/* === Data Tables === */
.static_b229 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.static_b229 table {
  width: 100%;
  min-width: 600px;
}

.static_b229 thead {
  background-color: var(--primary-color);
  color: white;
}

.static_b229 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.static_b229 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.static_b229 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.static_b229 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.border-warm-8cd4 {
  list-style: none;
  margin: 1.5rem 0;
}

.border-warm-8cd4 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.border-warm-8cd4 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.mask_87d3::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.fn-warning-a3a0::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.easy-14f3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.glass-c489 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.glass-c489 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.glass-c489 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.glass-c489 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy-14f3 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.main-2d38 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.main-2d38::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.row_d8d0 {
  position: relative;
  margin-bottom: 3rem;
}

.wrapper-35a1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.wrapper-35a1 .layout_selected_dcc8 {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav_957e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.nav_957e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.nav_957e ul {
  margin: 1rem 0;
}

.nav_957e li {
  margin-bottom: 0.75rem;
}

.motion_e665 {
  display: inline-block;
  background-color: #dbeafe;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* === Transparency Box === */
.wood-5063 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.wood-5063 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.box-east-00a6 {
  list-style: none;
  margin: 1.5rem 0;
}

.box-east-00a6 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.box-east-00a6 a {
  font-weight: 600;
}

.gradient_pink_c25b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.fresh_f9fc {
  margin: 2.5rem 0;
}

.text-53ab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.text-53ab:hover {
  box-shadow: var(--shadow-lg);
}

.text-53ab.shade-clean-a47e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.caption-f67c {
  flex-shrink: 0;
}

.caption-f67c span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.hard_2fd9 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.tabs_wide_4da2,
.media_center_ac0b,
.rough-b454 {
  width: 100%;
  margin: 1.5rem 0;
}

.pagination_fast_2485 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.pagination_fast_2485 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.basic-5d89 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.basic-5d89 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hidden_cb1a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hidden_cb1a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.north-3be9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.background_cool_881b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.background_cool_881b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.background_cool_881b.sort_fe00 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.background_cool_881b .column_939a {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.background_cool_881b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.video-last-632c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.block-0a65 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.block-0a65 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.purple-1b4a {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  word-break: break-all;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* === Buttons === */
.popup-7dcc {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.under-2d34 {
  background-color: var(--primary-color);
  color: white;
}

.under-2d34:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.bronze-0132 {
  background-color: var(--text-secondary);
  color: white;
}

.bronze-0132:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.active-cool-6ee6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.active-cool-6ee6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.dropdown-6892 {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.dropdown-6892:hover {
  background-color: var(--primary-dark);
}

.detail_753a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.fluid_188b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.description-ffbc {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.media_in_2ea6 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Demographics & Data Visualization === */
.backdrop-mini-9bc7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tertiary-tiny-f043 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.tertiary-tiny-f043 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wrapper_7a05 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.section_b81b {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.table_eefd {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.in-5d83 {
  list-style: none;
  counter-reset: rank-counter;
}

.in-5d83 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.in-5d83 li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.panel_middle_74f7 {
  list-style: none;
}

.panel_middle_74f7 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tertiary-5685 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert_075e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.alert_075e .hover-3a6f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.alert_075e .alert-pressed-ebb2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.box_pressed_b117 {
  margin-top: 3rem;
}

.warm_02fc {
  width: 100%;
}

.sidebar_6233 {
  background-color: #fef3c7;
}

.pink-3bfd {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.east-5d54 {
  margin: 3rem 0;
}

.nav-basic-ed15 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.info_short_7c0d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.info_short_7c0d:hover {
  box-shadow: var(--shadow-lg);
}

.info_short_7c0d.active_fluid_97d4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.thumbnail_5222 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.west-5e22 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.west-5e22 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb_b33a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.info_short_7c0d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.button_action_4072 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-motion-55d5 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.purple-eaf6 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail-227c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link_simple_2699 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.complex_8d7e {
  margin-top: 1rem;
}

/* === FAQ Section === */
.label-hot-1fcf {
  max-width: 900px;
  margin: 0 auto;
}

.banner-inner-7a0e {
  margin: 2rem 0;
}

.over_4ed8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.over_4ed8 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.over_4ed8 summary::-webkit-details-marker {
  display: none;
}

.over_4ed8 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.in-230a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.over_4ed8[open] .in-230a {
  transform: rotate(45deg);
}

.progress_huge_784e {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.progress_huge_784e p:last-child {
  margin-bottom: 0;
}

.modal-huge-37ed {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.banner_2937 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.mini_e3ba {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.mini_e3ba p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mini_e3ba .popup-7dcc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.aside-yellow-8935 {
  max-width: 900px;
  margin: 0 auto;
}

.gold_f449 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.red_915d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.red_915d.fn-success-a3a0 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hero-f75e {
  font-size: 3rem;
  line-height: 1;
}

.input-871c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.wood_4527 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.row_778e,
.picture_fee8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.row_778e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.picture_fee8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.gradient_focused_8817,
.avatar-0f3e {
  margin: 1.5rem 0;
}

.gradient_focused_8817 li,
.avatar-0f3e li {
  margin-bottom: 1rem;
}

.heading-black-101c {
  margin: 3rem 0;
}

.plasma-1eab {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.plasma-1eab h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.plasma-1eab ol {
  margin: 1rem 0;
}

.plasma-1eab li {
  margin-bottom: 0.75rem;
}

.hovered_c7ed {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tabs_advanced_aecb {
  margin: 2rem 0;
}

.bright-fb70 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.new_a1dc {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.new_af75 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.header-dim-9856 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.media-lower-d7f1 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.aside-complex-aead {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.aside-complex-aead img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.active_0f19 {
  flex: 1;
}

.active_0f19 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.gallery_9028 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-83fb p {
  margin-bottom: 1rem;
}

.description-hard-23a1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.message_huge_43aa {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form_in_a42d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form_in_a42d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.table-gold-ab92 h3 {
  margin-bottom: 1.5rem;
}

.box-b020 {
  display: grid;
  gap: 2rem;
}

.paper-fb2e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.paper-fb2e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.paper-fb2e h4 {
  margin: 0 0 0.25rem;
}

.paper-fb2e p {
  margin: 0;
  font-size: 0.9375rem;
}

.active-thick-0be8 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.frame_0153 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.frame_0153 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame_0153 ul {
  margin: 1.5rem 0;
}

.frame_0153 li {
  margin-bottom: 0.75rem;
}

.feature_fresh_db18 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.fast_d3af {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.stale_3483 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hidden-6955 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.hidden-6955 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.layout_easy_77ab {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.layout_easy_77ab a {
  color: rgba(255, 255, 255, 0.8);
}

.carousel_mini_2db4 {
  list-style: none;
}

.carousel_mini_2db4 li {
  margin-bottom: 0.75rem;
}

.carousel_mini_2db4 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.carousel_mini_2db4 a:hover {
  color: white;
}

.pagination_9f8e {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fresh_de53 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hard_7fec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.out-699e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.east-3abe {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .primary_basic_cd77 {
    padding: 0 1.25rem;
  }

  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  /* Reduce heading sizes for mobile */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .button_27d5 {
    font-size: 1.5rem !important;
  }

  .widget_2d12 {
    font-size: 1.5rem !important;
  }

  p, li, td, th, span, div, strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Force all containers to fit */
  .notification-c4eb,
  .background-9197,
  .nav_957e,
  .hard_2fd9,
  .thumbnail_5222,
  .info_short_7c0d,
  .progress_huge_784e,
  .top_83d8,
  .hero-dim-d12a,
  .element_dd23 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .dropdown_16f6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .container_c70f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .north-050b {
    flex-shrink: 0;
  }

  .active_0f19 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .lite-8f46,
  .text_9bff {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .text_9bff {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .notice_iron_ee9a {
    display: none;
  }

  /* Show mobile actions */
  .article_4638 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .breadcrumb-first-8fec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 0.15rem;
    min-width: 60px;
    max-width: 75px;
  }

  .breadcrumb-first-8fec svg {
    flex-shrink: 0;
  }

  .breadcrumb-first-8fec .image-022a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .breadcrumb-first-8fec .tabs-last-514b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .form-hard-13d9 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .module-aa47 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .breadcrumb-first-8fec:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .main-white-bdc4 {
    display: block;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    list-style: none;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .main-white-bdc4.fn-active-a3a0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-white-bdc4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .main-white-bdc4 li:last-child {
    border-bottom: none;
  }

  .main-white-bdc4 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .highlight_liquid_bef9 {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .highlight_liquid_bef9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .highlight_liquid_bef9 li:last-child {
    border-bottom: none;
  }

  .highlight_liquid_bef9 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .button-ab45 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .shadow-32a8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .out-6943,
  .title_fluid_a0b2 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .out-6943 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .title_fluid_a0b2 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .highlight_liquid_bef9.fn-active-a3a0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sort_b84c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .preview_middle_5b9b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .outer_bb63 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .element_inner_a42e {
    margin-top: 0;
  }

  /* Hero section */
  .element_inner_a42e {
    padding: 2rem 0 1.5rem;
  }

  .widget_2d12 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .hero-dim-d12a {
    font-size: 1rem;
  }

  /* Hero brand image */
  .highlight_0a10 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .south_fe0d {
    max-width: 100%;
    border-radius: 8px;
  }

  .overlay-advanced-00ac {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-stale-e923 {
    padding: 1rem;
  }

  .image_paper_95ec {
    font-size: 1.5rem;
  }

  .smooth-af27 {
    font-size: 0.75rem;
  }

  .top_83d8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .highlight_88cd {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .highlight_88cd .popup-7dcc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .fluid-0b7e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .text-53ab {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .caption-f67c {
    margin-bottom: 1rem;
  }

  /* Author */
  .element_531b {
    flex-direction: column;
  }

  .aside-complex-aead {
    flex-direction: column;
  }

  /* Quotes */
  .thumbnail_5222 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .wood_4527 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .header-dim-9856 {
    flex-direction: column;
  }

  .header-dim-9856 .popup-7dcc {
    width: 100%;
  }

  /* Version comparison */
  .north-3be9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .backdrop-mini-9bc7 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .stale_3483 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hard_7fec {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .static_b229,
  .media_center_ac0b,
  .hovered_84e7,
  .warm_02fc,
  .tabs_wide_4da2,
  .rough-b454 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .static_b229 table,
  .media_center_ac0b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .purple-1b4a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .primary_basic_cd77 {
    padding: 0 1rem;
  }

  /* Reduce heading sizes even more for very small screens */
  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  h3 {
    font-size: 1rem;
  }

  .button_27d5 {
    font-size: 1.25rem !important;
  }

  .widget_2d12 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .preview_middle_5b9b {
    position: fixed;
  }

  .outer_bb63 {
    padding: 0.625rem 0;
  }

  .static-12f7 img {
    height: 26px;
  }

  .highlight_liquid_bef9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .main-white-bdc4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .breadcrumb-first-8fec {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .breadcrumb-first-8fec svg {
    width: 18px;
    height: 18px;
  }

  .breadcrumb-first-8fec .image-022a {
    font-size: 0.7rem;
  }

  .breadcrumb-first-8fec .tabs-last-514b {
    font-size: 0.65rem;
  }

  .out-6943,
  .title_fluid_a0b2 {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  /* Ultra aggressive word breaking for small screens */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Ensure no element exceeds viewport */
  body, .primary_basic_cd77, .pagination-left-2e43, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .highlight_0a10 {
    padding: 1rem;
  }

  .overlay-advanced-00ac {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-stale-e923 {
    padding: 0.875rem;
  }

  .image_paper_95ec {
    font-size: 1.25rem;
  }

  .highlight_88cd .popup-7dcc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .widget_2d12 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .popup-7dcc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .detail_753a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .text-53ab {
    padding: 1rem;
  }

  .caption-f67c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .notification-c4eb,
  .form_e58b,
  .mini_355d,
  .medium_685b {
    padding: 1rem;
  }
}

@media print {
  .preview_middle_5b9b,
  .video-blue-26e4,
  .sort_b84c,
  .popup-7dcc,
  .fast_d3af {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .primary_basic_cd77 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.detail_1392 {
  margin-bottom: 3rem;
  text-align: center;
}

.button_27d5 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.current-a12d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.aside-pressed-8b84,
.plasma-9cf1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active-medium-85d3 {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.active-medium-85d3:hover {
  transform: translateY(-5px);
}

.active-medium-85d3 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.active-medium-85d3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.motion-19e3 {
  margin: 3rem 0;
}

.medium_317c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mask_9547 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mask_9547:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.wrapper-7f97 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.badge-first-4db3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.feature-south-2fe8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.border-static-57d5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.light-5f9d {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.light-5f9d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.light-5f9d.wrapper-fast-ced7 {
  border-left: 4px solid var(--primary-color);
}

.preview-down-7a23 {
  flex-shrink: 0;
}

.preview-down-7a23 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.dropdown_yellow_bfb4 {
  flex: 1;
}

.dropdown_yellow_bfb4 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pressed-440f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.down-abb6,
.outline_out_93d9,
.hidden_hot_7333 {
  margin-bottom: 1.5rem;
}

.down-abb6 h4,
.outline_out_93d9 h4,
.hidden_hot_7333 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.down-abb6 ul,
.outline_out_93d9 ul,
.hidden_hot_7333 ul {
  list-style: none;
  padding: 0;
}

.down-abb6 li,
.outline_out_93d9 li,
.hidden_hot_7333 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.down-abb6 li:before,
.outline_out_93d9 li:before,
.hidden_hot_7333 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.basic-d32c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.basic-d32c a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.basic-d32c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.inner-296b { margin: 2rem 0; }
.last-230f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.last-230f h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.progress-old-5b5d p { margin-bottom: 1rem; line-height: 1.7; }
.progress-old-5b5d strong { color: var(--text-primary); }
.progress-old-5b5d ul { list-style: none; padding-left: 0; }
.progress-old-5b5d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress-old-5b5d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.stone_8647 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.badge-motion-6a07 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.badge-motion-6a07:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.module_old_5e4f { font-size: 3rem; margin-bottom: 1rem; }
.badge-motion-6a07 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.badge-motion-6a07 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.logo_681d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.logo_681d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.column_glass_ada4 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.widget_86e7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lite-15cc { text-align: center; }
.title_solid_fbcc { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.hero_e151 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.message-last-72f3 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.next-f78c { margin: 2rem 0; }
.tooltip_simple_b6a8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tooltip_simple_b6a8 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.tooltip_simple_b6a8 p, .tooltip_simple_b6a8 ul { line-height: 1.7; }
.tooltip_simple_b6a8 ul { list-style: none; padding-left: 0; }
.tooltip_simple_b6a8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tooltip_simple_b6a8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.module_under_1a6d { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tooltip-7cb8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.next_8e13 { text-align: center; }
.focused_3e09 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.old-68e9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thumbnail-basic-e52f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.east_ad0c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hidden-south-8f53 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hidden-south-8f53:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hidden-south-8f53 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hidden-south-8f53 p, .hidden-south-8f53 ul { line-height: 1.7; }
.hidden-south-8f53 ul { list-style: none; padding-left: 0; }
.hidden-south-8f53 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden-south-8f53 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1678 */
.promo-block-a9 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
