/* ============================================
   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 */
.column-b0a8 p,
.secondary-gold-545f,
.brown_4910,
.badge_warm_1733,
.tiny_aa04,
.element_53ba,
.nav_7f92,
.badge_dcd1 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.selected-bace {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.selected-bace > *,
.item_8b40,
.column-b0a8,
.over_17b0 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .selected-bace {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .selected-bace {
    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 === */
.video-old-f7b5 {
  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 */
.video-old-f7b5.header_54ce {
  box-shadow: var(--shadow-md);
}

.solid-cc69 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.feature-84e6 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.bright_f8eb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.photo-bronze-db68 {
  display: none;
}

/* Hide mobile actions on desktop */
.chip-2ebb {
  display: none;
}

.summary-first-98ee a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.summary-first-98ee a:hover,
.summary-first-98ee a.fn-active-9e7d {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.silver-6655 {
  margin-left: 1rem;
}

.feature_407a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.basic_afbb,
.chip-a503 {
  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;
}

.basic_afbb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.basic_afbb: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;
}

.chip-a503 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.chip-a503: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;
}

.basic_afbb svg,
.chip-a503 svg {
  flex-shrink: 0;
}

.surface_2203 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.up_db80 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.up_db80::before,
.up_db80::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.up_db80::before {
  top: -7px;
}

.up_db80::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.sort-4661 {
  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 === */
.shadow_lite_220c {
  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);
}

.info-cold-e507 {
  margin: 0 0 2rem;
  text-align: center;
}

.widget_fbcc {
  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;
}

.widget_fbcc:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.border-white-8938 {
  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);
}

.border-white-8938 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tabs_clean_aa6c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.photo-cool-d73c {
  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;
}

.photo-cool-d73c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sort_mini_ed63 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wide-f271 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.wrapper-0d49 {
  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);
}

.wrapper-0d49 .row_wide_6e41 {
  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;
}

.wrapper-0d49 .row_wide_6e41 svg {
  flex-shrink: 0;
}

.wrapper-0d49 .accent-4560 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.wrapper-0d49 .accent-4560: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);
}

.wrapper-0d49 .image-b2d6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.wrapper-0d49 .image-b2d6: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) {
  .shadow_lite_220c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_fbcc {
    max-width: 100%;
  }

  .tabs_clean_aa6c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photo-cool-d73c {
    padding: 1rem;
  }

  .sort_mini_ed63 {
    font-size: 1.5rem;
  }

  .wide-f271 {
    font-size: 0.75rem;
  }

  .border-white-8938 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .wrapper-0d49 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .wrapper-0d49 .row_wide_6e41 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tabs_clean_aa6c {
    grid-template-columns: 1fr;
  }
}

.notification_a500 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.in_43aa {
  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 === */
.status-bronze-58b4 {
  margin-bottom: 2.5rem;
}

.article_simple_1b16 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.notification_a500 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.small_3315 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-c34d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.white_7074 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title_medium_e2e3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.primary_35e8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.section_old_aaa1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-fixed-421b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-fixed-421b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.old_11d8 {
  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);
}

.gradient_5bea {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dark_81fc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tiny-2d11 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.icon_stone_8d2f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gallery_fe23 {
  display: grid;
  gap: 1rem;
}

.secondary_cd0d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.left-3785 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.video_stale_d72d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.liquid-4a29 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.next-f0ed {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.clean-9bc4 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.clean-9bc4 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.secondary-gold-545f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.container-8737 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.top_0b74 {
  display: grid;
  gap: 2rem;
}

.preview_plasma_13a2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.gallery-c34d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.small_3315 {
  flex: 1;
}

.title_medium_e2e3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.title_medium_e2e3 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge_d6d7 {
  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;
}

.primary_35e8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.alert-next-726b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.alert-next-726b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.progress_eb82 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.progress_eb82 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.label-action-a3c8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label-action-a3c8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.label-action-a3c8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.label-action-a3c8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.huge_a366 {
  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 === */
.tabs-0002 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.over_2c46 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.full_8838 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.label_out_c8ff h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.label_out_c8ff ol {
  list-style: none;
  counter-reset: toc-counter;
}

.label_out_c8ff ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.label_out_c8ff 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;
}

.label_out_c8ff ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.label_out_c8ff ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.column-b0a8 {
  padding: 3rem 0 5rem;
}

.over_17b0 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.over_17b0.clean-014f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.brown_4910 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero-686d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.row_out_371c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.row_out_371c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hidden_in_ab95 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tooltip-warm-a51e {
  text-align: center;
}

.chip_86a2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block-outer-f4b3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.down_eba5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.element_53ba {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.badge_warm_1733 {
  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;
}

.badge_warm_1733 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.badge_warm_1733:hover {
  box-shadow: var(--shadow-lg);
}

.badge_warm_1733.simple-cd65 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.badge_warm_1733 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.badge_warm_1733 ul {
  margin: 1rem 0;
}

.badge_warm_1733 li {
  margin-bottom: 0.75rem;
}

.title_stone_4c05 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.label_11bc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.label_11bc a {
  font-weight: 600;
}

/* === Data Tables === */
.notice-89f6 {
  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;
}

.notice-89f6 table {
  width: 100%;
  min-width: 600px;
}

.notice-89f6 thead {
  background-color: var(--primary-color);
  color: white;
}

.notice-89f6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.notice-89f6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.notice-89f6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.notice-89f6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.slow_3398 {
  list-style: none;
  margin: 1.5rem 0;
}

.slow_3398 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.slow_3398 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.shadow_a0df::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-9e7d::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 === */
.tiny_4d66 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.nav_under_345e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.nav_under_345e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.nav_under_345e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.nav_under_345e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tiny_4d66 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.nav_7f92 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.nav_7f92::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.module-53be {
  position: relative;
  margin-bottom: 3rem;
}

.clean_eb0c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.clean_eb0c .nav-4ed8 {
  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;
}

.filter_eac0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.filter_eac0 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.filter_eac0 ul {
  margin: 1rem 0;
}

.filter_eac0 li {
  margin-bottom: 0.75rem;
}

.active_small_3d31 {
  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 === */
.light-73da {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.light-73da h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pattern_basic_9a86 {
  list-style: none;
  margin: 1.5rem 0;
}

.pattern_basic_9a86 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.pattern_basic_9a86 a {
  font-weight: 600;
}

.progress_2a95 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.badge_dcd1 {
  margin: 2.5rem 0;
}

.thumbnail-red-80ef {
  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;
}

.thumbnail-red-80ef:hover {
  box-shadow: var(--shadow-lg);
}

.thumbnail-red-80ef.row_action_9073 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.dropdown-hovered-2331 {
  flex-shrink: 0;
}

.dropdown-hovered-2331 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);
}

.gradient_clean_2478 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.header_a8a9,
.status-b449,
.row_65e9 {
  width: 100%;
  margin: 1.5rem 0;
}

.alert-last-5e6c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.alert-last-5e6c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.carousel-7588 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.carousel-7588 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.badge-dirty-6e91 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.badge-dirty-6e91 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.tooltip-a435 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.full_2961 {
  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;
}

.full_2961:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.full_2961.detail_liquid_5a10 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.full_2961 .easy-2162 {
  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;
}

.full_2961 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tiny_3af8 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.smooth-129c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.smooth-129c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.widget-5d3c {
  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 === */
.row_wide_6e41 {
  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;
}

.accent-4560 {
  background-color: var(--primary-color);
  color: white;
}

.accent-4560:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.image-b2d6 {
  background-color: var(--text-secondary);
  color: white;
}

.image-b2d6:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.widget_rough_da07 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.widget_rough_da07:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.media-last-b0c1 {
  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;
}

.media-last-b0c1:hover {
  background-color: var(--primary-dark);
}

.iron_0c44 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.border-inner-afa6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.preview_purple_f3fe {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.soft-b5ff {
  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 === */
.popup_copper_c0c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.active-ae1e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.active-ae1e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row_upper_3fc5 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.frame_1ee5 {
  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;
}

.nav-08dc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.outline-b25b {
  list-style: none;
  counter-reset: rank-counter;
}

.outline-b25b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.outline-b25b 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;
}

.media-up-f883 {
  list-style: none;
}

.media-up-f883 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.highlight_0120 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.icon-middle-cd6c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.icon-middle-cd6c .link-2a22 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.icon-middle-cd6c .summary_aa2e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card_773c {
  margin-top: 3rem;
}

.hovered-46cb {
  width: 100%;
}

.link-3977 {
  background-color: #fef3c7;
}

.sort-9328 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.out_98b8 {
  margin: 3rem 0;
}

.item-selected-0e98 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.backdrop_tall_071c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.backdrop_tall_071c:hover {
  box-shadow: var(--shadow-lg);
}

.backdrop_tall_071c.component-3f05 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.form_0ec4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery_6987 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gallery_6987 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.out_7de0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop_tall_071c blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.huge_b7ee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wide-7621 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hard_9d40 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop_f83d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.outer_c4d5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.content_right_dfa5 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.backdrop-f5ed {
  max-width: 900px;
  margin: 0 auto;
}

.hover-b826 {
  margin: 2rem 0;
}

.box_cdef {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.box_cdef summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.box_cdef summary::-webkit-details-marker {
  display: none;
}

.box_cdef summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.border-1e25 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.box_cdef[open] .border-1e25 {
  transform: rotate(45deg);
}

.feature_dynamic_6a8d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.feature_dynamic_6a8d p:last-child {
  margin-bottom: 0;
}

.warm-7861 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.border_short_9202 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.card-light-c5f0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.card-light-c5f0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.card-light-c5f0 .row_wide_6e41 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.left_e67f {
  max-width: 900px;
  margin: 0 auto;
}

.blue_1b91 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.secondary-thick-fe8b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.secondary-thick-fe8b.fn-success-9e7d {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.photo_action_fb11 {
  font-size: 3rem;
  line-height: 1;
}

.item-2a91 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.label_f3a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.picture-fixed-d4e3,
.border_e25c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.picture-fixed-d4e3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.border_e25c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.info-under-c705,
.accordion-basic-0750 {
  margin: 1.5rem 0;
}

.info-under-c705 li,
.accordion-basic-0750 li {
  margin-bottom: 1rem;
}

.box_886c {
  margin: 3rem 0;
}

.shadow-wide-25e2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.shadow-wide-25e2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow-wide-25e2 ol {
  margin: 1rem 0;
}

.shadow-wide-25e2 li {
  margin-bottom: 0.75rem;
}

.full-563d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.shade-south-1961 {
  margin: 2rem 0;
}

.grid-2cf8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slider-67b3 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.dirty_1b47 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.picture-dc23 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.header_first_4666 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.rough-0c80 {
  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;
}

.rough-0c80 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.white_7074 {
  flex: 1;
}

.white_7074 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.frame_new_16b8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.simple_8190 p {
  margin-bottom: 1rem;
}

.gallery-8ebb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.paragraph-f8b4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.video-plasma-ff39 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-plasma-ff39 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dropdown-53ba h3 {
  margin-bottom: 1.5rem;
}

.top_e12a {
  display: grid;
  gap: 2rem;
}

.brown-e1c7 {
  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;
}

.brown-e1c7 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.brown-e1c7 h4 {
  margin: 0 0 0.25rem;
}

.brown-e1c7 p {
  margin: 0;
  font-size: 0.9375rem;
}

.basic_749c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.caption-black-85d5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.caption-black-85d5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption-black-85d5 ul {
  margin: 1.5rem 0;
}

.caption-black-85d5 li {
  margin-bottom: 0.75rem;
}

.tertiary_fluid_e806 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.wrapper_7f1c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.dirty-f11e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.bottom_4a8f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.bottom_4a8f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.orange-7ddb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.orange-7ddb a {
  color: rgba(255, 255, 255, 0.8);
}

.outline-c473 {
  list-style: none;
}

.outline-c473 li {
  margin-bottom: 0.75rem;
}

.outline-c473 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.outline-c473 a:hover {
  color: white;
}

.gold_f0ea {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.widget-a4e4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.full-a1c4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.accordion-7895 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.current_5c94 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .selected-bace {
    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;
  }

  .accordion_765e {
    font-size: 1.5rem !important;
  }

  .article_simple_1b16 {
    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 */
  .badge_warm_1733,
  .tiny_aa04,
  .filter_eac0,
  .gradient_clean_2478,
  .form_0ec4,
  .backdrop_tall_071c,
  .feature_dynamic_6a8d,
  .border-white-8938,
  .secondary-gold-545f,
  .brown_4910 {
    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 */
  .notification_a500 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .small_3315 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .gallery-c34d {
    flex-shrink: 0;
  }

  .white_7074 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .title_medium_e2e3,
  .primary_35e8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .primary_35e8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .bright_f8eb {
    display: none;
  }

  /* Show mobile actions */
  .chip-2ebb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .next_f578 {
    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;
  }

  .next_f578 svg {
    flex-shrink: 0;
  }

  .next_f578 .pagination-narrow-9408 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .next_f578 .logo_steel_f6d2 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .primary-hard-0aee {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .pattern_green_cccb {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .next_f578:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .photo-bronze-db68 {
    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;
  }

  .photo-bronze-db68.fn-active-9e7d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .photo-bronze-db68 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .photo-bronze-db68 li:last-child {
    border-bottom: none;
  }

  .photo-bronze-db68 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .summary-first-98ee {
    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;
  }

  .summary-first-98ee li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .summary-first-98ee li:last-child {
    border-bottom: none;
  }

  .summary-first-98ee a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .silver-6655 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .feature_407a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .basic_afbb,
  .chip-a503 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .basic_afbb {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .chip-a503 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .summary-first-98ee.fn-active-9e7d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .surface_2203 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .video-old-f7b5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .solid-cc69 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .sort-4661 {
    margin-top: 0;
  }

  /* Hero section */
  .sort-4661 {
    padding: 2rem 0 1.5rem;
  }

  .article_simple_1b16 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .secondary-gold-545f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .shadow_lite_220c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_fbcc {
    max-width: 100%;
    border-radius: 8px;
  }

  .tabs_clean_aa6c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photo-cool-d73c {
    padding: 1rem;
  }

  .sort_mini_ed63 {
    font-size: 1.5rem;
  }

  .wide-f271 {
    font-size: 0.75rem;
  }

  .border-white-8938 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .wrapper-0d49 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .wrapper-0d49 .row_wide_6e41 {
    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 */
  .full_8838 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .thumbnail-red-80ef {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .dropdown-hovered-2331 {
    margin-bottom: 1rem;
  }

  /* Author */
  .preview_plasma_13a2 {
    flex-direction: column;
  }

  .rough-0c80 {
    flex-direction: column;
  }

  /* Quotes */
  .form_0ec4 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .label_f3a3 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .picture-dc23 {
    flex-direction: column;
  }

  .picture-dc23 .row_wide_6e41 {
    width: 100%;
  }

  /* Version comparison */
  .tooltip-a435 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .popup_copper_c0c6 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .dirty-f11e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .full-a1c4 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .notice-89f6,
  .status-b449,
  .column_solid_161d,
  .hovered-46cb,
  .header_a8a9,
  .row_65e9 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .notice-89f6 table,
  .status-b449 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .widget-5d3c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .selected-bace {
    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;
  }

  .accordion_765e {
    font-size: 1.25rem !important;
  }

  .article_simple_1b16 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .video-old-f7b5 {
    position: fixed;
  }

  .solid-cc69 {
    padding: 0.625rem 0;
  }

  .feature-84e6 img {
    height: 26px;
  }

  .summary-first-98ee {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .photo-bronze-db68 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .next_f578 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .next_f578 svg {
    width: 18px;
    height: 18px;
  }

  .next_f578 .pagination-narrow-9408 {
    font-size: 0.7rem;
  }

  .next_f578 .logo_steel_f6d2 {
    font-size: 0.65rem;
  }

  .basic_afbb,
  .chip-a503 {
    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, .selected-bace, .item_8b40, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shadow_lite_220c {
    padding: 1rem;
  }

  .tabs_clean_aa6c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .photo-cool-d73c {
    padding: 0.875rem;
  }

  .sort_mini_ed63 {
    font-size: 1.25rem;
  }

  .wrapper-0d49 .row_wide_6e41 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .article_simple_1b16 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .row_wide_6e41 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .iron_0c44 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .thumbnail-red-80ef {
    padding: 1rem;
  }

  .dropdown-hovered-2331 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .badge_warm_1733,
  .primary_lower_1366,
  .outline_dim_8e66,
  .tertiary_black_92f1 {
    padding: 1rem;
  }
}

@media print {
  .video-old-f7b5,
  .tabs-0002,
  .surface_2203,
  .row_wide_6e41,
  .wrapper_7f1c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .selected-bace {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.dark_1903 {
  margin-bottom: 3rem;
  text-align: center;
}

.accordion_765e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.west_a478 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.nav_copper_3af6,
.modal_prev_e089 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.panel_solid_9e56 {
  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;
}

.panel_solid_9e56:hover {
  transform: translateY(-5px);
}

.panel_solid_9e56 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.panel_solid_9e56 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.background-silver-aef0 {
  margin: 3rem 0;
}

.bronze_b310 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.simple-bd81 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.simple-bd81:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pro_e9de {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.chip-65c2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.motion_f693 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.gallery-liquid-968e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.gallery-lower-4a6e {
  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;
}

.gallery-lower-4a6e:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.gallery-lower-4a6e.status-bottom-ddef {
  border-left: 4px solid var(--primary-color);
}

.pagination_fdb4 {
  flex-shrink: 0;
}

.pagination_fdb4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.main_daa6 {
  flex: 1;
}

.main_daa6 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.row-09f1 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tag-e9d1,
.shadow_d75f,
.pattern-3bc3 {
  margin-bottom: 1.5rem;
}

.tag-e9d1 h4,
.shadow_d75f h4,
.pattern-3bc3 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-e9d1 ul,
.shadow_d75f ul,
.pattern-3bc3 ul {
  list-style: none;
  padding: 0;
}

.tag-e9d1 li,
.shadow_d75f li,
.pattern-3bc3 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tag-e9d1 li:before,
.shadow_d75f li:before,
.pattern-3bc3 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.box_5fbe {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.box_5fbe 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;
}

.box_5fbe a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.picture-7729 { margin: 2rem 0; }
.breadcrumb_green_1b5a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.breadcrumb_green_1b5a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.image-8abf p { margin-bottom: 1rem; line-height: 1.7; }
.image-8abf strong { color: var(--text-primary); }
.image-8abf ul { list-style: none; padding-left: 0; }
.image-8abf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.image-8abf ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.row_0f32 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.full_fcbe { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.full_fcbe:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature_e499 { font-size: 3rem; margin-bottom: 1rem; }
.full_fcbe h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.full_fcbe p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.outer_7b17 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.outer_7b17 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hover_fa67 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.prev_51d9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.footer-e247 { text-align: center; }
.dynamic-79c4 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.motion_3867 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.feature_hot_42ec { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.north_f1db { margin: 2rem 0; }
.sidebar-8c36 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-8c36 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.sidebar-8c36 p, .sidebar-8c36 ul { line-height: 1.7; }
.sidebar-8c36 ul { list-style: none; padding-left: 0; }
.sidebar-8c36 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar-8c36 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.old-8729 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.highlight-7632 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.disabled-52fe { text-align: center; }
.text_hot_05b9 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.surface_690f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.last_d158 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.tabs-stone-afcc { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tabs_next_7c64 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.tabs_next_7c64:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.tabs_next_7c64 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.tabs_next_7c64 p, .tabs_next_7c64 ul { line-height: 1.7; }
.tabs_next_7c64 ul { list-style: none; padding-left: 0; }
.tabs_next_7c64 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tabs_next_7c64 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8043 */
.shadow-element-z0 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
