/* ============================================
   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 */
.easy_5fb9 p,
.warm_1bb6,
.accordion-next-fd70,
.gradient-thick-ad37,
.section_0810,
.aside_focused_67a2,
.shadow-311e,
.accent_active_7209 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.current_8121 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.current_8121 > *,
.shade_hard_7a5e,
.easy_5fb9,
.overlay-e443 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .current_8121 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .current_8121 {
    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 === */
.bright-b720 {
  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 */
.bright-b720.mask-solid-538e {
  box-shadow: var(--shadow-md);
}

.column-static-2108 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hidden-steel-784f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.search-c724 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.primary_f0c2 {
  display: none;
}

/* Hide mobile actions on desktop */
.pink_a06d {
  display: none;
}

.image-up-b6d1 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.image-up-b6d1 a:hover,
.image-up-b6d1 a.fn-active-fc9f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.over_f965 {
  margin-left: 1rem;
}

.hard-26c3 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.selected-ff19,
.status-8770 {
  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;
}

.selected-ff19 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.selected-ff19: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;
}

.status-8770 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.status-8770: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;
}

.selected-ff19 svg,
.status-8770 svg {
  flex-shrink: 0;
}

.shadow_left_6f7d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.top-42d9 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.top-42d9::before,
.top-42d9::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.top-42d9::before {
  top: -7px;
}

.top-42d9::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.panel_9a37 {
  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 === */
.block_solid_2803 {
  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);
}

.dirty-8705 {
  margin: 0 0 2rem;
  text-align: center;
}

.accordion_9f02 {
  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;
}

.accordion_9f02:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pagination_next_64c0 {
  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);
}

.pagination_next_64c0 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.disabled-fixed-c5a4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tooltip_34f4 {
  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;
}

.tooltip_34f4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.chip_iron_ff3b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout_6797 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.card-motion-804c {
  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);
}

.card-motion-804c .badge-wide-cd88 {
  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;
}

.card-motion-804c .badge-wide-cd88 svg {
  flex-shrink: 0;
}

.card-motion-804c .menu_hovered_03cd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-motion-804c .menu_hovered_03cd: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);
}

.card-motion-804c .easy-2091 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.card-motion-804c .easy-2091: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) {
  .block_solid_2803 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accordion_9f02 {
    max-width: 100%;
  }

  .disabled-fixed-c5a4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tooltip_34f4 {
    padding: 1rem;
  }

  .chip_iron_ff3b {
    font-size: 1.5rem;
  }

  .layout_6797 {
    font-size: 0.75rem;
  }

  .pagination_next_64c0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-motion-804c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .card-motion-804c .badge-wide-cd88 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .disabled-fixed-c5a4 {
    grid-template-columns: 1fr;
  }
}

.block-4d03 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.active_red_0682 {
  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 === */
.thumbnail_hard_c569 {
  margin-bottom: 2.5rem;
}

.filter-left-7468 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.block-4d03 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.avatar-fa10 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.basic-4fb7 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.hidden-steel-ec7f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.advanced_fb85 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.in_3bf3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.layout-large-4224 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_52a3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_52a3 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.hover_action_703a {
  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);
}

.background_stale_c5b5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.breadcrumb-stale-846d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.copper-2612 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.image-528c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.disabled-silver-1939 {
  display: grid;
  gap: 1rem;
}

.section-13ea {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.chip-f73f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.backdrop-tiny-cf76 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.active_956d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.container_9c11 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.column_south_8a46 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.column_south_8a46 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.warm_1bb6 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.liquid-2173 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.video_steel_8d25 {
  display: grid;
  gap: 2rem;
}

.photo-orange-f783 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.basic-4fb7 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.avatar-fa10 {
  flex: 1;
}

.advanced_fb85 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.advanced_fb85 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.notification-e4ab {
  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;
}

.in_3bf3 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.info-lite-2cd8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.info-lite-2cd8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.article_red_2e78 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.article_red_2e78 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.highlight_large_aae0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.highlight_large_aae0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.highlight_large_aae0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight_large_aae0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.blue-a9f8 {
  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 === */
.shadow_hard_6fa9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.widget-tall-f832 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.banner_yellow_0d4a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.preview_0e05 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.preview_0e05 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.preview_0e05 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.preview_0e05 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;
}

.preview_0e05 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.preview_0e05 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.easy_5fb9 {
  padding: 3rem 0 5rem;
}

.overlay-e443 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.overlay-e443.warm-f869 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.accordion-next-fd70 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.dim_3838 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.south_086a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.south_086a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.chip-white-d3dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.slow-a7ef {
  text-align: center;
}

.module-a560 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pink_57e8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.filter_e155 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.aside_focused_67a2 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gradient-thick-ad37 {
  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;
}

.gradient-thick-ad37 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gradient-thick-ad37:hover {
  box-shadow: var(--shadow-lg);
}

.gradient-thick-ad37.element-e8d9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gradient-thick-ad37 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gradient-thick-ad37 ul {
  margin: 1rem 0;
}

.gradient-thick-ad37 li {
  margin-bottom: 0.75rem;
}

.paragraph-orange-134f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.out_bfca {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.out_bfca a {
  font-weight: 600;
}

/* === Data Tables === */
.rough-893b {
  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;
}

.rough-893b table {
  width: 100%;
  min-width: 600px;
}

.rough-893b thead {
  background-color: var(--primary-color);
  color: white;
}

.rough-893b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.rough-893b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.rough-893b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.rough-893b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.left-2669 {
  list-style: none;
  margin: 1.5rem 0;
}

.left-2669 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.left-2669 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gradient-7988::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-fc9f::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 === */
.preview-up-0076 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focus-in-46c2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.focus-in-46c2 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.focus-in-46c2 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.focus-in-46c2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-up-0076 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.shadow-311e {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.shadow-311e::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.progress_622e {
  position: relative;
  margin-bottom: 3rem;
}

.progress_cold_ba17 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.progress_cold_ba17 .current-e20f {
  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;
}

.alert-wide-181e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.alert-wide-181e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.alert-wide-181e ul {
  margin: 1rem 0;
}

.alert-wide-181e li {
  margin-bottom: 0.75rem;
}

.first-aab7 {
  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 === */
.preview_66e6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.preview_66e6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.sidebar_624a {
  list-style: none;
  margin: 1.5rem 0;
}

.sidebar_624a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.sidebar_624a a {
  font-weight: 600;
}

.tertiary-834f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.accent_active_7209 {
  margin: 2.5rem 0;
}

.frame_hot_1a89 {
  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;
}

.frame_hot_1a89:hover {
  box-shadow: var(--shadow-lg);
}

.frame_hot_1a89.tag_ae71 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.button-large-8433 {
  flex-shrink: 0;
}

.button-large-8433 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);
}

.gas-9b93 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.small-127e,
.frame-b41a,
.link-next-c884 {
  width: 100%;
  margin: 1.5rem 0;
}

.aside-large-a665 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.aside-large-a665 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.heading_east_d92b {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.heading_east_d92b strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.picture-warm-71d6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.picture-warm-71d6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hero_last_0382 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.slider-small-2f56 {
  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;
}

.slider-small-2f56:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.slider-small-2f56.gallery_right_4ffa {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.slider-small-2f56 .video_north_5991 {
  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;
}

.slider-small-2f56 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.layout_b2f1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.purple-46c4 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.purple-46c4 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.texture-motion-a748 {
  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 === */
.badge-wide-cd88 {
  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;
}

.menu_hovered_03cd {
  background-color: var(--primary-color);
  color: white;
}

.menu_hovered_03cd:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.easy-2091 {
  background-color: var(--text-secondary);
  color: white;
}

.easy-2091:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.smooth_1ba8 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.smooth_1ba8:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.box_414a {
  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;
}

.box_414a:hover {
  background-color: var(--primary-dark);
}

.link_6e6d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.column-eef4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.modal-top-377d {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.south_0ad8 {
  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 === */
.gold-0a54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.progress-large-29e4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.progress-large-29e4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.media_ec42 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tertiary-1f60 {
  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;
}

.pagination_a696 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.west_d16a {
  list-style: none;
  counter-reset: rank-counter;
}

.west_d16a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.west_d16a 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;
}

.icon_88dd {
  list-style: none;
}

.icon_88dd li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.footer-new-6e14 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.active-a53a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.active-a53a .sidebar_rough_9cf0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.active-a53a .paper_0f26 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.complex_a8ac {
  margin-top: 3rem;
}

.left-486a {
  width: 100%;
}

.input_ddbd {
  background-color: #fef3c7;
}

.hero-2600 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.rough_0b01 {
  margin: 3rem 0;
}

.hidden-1bc0 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hidden_c6d4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hidden_c6d4:hover {
  box-shadow: var(--shadow-lg);
}

.hidden_c6d4.breadcrumb_warm_4aaa {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.detail_inner_ffa5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.icon-293f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.icon-293f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.texture_5f67 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_c6d4 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.section-middle-99f0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-e809 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.center_d942 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.preview_3996 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accent-243f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.mask-hot-ef14 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.wrapper-87ff {
  max-width: 900px;
  margin: 0 auto;
}

.black_be28 {
  margin: 2rem 0;
}

.feature_42b9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.feature_42b9 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.feature_42b9 summary::-webkit-details-marker {
  display: none;
}

.feature_42b9 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.article-3304 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.feature_42b9[open] .article-3304 {
  transform: rotate(45deg);
}

.mini-43b4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mini-43b4 p:last-child {
  margin-bottom: 0;
}

.shadow-ca7f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.accent_blue_9dae {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.gallery-111f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.gallery-111f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.gallery-111f .badge-wide-cd88 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.dim_55be {
  max-width: 900px;
  margin: 0 auto;
}

.disabled_hard_ea87 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.last-6ae7 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.last-6ae7.fn-success-fc9f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.preview_1df8 {
  font-size: 3rem;
  line-height: 1;
}

.summary_current_40de h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.action_affb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tooltip_pressed_1829,
.header-2382 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tooltip_pressed_1829 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.header-2382 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.sidebar-1aa9,
.heading_active_c196 {
  margin: 1.5rem 0;
}

.sidebar-1aa9 li,
.heading_active_c196 li {
  margin-bottom: 1rem;
}

.short-88ae {
  margin: 3rem 0;
}

.card_a775 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card_a775 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card_a775 ol {
  margin: 1rem 0;
}

.card_a775 li {
  margin-bottom: 0.75rem;
}

.content-09d2 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.bright_935e {
  margin: 2rem 0;
}

.summary-brown-b6d5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.feature_ee8d {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.fixed-0ad9 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hover_ec37 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.pagination_action_dd01 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.paragraph_bf93 {
  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;
}

.paragraph_bf93 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.hidden-steel-ec7f {
  flex: 1;
}

.hidden-steel-ec7f h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.status_rough_c672 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.carousel_4ac7 p {
  margin-bottom: 1rem;
}

.image_active_a31c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.container_3bd2 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.surface_black_f072 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.surface_black_f072 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.paper-b65b h3 {
  margin-bottom: 1.5rem;
}

.overlay-9c3d {
  display: grid;
  gap: 2rem;
}

.shadow-tiny-9e82 {
  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;
}

.shadow-tiny-9e82 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.shadow-tiny-9e82 h4 {
  margin: 0 0 0.25rem;
}

.shadow-tiny-9e82 p {
  margin: 0;
  font-size: 0.9375rem;
}

.background-321b {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.border-dynamic-fa48 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.border-dynamic-fa48 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-dynamic-fa48 ul {
  margin: 1.5rem 0;
}

.border-dynamic-fa48 li {
  margin-bottom: 0.75rem;
}

.widget-bottom-3ff7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.iron-49a4 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.block_33cf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.solid-8eeb h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.solid-8eeb p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.box-1ba1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.box-1ba1 a {
  color: rgba(255, 255, 255, 0.8);
}

.link_d223 {
  list-style: none;
}

.link_d223 li {
  margin-bottom: 0.75rem;
}

.link_d223 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.link_d223 a:hover {
  color: white;
}

.left-34c6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.notice-fdd4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.huge-4707 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.accent-3d48 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hero_active_b3c1 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .current_8121 {
    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;
  }

  .widget_pink_60cf {
    font-size: 1.5rem !important;
  }

  .filter-left-7468 {
    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 */
  .gradient-thick-ad37,
  .section_0810,
  .alert-wide-181e,
  .gas-9b93,
  .detail_inner_ffa5,
  .hidden_c6d4,
  .mini-43b4,
  .pagination_next_64c0,
  .warm_1bb6,
  .accordion-next-fd70 {
    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 */
  .block-4d03 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .avatar-fa10 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .basic-4fb7 {
    flex-shrink: 0;
  }

  .hidden-steel-ec7f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .advanced_fb85,
  .in_3bf3 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .in_3bf3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .search-c724 {
    display: none;
  }

  /* Show mobile actions */
  .pink_a06d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .light-ee3d {
    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;
  }

  .light-ee3d svg {
    flex-shrink: 0;
  }

  .light-ee3d .highlight_2460 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .light-ee3d .article-black-a8c1 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .filter-top-d080 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .summary_middle_e36c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .light-ee3d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .primary_f0c2 {
    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;
  }

  .primary_f0c2.fn-active-fc9f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary_f0c2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .primary_f0c2 li:last-child {
    border-bottom: none;
  }

  .primary_f0c2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .image-up-b6d1 {
    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;
  }

  .image-up-b6d1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .image-up-b6d1 li:last-child {
    border-bottom: none;
  }

  .image-up-b6d1 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .over_f965 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .hard-26c3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .selected-ff19,
  .status-8770 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .selected-ff19 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .status-8770 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .image-up-b6d1.fn-active-fc9f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shadow_left_6f7d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .bright-b720 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .column-static-2108 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .panel_9a37 {
    margin-top: 0;
  }

  /* Hero section */
  .panel_9a37 {
    padding: 2rem 0 1.5rem;
  }

  .filter-left-7468 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .warm_1bb6 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .block_solid_2803 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accordion_9f02 {
    max-width: 100%;
    border-radius: 8px;
  }

  .disabled-fixed-c5a4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tooltip_34f4 {
    padding: 1rem;
  }

  .chip_iron_ff3b {
    font-size: 1.5rem;
  }

  .layout_6797 {
    font-size: 0.75rem;
  }

  .pagination_next_64c0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-motion-804c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .card-motion-804c .badge-wide-cd88 {
    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 */
  .banner_yellow_0d4a {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .frame_hot_1a89 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .button-large-8433 {
    margin-bottom: 1rem;
  }

  /* Author */
  .photo-orange-f783 {
    flex-direction: column;
  }

  .paragraph_bf93 {
    flex-direction: column;
  }

  /* Quotes */
  .detail_inner_ffa5 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .action_affb {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hover_ec37 {
    flex-direction: column;
  }

  .hover_ec37 .badge-wide-cd88 {
    width: 100%;
  }

  /* Version comparison */
  .hero_last_0382 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .gold-0a54 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .block_33cf {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .huge-4707 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .rough-893b,
  .frame-b41a,
  .outline-brown-b756,
  .left-486a,
  .small-127e,
  .link-next-c884 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rough-893b table,
  .frame-b41a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .texture-motion-a748 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .current_8121 {
    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;
  }

  .widget_pink_60cf {
    font-size: 1.25rem !important;
  }

  .filter-left-7468 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .bright-b720 {
    position: fixed;
  }

  .column-static-2108 {
    padding: 0.625rem 0;
  }

  .hidden-steel-784f img {
    height: 26px;
  }

  .image-up-b6d1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .primary_f0c2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .light-ee3d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .light-ee3d svg {
    width: 18px;
    height: 18px;
  }

  .light-ee3d .highlight_2460 {
    font-size: 0.7rem;
  }

  .light-ee3d .article-black-a8c1 {
    font-size: 0.65rem;
  }

  .selected-ff19,
  .status-8770 {
    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, .current_8121, .shade_hard_7a5e, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .block_solid_2803 {
    padding: 1rem;
  }

  .disabled-fixed-c5a4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tooltip_34f4 {
    padding: 0.875rem;
  }

  .chip_iron_ff3b {
    font-size: 1.25rem;
  }

  .card-motion-804c .badge-wide-cd88 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .filter-left-7468 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .badge-wide-cd88 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .link_6e6d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .frame_hot_1a89 {
    padding: 1rem;
  }

  .button-large-8433 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .gradient-thick-ad37,
  .pagination-over-4780,
  .disabled_e83c,
  .carousel_0bb4 {
    padding: 1rem;
  }
}

@media print {
  .bright-b720,
  .shadow_hard_6fa9,
  .shadow_left_6f7d,
  .badge-wide-cd88,
  .iron-49a4 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .current_8121 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.focused_763b {
  margin-bottom: 3rem;
  text-align: center;
}

.widget_pink_60cf {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.paragraph_2850 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.shade_6ccc,
.notice_under_c249 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer_87ee {
  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;
}

.footer_87ee:hover {
  transform: translateY(-5px);
}

.footer_87ee strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.footer_87ee span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.pink-7fd6 {
  margin: 3rem 0;
}

.tabs_fast_8f4e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.complex-9f4a {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.complex-9f4a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.heading_hard_56a9 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.purple_69df {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.next-8326 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.alert_12bd {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.overlay-dynamic-6d7d {
  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;
}

.overlay-dynamic-6d7d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.overlay-dynamic-6d7d.box-bc3c {
  border-left: 4px solid var(--primary-color);
}

.info-6853 {
  flex-shrink: 0;
}

.info-6853 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.layout-57aa {
  flex: 1;
}

.layout-57aa h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.plasma_0d1d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.secondary-0d28,
.bright_cf7d,
.medium_8015 {
  margin-bottom: 1.5rem;
}

.secondary-0d28 h4,
.bright_cf7d h4,
.medium_8015 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secondary-0d28 ul,
.bright_cf7d ul,
.medium_8015 ul {
  list-style: none;
  padding: 0;
}

.secondary-0d28 li,
.bright_cf7d li,
.medium_8015 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.secondary-0d28 li:before,
.bright_cf7d li:before,
.medium_8015 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.info_full_3291 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.info_full_3291 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;
}

.info_full_3291 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.disabled-narrow-54ab { margin: 2rem 0; }
.row-fast-a57b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.row-fast-a57b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.image_9885 p { margin-bottom: 1rem; line-height: 1.7; }
.image_9885 strong { color: var(--text-primary); }
.image_9885 ul { list-style: none; padding-left: 0; }
.image_9885 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.image_9885 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.preview-solid-8843 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fluid-9e81 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.fluid-9e81:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.text_lite_a881 { font-size: 3rem; margin-bottom: 1rem; }
.fluid-9e81 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.fluid-9e81 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.notification-hard-22a2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.notification-hard-22a2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.input-narrow-fd2f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.pink-6443 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hover_736f { text-align: center; }
.secondary_warm_6e32 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.link-6d32 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.preview-a146 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.grid_f98a { margin: 2rem 0; }
.widget-soft-d1cc { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.widget-soft-d1cc h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.widget-soft-d1cc p, .widget-soft-d1cc ul { line-height: 1.7; }
.widget-soft-d1cc ul { list-style: none; padding-left: 0; }
.widget-soft-d1cc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.widget-soft-d1cc ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.preview-78c0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.gradient_hot_be80 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.warm-6ea8 { text-align: center; }
.narrow_c3f5 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.disabled-tall-587c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.badge_4583 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.tiny-12cb { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.picture_250c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.picture_250c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.picture_250c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.picture_250c p, .picture_250c ul { line-height: 1.7; }
.picture_250c ul { list-style: none; padding-left: 0; }
.picture_250c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.picture_250c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cec1 */
.shadow-element-r1 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
