/* ============================================
   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 */
.message_pro_cbff p,
.texture_f2d2,
.hard_c3a4,
.summary-8ba2,
.shadow-75ec,
.menu_pro_0ab8,
.hidden_67b5,
.hidden_3877 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.gallery-6ed4 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.gallery-6ed4 > *,
.soft-e2ab,
.message_pro_cbff,
.widget_full_b0c0 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .gallery-6ed4 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .gallery-6ed4 {
    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 === */
.content_6ad7 {
  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 */
.content_6ad7.tag_a03c {
  box-shadow: var(--shadow-md);
}

.center-748e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.plasma-6ca8 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.filter-a041 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.shadow-upper-2ef7 {
  display: none;
}

/* Hide mobile actions on desktop */
.hovered-214a {
  display: none;
}

.outer-feb4 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.outer-feb4 a:hover,
.outer-feb4 a.fn-active-4aa7 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.hover-1f3c {
  margin-left: 1rem;
}

.bright-c76e {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.accordion-9a35,
.module_hot_64d0 {
  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;
}

.accordion-9a35 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.accordion-9a35: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;
}

.module_hot_64d0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.module_hot_64d0: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;
}

.accordion-9a35 svg,
.module_hot_64d0 svg {
  flex-shrink: 0;
}

.section_5d68 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.slider-fresh-8c61 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.slider-fresh-8c61::before,
.slider-fresh-8c61::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.slider-fresh-8c61::before {
  top: -7px;
}

.slider-fresh-8c61::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.green_10a4 {
  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 === */
.thumbnail_7da6 {
  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);
}

.shadow_8a49 {
  margin: 0 0 2rem;
  text-align: center;
}

.input-b459 {
  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;
}

.input-b459:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.breadcrumb_5014 {
  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);
}

.breadcrumb_5014 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.form_under_3038 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.dirty-fe53 {
  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;
}

.dirty-fe53:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sidebar_copper_e80e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tabs-green-5e77 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.article_4cb4 {
  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);
}

.article_4cb4 .sidebar-bottom-1d11 {
  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;
}

.article_4cb4 .sidebar-bottom-1d11 svg {
  flex-shrink: 0;
}

.article_4cb4 .footer_over_6711 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.article_4cb4 .footer_over_6711: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);
}

.article_4cb4 .photo-3903 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.article_4cb4 .photo-3903: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) {
  .thumbnail_7da6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .input-b459 {
    max-width: 100%;
  }

  .form_under_3038 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dirty-fe53 {
    padding: 1rem;
  }

  .sidebar_copper_e80e {
    font-size: 1.5rem;
  }

  .tabs-green-5e77 {
    font-size: 0.75rem;
  }

  .breadcrumb_5014 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .article_4cb4 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .article_4cb4 .sidebar-bottom-1d11 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .form_under_3038 {
    grid-template-columns: 1fr;
  }
}

.dynamic-e07c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blue_9f69 {
  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 === */
.tabs_42fe {
  margin-bottom: 2.5rem;
}

.menu_lite_083c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dynamic-e07c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.picture-f875 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-bc36 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.chip_hard_f419 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.progress-da8d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.description-glass-45e1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.content-cf0b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fixed-d6a7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fixed-d6a7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.modal_c2e3 {
  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);
}

.in-bad2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.menu-3e7c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid_f3dc {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.accent-6393 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.panel_80ef {
  display: grid;
  gap: 1rem;
}

.modal_ed25 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.fresh-21df {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.container-pressed-7964 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.clean-8c96 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hero_5311 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.banner-selected-f18a {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.banner-selected-f18a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.texture_f2d2 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.green_c76f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.breadcrumb_advanced_843a {
  display: grid;
  gap: 2rem;
}

.notification-451f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.highlight-bc36 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.picture-f875 {
  flex: 1;
}

.progress-da8d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.progress-da8d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.green-950a {
  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;
}

.description-glass-45e1 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.image_orange_91cc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.image_orange_91cc span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.preview_4e25 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.preview_4e25 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.background_0504 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.background_0504 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.background_0504 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.background_0504 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.accent-63ba {
  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 === */
.element_7cea {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.sort-mini-87e4 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.accent-25c8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.column_outer_50c2 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.column_outer_50c2 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.column_outer_50c2 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.column_outer_50c2 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;
}

.column_outer_50c2 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.column_outer_50c2 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.message_pro_cbff {
  padding: 3rem 0 5rem;
}

.widget_full_b0c0 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.widget_full_b0c0.tooltip_0af1 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.hard_c3a4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.alert_paper_d8d8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.alert-0b28 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.alert-0b28 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.media_bronze_ef62 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.in_f98d {
  text-align: center;
}

.rough-886c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wood-9e89 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.notice_static_5f2f {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.menu_pro_0ab8 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.summary-8ba2 {
  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;
}

.summary-8ba2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-8ba2:hover {
  box-shadow: var(--shadow-lg);
}

.summary-8ba2.header_fast_671e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.summary-8ba2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.summary-8ba2 ul {
  margin: 1rem 0;
}

.summary-8ba2 li {
  margin-bottom: 0.75rem;
}

.notification-1458 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.gradient-simple-77f7 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.gradient-simple-77f7 a {
  font-weight: 600;
}

/* === Data Tables === */
.message-2a4c {
  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;
}

.message-2a4c table {
  width: 100%;
  min-width: 600px;
}

.message-2a4c thead {
  background-color: var(--primary-color);
  color: white;
}

.message-2a4c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.message-2a4c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.message-2a4c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.message-2a4c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.basic-46c1 {
  list-style: none;
  margin: 1.5rem 0;
}

.basic-46c1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.basic-46c1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gas-93e9::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-4aa7::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 === */
.focus-eb8a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.bright_fcf5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.bright_fcf5 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.bright_fcf5 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.bright_fcf5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus-eb8a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.hidden_67b5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.hidden_67b5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.primary_copper_e7eb {
  position: relative;
  margin-bottom: 3rem;
}

.brown_4295 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.brown_4295 .modal-e63e {
  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;
}

.accordion-first-b57f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.accordion-first-b57f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.accordion-first-b57f ul {
  margin: 1rem 0;
}

.accordion-first-b57f li {
  margin-bottom: 0.75rem;
}

.shade_dirty_3552 {
  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 === */
.static-8e7c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.static-8e7c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.list-6e49 {
  list-style: none;
  margin: 1.5rem 0;
}

.list-6e49 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.list-6e49 a {
  font-weight: 600;
}

.alert-b87d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hidden_3877 {
  margin: 2.5rem 0;
}

.hero_next_b997 {
  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;
}

.hero_next_b997:hover {
  box-shadow: var(--shadow-lg);
}

.hero_next_b997.logo_brown_7c10 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.plasma-6627 {
  flex-shrink: 0;
}

.plasma-6627 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);
}

.nav_action_746f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.picture-4ae0,
.message_yellow_50a6,
.steel-d68f {
  width: 100%;
  margin: 1.5rem 0;
}

.aside-ef18 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.aside-ef18 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.advanced_6bcf {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.advanced_6bcf strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.nav_a053 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.nav_a053 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.container_0162 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.small_43cf {
  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;
}

.small_43cf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.small_43cf.rough_683f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.small_43cf .photo-motion-1f25 {
  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;
}

.small_43cf h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.paragraph_pressed_9a81 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.yellow-a0ac {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.yellow-a0ac label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.photo-gold-234a {
  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 === */
.sidebar-bottom-1d11 {
  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;
}

.footer_over_6711 {
  background-color: var(--primary-color);
  color: white;
}

.footer_over_6711:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.photo-3903 {
  background-color: var(--text-secondary);
  color: white;
}

.photo-3903:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.disabled_right_9f49 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.disabled_right_9f49:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.plasma-26f1 {
  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;
}

.plasma-26f1:hover {
  background-color: var(--primary-dark);
}

.component-tall-d3a8 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.soft_17d2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.status-4cc2 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.backdrop_e570 {
  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 === */
.shade-lower-57c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.fluid-1121 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.fluid-1121 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.white-3403 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.secondary-1468 {
  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;
}

.message-6f49 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.upper_0d4c {
  list-style: none;
  counter-reset: rank-counter;
}

.upper_0d4c li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.upper_0d4c 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;
}

.south-f387 {
  list-style: none;
}

.south-f387 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.logo-67f7 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.disabled_e16e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.disabled_e16e .list-350e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.disabled_e16e .orange-b488 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.steel-c830 {
  margin-top: 3rem;
}

.preview_pro_2cc3 {
  width: 100%;
}

.thumbnail-8477 {
  background-color: #fef3c7;
}

.media_lite_50bb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.nav_up_3363 {
  margin: 3rem 0;
}

.component-iron-e286 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.liquid_e2b7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.liquid_e2b7:hover {
  box-shadow: var(--shadow-lg);
}

.liquid_e2b7.disabled-bf34 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.alert_931e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.photo-complex-9b7a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.photo-complex-9b7a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress_liquid_f465 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.liquid_e2b7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.background-07d6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.column-full-8140 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.picture_active_2396 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort_53ac {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag-out-b549 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.outline_current_b983 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.media-7331 {
  max-width: 900px;
  margin: 0 auto;
}

.info-c834 {
  margin: 2rem 0;
}

.wide-0623 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.wide-0623 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.wide-0623 summary::-webkit-details-marker {
  display: none;
}

.wide-0623 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.main_green_eea1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.wide-0623[open] .main_green_eea1 {
  transform: rotate(45deg);
}

.wrapper_brown_bd71 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wrapper_brown_bd71 p:last-child {
  margin-bottom: 0;
}

.backdrop_ecfe {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.highlight-small-45c5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.hard-2983 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.hard-2983 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hard-2983 .sidebar-bottom-1d11 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.form_3626 {
  max-width: 900px;
  margin: 0 auto;
}

.next_032c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.outline_edec {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.outline_edec.fn-success-4aa7 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.focus_smooth_7b17 {
  font-size: 3rem;
  line-height: 1;
}

.preview_stone_35a0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.picture_5f22 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sidebar_5ea9,
.section-fast-0af7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.sidebar_5ea9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section-fast-0af7 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.thumbnail-8ff0,
.brown_0dc0 {
  margin: 1.5rem 0;
}

.thumbnail-8ff0 li,
.brown_0dc0 li {
  margin-bottom: 1rem;
}

.text_6549 {
  margin: 3rem 0;
}

.header-97b1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.header-97b1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.header-97b1 ol {
  margin: 1rem 0;
}

.header-97b1 li {
  margin-bottom: 0.75rem;
}

.overlay_5d79 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fluid-634e {
  margin: 2rem 0;
}

.right_b1ae {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.smooth_49c8 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.input_active_5601 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hero_5e35 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.text-plasma-ab72 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.border_0815 {
  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;
}

.border_0815 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.chip_hard_f419 {
  flex: 1;
}

.chip_hard_f419 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.chip-3252 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.video-f67a p {
  margin-bottom: 1rem;
}

.disabled-thick-9474 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.orange_42e8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.warm-8721 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.warm-8721 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.chip-wood-d78c h3 {
  margin-bottom: 1.5rem;
}

.stale_5824 {
  display: grid;
  gap: 2rem;
}

.down-d230 {
  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;
}

.down-d230 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.down-d230 h4 {
  margin: 0 0 0.25rem;
}

.down-d230 p {
  margin: 0;
  font-size: 0.9375rem;
}

.fresh_6383 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.wide-4e3d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.wide-4e3d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.wide-4e3d ul {
  margin: 1.5rem 0;
}

.wide-4e3d li {
  margin-bottom: 0.75rem;
}

.sidebar_upper_5b7f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gradient_d711 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.wood-c9bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.secondary-3f6b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.secondary-3f6b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.notification-current-d77d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.notification-current-d77d a {
  color: rgba(255, 255, 255, 0.8);
}

.bottom_fa75 {
  list-style: none;
}

.bottom_fa75 li {
  margin-bottom: 0.75rem;
}

.bottom_fa75 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.bottom_fa75 a:hover {
  color: white;
}

.clean_fd68 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.old_0161 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.border_4657 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.frame-last-aa4e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.in_171e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .gallery-6ed4 {
    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;
  }

  .basic-b42b {
    font-size: 1.5rem !important;
  }

  .menu_lite_083c {
    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 */
  .summary-8ba2,
  .shadow-75ec,
  .accordion-first-b57f,
  .nav_action_746f,
  .alert_931e,
  .liquid_e2b7,
  .wrapper_brown_bd71,
  .breadcrumb_5014,
  .texture_f2d2,
  .hard_c3a4 {
    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 */
  .dynamic-e07c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .picture-f875 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .highlight-bc36 {
    flex-shrink: 0;
  }

  .chip_hard_f419 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .progress-da8d,
  .description-glass-45e1 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .description-glass-45e1 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .filter-a041 {
    display: none;
  }

  /* Show mobile actions */
  .hovered-214a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .card-d328 {
    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;
  }

  .card-d328 svg {
    flex-shrink: 0;
  }

  .card-d328 .accordion_0a60 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .card-d328 .module-middle-d37c {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .element_ad74 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .middle-3832 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .card-d328:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .shadow-upper-2ef7 {
    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;
  }

  .shadow-upper-2ef7.fn-active-4aa7 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shadow-upper-2ef7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .shadow-upper-2ef7 li:last-child {
    border-bottom: none;
  }

  .shadow-upper-2ef7 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .outer-feb4 {
    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;
  }

  .outer-feb4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .outer-feb4 li:last-child {
    border-bottom: none;
  }

  .outer-feb4 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .hover-1f3c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .bright-c76e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .accordion-9a35,
  .module_hot_64d0 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .accordion-9a35 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .module_hot_64d0 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .outer-feb4.fn-active-4aa7 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .section_5d68 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .content_6ad7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .center-748e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .green_10a4 {
    margin-top: 0;
  }

  /* Hero section */
  .green_10a4 {
    padding: 2rem 0 1.5rem;
  }

  .menu_lite_083c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .texture_f2d2 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .thumbnail_7da6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .input-b459 {
    max-width: 100%;
    border-radius: 8px;
  }

  .form_under_3038 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dirty-fe53 {
    padding: 1rem;
  }

  .sidebar_copper_e80e {
    font-size: 1.5rem;
  }

  .tabs-green-5e77 {
    font-size: 0.75rem;
  }

  .breadcrumb_5014 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .article_4cb4 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .article_4cb4 .sidebar-bottom-1d11 {
    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 */
  .accent-25c8 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hero_next_b997 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .plasma-6627 {
    margin-bottom: 1rem;
  }

  /* Author */
  .notification-451f {
    flex-direction: column;
  }

  .border_0815 {
    flex-direction: column;
  }

  /* Quotes */
  .alert_931e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .picture_5f22 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hero_5e35 {
    flex-direction: column;
  }

  .hero_5e35 .sidebar-bottom-1d11 {
    width: 100%;
  }

  /* Version comparison */
  .container_0162 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .shade-lower-57c5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .wood-c9bb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .border_4657 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .message-2a4c,
  .message_yellow_50a6,
  .black_01ee,
  .preview_pro_2cc3,
  .picture-4ae0,
  .steel-d68f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .message-2a4c table,
  .message_yellow_50a6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .photo-gold-234a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .gallery-6ed4 {
    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;
  }

  .basic-b42b {
    font-size: 1.25rem !important;
  }

  .menu_lite_083c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .content_6ad7 {
    position: fixed;
  }

  .center-748e {
    padding: 0.625rem 0;
  }

  .plasma-6ca8 img {
    height: 26px;
  }

  .outer-feb4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shadow-upper-2ef7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .card-d328 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .card-d328 svg {
    width: 18px;
    height: 18px;
  }

  .card-d328 .accordion_0a60 {
    font-size: 0.7rem;
  }

  .card-d328 .module-middle-d37c {
    font-size: 0.65rem;
  }

  .accordion-9a35,
  .module_hot_64d0 {
    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, .gallery-6ed4, .soft-e2ab, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .thumbnail_7da6 {
    padding: 1rem;
  }

  .form_under_3038 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dirty-fe53 {
    padding: 0.875rem;
  }

  .sidebar_copper_e80e {
    font-size: 1.25rem;
  }

  .article_4cb4 .sidebar-bottom-1d11 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .menu_lite_083c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .sidebar-bottom-1d11 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .component-tall-d3a8 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hero_next_b997 {
    padding: 1rem;
  }

  .plasma-6627 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .summary-8ba2,
  .middle-b661,
  .card_3e86,
  .small_908f {
    padding: 1rem;
  }
}

@media print {
  .content_6ad7,
  .element_7cea,
  .section_5d68,
  .sidebar-bottom-1d11,
  .gradient_d711 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .gallery-6ed4 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.active_f8dc {
  margin-bottom: 3rem;
  text-align: center;
}

.basic-b42b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.button-bef8 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.huge_a6a9,
.tag_focused_d6cf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.in-8563 {
  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;
}

.in-8563:hover {
  transform: translateY(-5px);
}

.in-8563 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.in-8563 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.image_6cbe {
  margin: 3rem 0;
}

.gallery-df86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.shade_14ac {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.shade_14ac:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.paragraph_bright_fa0a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.filter_2660 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hidden-stale-40e6 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.hot_f5d6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.footer-tiny-7f33 {
  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;
}

.footer-tiny-7f33:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.footer-tiny-7f33.wrapper-narrow-6d38 {
  border-left: 4px solid var(--primary-color);
}

.dynamic-394b {
  flex-shrink: 0;
}

.dynamic-394b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.basic-1fd8 {
  flex: 1;
}

.basic-1fd8 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.description-2cb9 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.new-8c35,
.menu_north_06ed,
.gas-b490 {
  margin-bottom: 1.5rem;
}

.new-8c35 h4,
.menu_north_06ed h4,
.gas-b490 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.new-8c35 ul,
.menu_north_06ed ul,
.gas-b490 ul {
  list-style: none;
  padding: 0;
}

.new-8c35 li,
.menu_north_06ed li,
.gas-b490 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.new-8c35 li:before,
.menu_north_06ed li:before,
.gas-b490 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.article_6b72 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.article_6b72 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;
}

.article_6b72 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.element_fast_7e1b { margin: 2rem 0; }
.thumbnail-6ec8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.thumbnail-6ec8 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.button_a34e p { margin-bottom: 1rem; line-height: 1.7; }
.button_a34e strong { color: var(--text-primary); }
.button_a34e ul { list-style: none; padding-left: 0; }
.button_a34e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.button_a34e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.pattern_inner_b002 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.avatar-632c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.avatar-632c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.column-tiny-2a4d { font-size: 3rem; margin-bottom: 1rem; }
.avatar-632c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.avatar-632c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.box-e503 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.box-e503 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.article_selected_ebf8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.layout_glass_6855 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.north_eed7 { text-align: center; }
.avatar_7ba0 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.notification-tiny-35c2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.sort-hot-87dd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.photo-inner-9fda { margin: 2rem 0; }
.text-91c2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.text-91c2 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.text-91c2 p, .text-91c2 ul { line-height: 1.7; }
.text-91c2 ul { list-style: none; padding-left: 0; }
.text-91c2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.text-91c2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.main_99b6 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.breadcrumb_dynamic_fad6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.component_focused_acc3 { text-align: center; }
.section-0d6e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.focus-action-b433 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slider_outer_c08a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.pattern_white_7871 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.input_middle_fe92 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.input_middle_fe92:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.input_middle_fe92 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.input_middle_fe92 p, .input_middle_fe92 ul { line-height: 1.7; }
.input_middle_fe92 ul { list-style: none; padding-left: 0; }
.input_middle_fe92 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.input_middle_fe92 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6b6d */
.promo-block-f0 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.0;
}
