/* ============================================
   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 */
.hard_c42c p,
.active-advanced-8eab,
.breadcrumb-north-f04e,
.focused_052f,
.border-red-5ba1,
.alert-left-1bf2,
.glass-35ad,
.gold-9c2f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.carousel-motion-90b0 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.carousel-motion-90b0 > *,
.paper-65a3,
.hard_c42c,
.pagination-914f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .carousel-motion-90b0 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .carousel-motion-90b0 {
    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 === */
.grid_184a {
  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 */
.grid_184a.dropdown_tall_affe {
  box-shadow: var(--shadow-md);
}

.link_pressed_6a9f {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.large-5ff3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.banner-wood-ce4b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.plasma-ba50 {
  display: none;
}

/* Hide mobile actions on desktop */
.caption_c108 {
  display: none;
}

.breadcrumb_pressed_b5aa a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.breadcrumb_pressed_b5aa a:hover,
.breadcrumb_pressed_b5aa a.fn-active-a675 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.pagination_eb39 {
  margin-left: 1rem;
}

.banner-paper-b070 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.input_e735,
.item-iron-c961 {
  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;
}

.input_e735 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.input_e735: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;
}

.item-iron-c961 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.item-iron-c961: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;
}

.input_e735 svg,
.item-iron-c961 svg {
  flex-shrink: 0;
}

.aside_west_fa64 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.border_cold_9a3f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.border_cold_9a3f::before,
.border_cold_9a3f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.border_cold_9a3f::before {
  top: -7px;
}

.border_cold_9a3f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.mask_right_73ba {
  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 === */
.header-plasma-fb24 {
  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);
}

.iron_8bb2 {
  margin: 0 0 2rem;
  text-align: center;
}

.widget-mini-b27e {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-mini-b27e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.element-basic-4c0b {
  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);
}

.element-basic-4c0b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.summary-d9cc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card-fluid-58eb {
  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;
}

.card-fluid-58eb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-rough-bb4e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.box-solid-9033 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.block_smooth_b1ac {
  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);
}

.block_smooth_b1ac .dark-a872 {
  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;
}

.block_smooth_b1ac .dark-a872 svg {
  flex-shrink: 0;
}

.block_smooth_b1ac .pagination-4c90 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.block_smooth_b1ac .pagination-4c90: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);
}

.block_smooth_b1ac .outline-pressed-ce11 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.block_smooth_b1ac .outline-pressed-ce11: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) {
  .header-plasma-fb24 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget-mini-b27e {
    max-width: 100%;
  }

  .summary-d9cc {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-fluid-58eb {
    padding: 1rem;
  }

  .hero-rough-bb4e {
    font-size: 1.5rem;
  }

  .box-solid-9033 {
    font-size: 0.75rem;
  }

  .element-basic-4c0b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .block_smooth_b1ac {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .block_smooth_b1ac .dark-a872 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .summary-d9cc {
    grid-template-columns: 1fr;
  }
}

.row_6826 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.menu-easy-00ff {
  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 === */
.summary-full-81fa {
  margin-bottom: 2.5rem;
}

.heading-rough-bf89 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.row_6826 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.logo-3399 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.simple-5284 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.button_dim_c21d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.photo_paper_7c0a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.notification_8443 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.input-wide-9d06 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.center-1727 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.center-1727 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.frame_9af4 {
  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);
}

.easy_c5df {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.carousel_large_b1cd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cold-a35d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.column-46c6 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.surface_f8d5 {
  display: grid;
  gap: 1rem;
}

.border-59f5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.feature_62b1 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.prev_668a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.aside-e5dd {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.gallery_392e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.search-8dd5 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.search-8dd5 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.active-advanced-8eab {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pagination_d01e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.item-30bd {
  display: grid;
  gap: 2rem;
}

.layout_stone_5351 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.simple-5284 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.logo-3399 {
  flex: 1;
}

.photo_paper_7c0a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.photo_paper_7c0a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dark-216a {
  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;
}

.notification_8443 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.menu-b6a5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.menu-b6a5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.highlight_ae00 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.highlight_ae00 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.cool-dc18 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cool-dc18 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.cool-dc18 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cool-dc18 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.tertiary_gas_6ce6 {
  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 === */
.heading_1fc9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.last_2c0b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.container-plasma-2abb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.component-medium-5bc3 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.component-medium-5bc3 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.component-medium-5bc3 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.component-medium-5bc3 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;
}

.component-medium-5bc3 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.component-medium-5bc3 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.hard_c42c {
  padding: 3rem 0 5rem;
}

.pagination-914f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.pagination-914f.card_blue_81d6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.breadcrumb-north-f04e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.thick_6b9b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.first_45b7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.first_45b7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hard-f735 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.image_upper_b327 {
  text-align: center;
}

.aside_3e5d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.middle_4133 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hard_48be {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.alert-left-1bf2 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.focused_052f {
  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;
}

.focused_052f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.focused_052f:hover {
  box-shadow: var(--shadow-lg);
}

.focused_052f.red-214c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.focused_052f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.focused_052f ul {
  margin: 1rem 0;
}

.focused_052f li {
  margin-bottom: 0.75rem;
}

.picture-962e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.title_simple_a4e0 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.title_simple_a4e0 a {
  font-weight: 600;
}

/* === Data Tables === */
.pattern_c578 {
  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;
}

.pattern_c578 table {
  width: 100%;
  min-width: 600px;
}

.pattern_c578 thead {
  background-color: var(--primary-color);
  color: white;
}

.pattern_c578 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.pattern_c578 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.pattern_c578 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.pattern_c578 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.clean_eded {
  list-style: none;
  margin: 1.5rem 0;
}

.clean_eded li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.clean_eded li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.component_1fb8::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-a675::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 === */
.tooltip_up_f18e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hard_6c82 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hard_6c82 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hard_6c82 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hard_6c82 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tooltip_up_f18e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.glass-35ad {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.glass-35ad::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.widget-dirty-5b25 {
  position: relative;
  margin-bottom: 3rem;
}

.hard_4bd9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hard_4bd9 .steel_ed75 {
  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;
}

.logo_warm_5480 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.logo_warm_5480 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.logo_warm_5480 ul {
  margin: 1rem 0;
}

.logo_warm_5480 li {
  margin-bottom: 0.75rem;
}

.info_adfb {
  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_white_9d16 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.preview_white_9d16 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.focus-brown-6d4a {
  list-style: none;
  margin: 1.5rem 0;
}

.focus-brown-6d4a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.focus-brown-6d4a a {
  font-weight: 600;
}

.down_c391 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gold-9c2f {
  margin: 2.5rem 0;
}

.accordion-full-11d4 {
  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;
}

.accordion-full-11d4:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-full-11d4.video_liquid_b4f1 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.complex-2825 {
  flex-shrink: 0;
}

.complex-2825 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);
}

.upper_c750 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.aside_bright_b737,
.surface-clean-d06b,
.notification_clean_b9c2 {
  width: 100%;
  margin: 1.5rem 0;
}

.hot_e9ba {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.hot_e9ba strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.paragraph-87d2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.paragraph-87d2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.tag-a942 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tag-a942 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.container-outer-3557 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card_advanced_ff2a {
  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;
}

.card_advanced_ff2a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card_advanced_ff2a.center_20f1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.card_advanced_ff2a .texture-full-f145 {
  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;
}

.card_advanced_ff2a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.paragraph_4f1a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.mask-919d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.mask-919d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.filter-73b3 {
  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 === */
.dark-a872 {
  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;
}

.pagination-4c90 {
  background-color: var(--primary-color);
  color: white;
}

.pagination-4c90:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.outline-pressed-ce11 {
  background-color: var(--text-secondary);
  color: white;
}

.outline-pressed-ce11:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.west_5def {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.west_5def:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.preview-82ec {
  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;
}

.preview-82ec:hover {
  background-color: var(--primary-dark);
}

.hard_0b4a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.preview_167b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.steel-a580 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.logo_copper_1d02 {
  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 === */
.short_4d36 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-ee2e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.photo-ee2e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.liquid_6482 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.card_advanced_b3b9 {
  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;
}

.search-full-b270 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accent_first_b9e7 {
  list-style: none;
  counter-reset: rank-counter;
}

.accent_first_b9e7 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accent_first_b9e7 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;
}

.message-static-1aee {
  list-style: none;
}

.message-static-1aee li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.alert_east_6b44 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.element_warm_38a3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.element_warm_38a3 .heading_4b54 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.element_warm_38a3 .container_3747 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tertiary-bright-0d8b {
  margin-top: 3rem;
}

.blue_3efa {
  width: 100%;
}

.north-e96e {
  background-color: #fef3c7;
}

.layout_over_29c1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.badge-ef75 {
  margin: 3rem 0;
}

.upper_d6cc {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.liquid-8090 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.liquid-8090:hover {
  box-shadow: var(--shadow-lg);
}

.liquid-8090.column-c021 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.nav_4af8 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.bright-dde1 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.bright-dde1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay_fixed_2659 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.liquid-8090 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.slow-1395 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.shadow_6e99 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.row_next_20a6 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.layout_d84b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer-wide-36ad {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.slider-b468 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.layout_short_aaa2 {
  max-width: 900px;
  margin: 0 auto;
}

.main-down-2ba5 {
  margin: 2rem 0;
}

.small_a0aa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.small_a0aa summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.small_a0aa summary::-webkit-details-marker {
  display: none;
}

.small_a0aa summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.info-smooth-8d00 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.small_a0aa[open] .info-smooth-8d00 {
  transform: rotate(45deg);
}

.notice_23c8 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.notice_23c8 p:last-child {
  margin-bottom: 0;
}

.grid_91a7 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.south-6c20 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.tertiary_eb9f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.tertiary_eb9f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tertiary_eb9f .dark-a872 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.item_e27e {
  max-width: 900px;
  margin: 0 auto;
}

.action_7f25 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.first-7d37 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.first-7d37.fn-success-a675 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.aside-f057 {
  font-size: 3rem;
  line-height: 1;
}

.picture-3627 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hero_b1ed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.motion-2e76,
.pressed-4615 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.motion-2e76 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pressed-4615 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.heading_6f66,
.south-3075 {
  margin: 1.5rem 0;
}

.heading_6f66 li,
.south-3075 li {
  margin-bottom: 1rem;
}

.cold-5855 {
  margin: 3rem 0;
}

.chip-75c0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.chip-75c0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.chip-75c0 ol {
  margin: 1rem 0;
}

.chip-75c0 li {
  margin-bottom: 0.75rem;
}

.hard_20d4 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.primary-easy-8ba7 {
  margin: 2rem 0;
}

.banner-active-3144 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.content-296e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.stone_7408 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.video-522c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.label-small-8007 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.liquid_db11 {
  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;
}

.liquid_db11 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.button_dim_c21d {
  flex: 1;
}

.button_dim_c21d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.badge-16fd {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gradient_c43f p {
  margin-bottom: 1rem;
}

.content-9c73 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.backdrop-under-7036 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dim_2df8 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dim_2df8 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.cool_23f4 h3 {
  margin-bottom: 1.5rem;
}

.next-dcb1 {
  display: grid;
  gap: 2rem;
}

.old_b804 {
  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;
}

.old_b804 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.old_b804 h4 {
  margin: 0 0 0.25rem;
}

.old_b804 p {
  margin: 0;
  font-size: 0.9375rem;
}

.blue-7bde {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.menu-85ac {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.menu-85ac h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.menu-85ac ul {
  margin: 1.5rem 0;
}

.menu-85ac li {
  margin-bottom: 0.75rem;
}

.content_soft_0ff6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.block-orange-e99a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.border-clean-d7fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.mask_9d5c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.mask_9d5c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.tertiary_747d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.tertiary_747d a {
  color: rgba(255, 255, 255, 0.8);
}

.message-0b28 {
  list-style: none;
}

.message-0b28 li {
  margin-bottom: 0.75rem;
}

.message-0b28 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.message-0b28 a:hover {
  color: white;
}

.wood-83c6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.background_red_77e4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.active-bc6e {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.dropdown_1bfc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.active-cbe6 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .carousel-motion-90b0 {
    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;
  }

  .border-a03a {
    font-size: 1.5rem !important;
  }

  .heading-rough-bf89 {
    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 */
  .focused_052f,
  .border-red-5ba1,
  .logo_warm_5480,
  .upper_c750,
  .nav_4af8,
  .liquid-8090,
  .notice_23c8,
  .element-basic-4c0b,
  .active-advanced-8eab,
  .breadcrumb-north-f04e {
    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 */
  .row_6826 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo-3399 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .simple-5284 {
    flex-shrink: 0;
  }

  .button_dim_c21d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .photo_paper_7c0a,
  .notification_8443 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .notification_8443 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .banner-wood-ce4b {
    display: none;
  }

  /* Show mobile actions */
  .caption_c108 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .thumbnail_smooth_8a10 {
    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;
  }

  .thumbnail_smooth_8a10 svg {
    flex-shrink: 0;
  }

  .thumbnail_smooth_8a10 .down_40c3 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .thumbnail_smooth_8a10 .preview-e8b9 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .icon-0e82 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .notice-huge-cb5e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .thumbnail_smooth_8a10:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .plasma-ba50 {
    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;
  }

  .plasma-ba50.fn-active-a675 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .plasma-ba50 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .plasma-ba50 li:last-child {
    border-bottom: none;
  }

  .plasma-ba50 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .breadcrumb_pressed_b5aa {
    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;
  }

  .breadcrumb_pressed_b5aa li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .breadcrumb_pressed_b5aa li:last-child {
    border-bottom: none;
  }

  .breadcrumb_pressed_b5aa a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .pagination_eb39 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .banner-paper-b070 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .input_e735,
  .item-iron-c961 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .input_e735 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .item-iron-c961 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .breadcrumb_pressed_b5aa.fn-active-a675 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .aside_west_fa64 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .grid_184a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .link_pressed_6a9f {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .mask_right_73ba {
    margin-top: 0;
  }

  /* Hero section */
  .mask_right_73ba {
    padding: 2rem 0 1.5rem;
  }

  .heading-rough-bf89 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .active-advanced-8eab {
    font-size: 1rem;
  }

  /* Hero brand image */
  .header-plasma-fb24 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget-mini-b27e {
    max-width: 100%;
    border-radius: 8px;
  }

  .summary-d9cc {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-fluid-58eb {
    padding: 1rem;
  }

  .hero-rough-bb4e {
    font-size: 1.5rem;
  }

  .box-solid-9033 {
    font-size: 0.75rem;
  }

  .element-basic-4c0b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .block_smooth_b1ac {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .block_smooth_b1ac .dark-a872 {
    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 */
  .container-plasma-2abb {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .accordion-full-11d4 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .complex-2825 {
    margin-bottom: 1rem;
  }

  /* Author */
  .layout_stone_5351 {
    flex-direction: column;
  }

  .liquid_db11 {
    flex-direction: column;
  }

  /* Quotes */
  .nav_4af8 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hero_b1ed {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .video-522c {
    flex-direction: column;
  }

  .video-522c .dark-a872 {
    width: 100%;
  }

  /* Version comparison */
  .container-outer-3557 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .short_4d36 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .border-clean-d7fb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .active-bc6e {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .pattern_c578,
  .surface-clean-d06b,
  .text_081b,
  .blue_3efa,
  .aside_bright_b737,
  .notification_clean_b9c2 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pattern_c578 table,
  .surface-clean-d06b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .filter-73b3 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .carousel-motion-90b0 {
    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;
  }

  .border-a03a {
    font-size: 1.25rem !important;
  }

  .heading-rough-bf89 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .grid_184a {
    position: fixed;
  }

  .link_pressed_6a9f {
    padding: 0.625rem 0;
  }

  .large-5ff3 img {
    height: 26px;
  }

  .breadcrumb_pressed_b5aa {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .plasma-ba50 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail_smooth_8a10 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .thumbnail_smooth_8a10 svg {
    width: 18px;
    height: 18px;
  }

  .thumbnail_smooth_8a10 .down_40c3 {
    font-size: 0.7rem;
  }

  .thumbnail_smooth_8a10 .preview-e8b9 {
    font-size: 0.65rem;
  }

  .input_e735,
  .item-iron-c961 {
    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, .carousel-motion-90b0, .paper-65a3, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .header-plasma-fb24 {
    padding: 1rem;
  }

  .summary-d9cc {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .card-fluid-58eb {
    padding: 0.875rem;
  }

  .hero-rough-bb4e {
    font-size: 1.25rem;
  }

  .block_smooth_b1ac .dark-a872 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .heading-rough-bf89 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .dark-a872 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hard_0b4a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .accordion-full-11d4 {
    padding: 1rem;
  }

  .complex-2825 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .focused_052f,
  .down-2a72,
  .out-13c9,
  .gradient-b750 {
    padding: 1rem;
  }
}

@media print {
  .grid_184a,
  .heading_1fc9,
  .aside_west_fa64,
  .dark-a872,
  .block-orange-e99a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .carousel-motion-90b0 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.down_6d1b {
  margin-bottom: 3rem;
  text-align: center;
}

.border-a03a {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.picture_a9a9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.layout_d7bf,
.menu_black_3cf3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.block-c297 {
  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;
}

.block-c297:hover {
  transform: translateY(-5px);
}

.block-c297 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.block-c297 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.module-ba06 {
  margin: 3rem 0;
}

.sort-short-c0e7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.logo-ef3e {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.logo-ef3e:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fluid-baa6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero_e3c9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.texture-0d92 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.item-df2c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.yellow_f52f {
  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;
}

.yellow_f52f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.yellow_f52f.motion_3fd3 {
  border-left: 4px solid var(--primary-color);
}

.table-fresh-3dc4 {
  flex-shrink: 0;
}

.table-fresh-3dc4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.red-1aa2 {
  flex: 1;
}

.red-1aa2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.modal-4fe8 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.breadcrumb_3c7d,
.backdrop-paper-0ca7,
.column-hot-3fd3 {
  margin-bottom: 1.5rem;
}

.breadcrumb_3c7d h4,
.backdrop-paper-0ca7 h4,
.column-hot-3fd3 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb_3c7d ul,
.backdrop-paper-0ca7 ul,
.column-hot-3fd3 ul {
  list-style: none;
  padding: 0;
}

.breadcrumb_3c7d li,
.backdrop-paper-0ca7 li,
.column-hot-3fd3 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.breadcrumb_3c7d li:before,
.backdrop-paper-0ca7 li:before,
.column-hot-3fd3 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.outer-4c6d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outer-4c6d 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;
}

.outer-4c6d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.footer-4071 { margin: 2rem 0; }
.basic_0b45 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.basic_0b45 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tertiary_under_e95f p { margin-bottom: 1rem; line-height: 1.7; }
.tertiary_under_e95f strong { color: var(--text-primary); }
.tertiary_under_e95f ul { list-style: none; padding-left: 0; }
.tertiary_under_e95f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tertiary_under_e95f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.warm_21c7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.glass-833b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.glass-833b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.fast_c89d { font-size: 3rem; margin-bottom: 1rem; }
.glass-833b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.glass-833b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.upper_c59d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.upper_c59d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.tall-21d1 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.footer-fa39 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.top_80ef { text-align: center; }
.stale-8410 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tag_black_d298 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.status_192f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.gallery-291d { margin: 2rem 0; }
.block_new_ecf4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.block_new_ecf4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.block_new_ecf4 p, .block_new_ecf4 ul { line-height: 1.7; }
.block_new_ecf4 ul { list-style: none; padding-left: 0; }
.block_new_ecf4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.block_new_ecf4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.west-2f01 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hard-01b4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pagination_9116 { text-align: center; }
.box-thick-e871 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.widget_dim_0ac9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.detail-advanced-7b47 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.feature-8b02 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wide-d338 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.wide-d338:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.wide-d338 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.wide-d338 p, .wide-d338 ul { line-height: 1.7; }
.wide-d338 ul { list-style: none; padding-left: 0; }
.wide-d338 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wide-d338 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e5b9 */
.ghost-box-n4 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
