/* ============================================
   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 */
.carousel_advanced_0d44 p,
.dark-1c90,
.form-13db,
.box_short_f3e8,
.footer-selected-b276,
.red_f766,
.orange-d2b5,
.right-8243 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.secondary-top-2dc8 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.secondary-top-2dc8 > *,
.wrapper-c74e,
.carousel_advanced_0d44,
.gold_a503 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .secondary-top-2dc8 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .secondary-top-2dc8 {
    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 === */
.label_dynamic_e58b {
  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 */
.label_dynamic_e58b.complex-f9d3 {
  box-shadow: var(--shadow-md);
}

.media-down-bda2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.advanced_aff1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.liquid_a02a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.chip-solid-1a0e {
  display: none;
}

/* Hide mobile actions on desktop */
.wrapper-d8b0 {
  display: none;
}

.hidden-liquid-67fc a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hidden-liquid-67fc a:hover,
.hidden-liquid-67fc a.fn-active-1a35 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.slow-967f {
  margin-left: 1rem;
}

.title-aded {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mask_under_9852,
.red_f8bb {
  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;
}

.mask_under_9852 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.mask_under_9852: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;
}

.red_f8bb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.red_f8bb: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;
}

.mask_under_9852 svg,
.red_f8bb svg {
  flex-shrink: 0;
}

.pagination_red_5efb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.aside-25e1 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.aside-25e1::before,
.aside-25e1::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.aside-25e1::before {
  top: -7px;
}

.aside-25e1::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.item_hovered_8c1e {
  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 === */
.white_034c {
  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);
}

.hover-green-8302 {
  margin: 0 0 2rem;
  text-align: center;
}

.preview_lower_4eb4 {
  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;
}

.preview_lower_4eb4:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.menu-liquid-a6ee {
  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);
}

.menu-liquid-a6ee strong {
  color: var(--primary-color);
  font-weight: 700;
}

.backdrop_b9c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.link_ec2f {
  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;
}

.link_ec2f:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.in_9735 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notice-rough-d973 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.modal_8476 {
  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);
}

.modal_8476 .wrapper-large-a696 {
  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;
}

.modal_8476 .wrapper-large-a696 svg {
  flex-shrink: 0;
}

.modal_8476 .tiny-7769 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal_8476 .tiny-7769: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);
}

.modal_8476 .hero-d7fd {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.modal_8476 .hero-d7fd: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) {
  .white_034c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .preview_lower_4eb4 {
    max-width: 100%;
  }

  .backdrop_b9c4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .link_ec2f {
    padding: 1rem;
  }

  .in_9735 {
    font-size: 1.5rem;
  }

  .notice-rough-d973 {
    font-size: 0.75rem;
  }

  .menu-liquid-a6ee {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .modal_8476 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .modal_8476 .wrapper-large-a696 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .backdrop_b9c4 {
    grid-template-columns: 1fr;
  }
}

.title-action-3fe8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mask_dynamic_2578 {
  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 === */
.row-green-ce03 {
  margin-bottom: 2.5rem;
}

.label-3efb {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.title-action-3fe8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge-hot-4848 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sidebar-4392 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.notification-a8ad {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.image_2f6d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.image-out-eec6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.surface-8b41 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label_41bf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label_41bf svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.backdrop_top_1ca7 {
  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);
}

.outline_glass_8e82 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.alert-c7b9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media-d5ea {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.simple-6f0d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.filter_1db1 {
  display: grid;
  gap: 1rem;
}

.icon-9442 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.summary_9ed5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.border-0963 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.texture-a21e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.sort_thick_e50e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.menu_bfb1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.menu_bfb1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.dark-1c90 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.card_huge_8292 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.hidden-plasma-0a64 {
  display: grid;
  gap: 2rem;
}

.footer_left_8cac {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.sidebar-4392 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.badge-hot-4848 {
  flex: 1;
}

.image_2f6d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.image_2f6d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.paragraph-pink-0a65 {
  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;
}

.image-out-eec6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.description-center-1f0b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.description-center-1f0b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.chip-complex-4d54 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.chip-complex-4d54 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.complex-d926 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.complex-d926 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.complex-d926 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.complex-d926 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.caption-edcc {
  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 === */
.module_47c7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hovered_5448 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.footer-3632 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-gold-6a2e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.menu-gold-6a2e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.menu-gold-6a2e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.menu-gold-6a2e 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;
}

.menu-gold-6a2e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.menu-gold-6a2e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.carousel_advanced_0d44 {
  padding: 3rem 0 5rem;
}

.gold_a503 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.gold_a503.tooltip_de50 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.form-13db {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.new_4062 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.info-next-186f {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.info-next-186f h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.breadcrumb-5ba3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.over_2e09 {
  text-align: center;
}

.action-9ef1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.iron-601c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.article-73f8 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.red_f766 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.box_short_f3e8 {
  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;
}

.box_short_f3e8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.box_short_f3e8:hover {
  box-shadow: var(--shadow-lg);
}

.box_short_f3e8.small-d45e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.box_short_f3e8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.box_short_f3e8 ul {
  margin: 1rem 0;
}

.box_short_f3e8 li {
  margin-bottom: 0.75rem;
}

.gradient-bb44 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.avatar-fixed-7043 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.avatar-fixed-7043 a {
  font-weight: 600;
}

/* === Data Tables === */
.next-83b6 {
  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;
}

.next-83b6 table {
  width: 100%;
  min-width: 600px;
}

.next-83b6 thead {
  background-color: var(--primary-color);
  color: white;
}

.next-83b6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.next-83b6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.next-83b6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.next-83b6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.center_2229 {
  list-style: none;
  margin: 1.5rem 0;
}

.center_2229 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.center_2229 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.content-ef98::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-1a35::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 === */
.dim_4755 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hero-8c47 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-8c47 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hero-8c47 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero-8c47 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dim_4755 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.orange-d2b5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.orange-d2b5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.label-7075 {
  position: relative;
  margin-bottom: 3rem;
}

.widget-7eb1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.widget-7eb1 .pattern_6dc6 {
  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;
}

.item_13ae {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.item_13ae h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.item_13ae ul {
  margin: 1rem 0;
}

.item_13ae li {
  margin-bottom: 0.75rem;
}

.form_d9ff {
  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 === */
.carousel-current-3f9f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.carousel-current-3f9f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.simple_842d {
  list-style: none;
  margin: 1.5rem 0;
}

.simple_842d li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.simple_842d a {
  font-weight: 600;
}

.status_224e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.right-8243 {
  margin: 2.5rem 0;
}

.popup-down-7e34 {
  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;
}

.popup-down-7e34:hover {
  box-shadow: var(--shadow-lg);
}

.popup-down-7e34.main_gold_969f {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.label_lite_8237 {
  flex-shrink: 0;
}

.label_lite_8237 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);
}

.silver_3eda h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.tiny-7cbd,
.preview-1950,
.carousel_872b {
  width: 100%;
  margin: 1.5rem 0;
}

.box-4426 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.box-4426 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.media-stale-c136 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.media-stale-c136 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.iron-344e {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.iron-344e strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.heading_easy_a8ef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.out_28a7 {
  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;
}

.out_28a7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.out_28a7.outline_89fd {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.out_28a7 .focused_6b23 {
  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;
}

.out_28a7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.filter-963f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.disabled_9185 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.disabled_9185 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.green_c907 {
  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 === */
.wrapper-large-a696 {
  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;
}

.tiny-7769 {
  background-color: var(--primary-color);
  color: white;
}

.tiny-7769:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hero-d7fd {
  background-color: var(--text-secondary);
  color: white;
}

.hero-d7fd:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.title-left-0516 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.title-left-0516:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.plasma-373e {
  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-373e:hover {
  background-color: var(--primary-dark);
}

.wood_2dc7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.box_466f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.clean-3ed3 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.slider-next-b93f {
  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 === */
.background-hard-1a00 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.focused_8188 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.focused_8188 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph-liquid-d5eb {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.border_huge_86b3 {
  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;
}

.sort_brown_9625 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.thumbnail-gold-09f1 {
  list-style: none;
  counter-reset: rank-counter;
}

.thumbnail-gold-09f1 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.thumbnail-gold-09f1 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;
}

.large_a1cb {
  list-style: none;
}

.large_a1cb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.logo_f297 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.avatar_silver_440c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.avatar_silver_440c .tertiary_smooth_6fc9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.avatar_silver_440c .in_ab0e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero_pro_4d65 {
  margin-top: 3rem;
}

.surface_b9af {
  width: 100%;
}

.row_center_a92c {
  background-color: #fef3c7;
}

.nav-green-29db {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.widget-next-c460 {
  margin: 3rem 0;
}

.modal-df74 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.focused-6924 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.focused-6924:hover {
  box-shadow: var(--shadow-lg);
}

.focused-6924.plasma_3a29 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.form_2bca {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.photo-active-a3f9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.photo-active-a3f9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plasma_0e1b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focused-6924 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.smooth-f94e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.notice-center-b839 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.module_0fe5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-0f89 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.primary_selected_eec0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.south_9162 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.iron-12a7 {
  max-width: 900px;
  margin: 0 auto;
}

.icon_dim_abb5 {
  margin: 2rem 0;
}

.tiny-a1f8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.tiny-a1f8 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.tiny-a1f8 summary::-webkit-details-marker {
  display: none;
}

.tiny-a1f8 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.feature-f278 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.tiny-a1f8[open] .feature-f278 {
  transform: rotate(45deg);
}

.breadcrumb_1322 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.breadcrumb_1322 p:last-child {
  margin-bottom: 0;
}

.tooltip_b38c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hot_b64b {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.mask-easy-1b9a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.mask-easy-1b9a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mask-easy-1b9a .wrapper-large-a696 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.widget_upper_1402 {
  max-width: 900px;
  margin: 0 auto;
}

.hero_east_3169 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.thumbnail-6f33 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.thumbnail-6f33.fn-success-1a35 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.article_old_9d0c {
  font-size: 3rem;
  line-height: 1;
}

.overlay_out_96e8 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.plasma-d383 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.slider_9896,
.description_c275 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.slider_9896 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.description_c275 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.label_4cc8,
.backdrop-clean-9fe8 {
  margin: 1.5rem 0;
}

.label_4cc8 li,
.backdrop-clean-9fe8 li {
  margin-bottom: 1rem;
}

.copper-36fa {
  margin: 3rem 0;
}

.logo-stone-3198 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.logo-stone-3198 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.logo-stone-3198 ol {
  margin: 1rem 0;
}

.logo-stone-3198 li {
  margin-bottom: 0.75rem;
}

.outer-0d2d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.south-7a08 {
  margin: 2rem 0;
}

.widget_green_a7d3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.detail_silver_416c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.secondary_advanced_5659 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.frame-33b7 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.overlay_yellow_e296 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.first-d965 {
  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;
}

.first-d965 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.notification-a8ad {
  flex: 1;
}

.notification-a8ad h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.media_2847 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.short-1241 p {
  margin-bottom: 1rem;
}

.action-1237 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.next-9a08 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.aside_1b5f {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.aside_1b5f a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.highlight-pink-f7d0 h3 {
  margin-bottom: 1.5rem;
}

.dark_ce04 {
  display: grid;
  gap: 2rem;
}

.sidebar-steel-0dc3 {
  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;
}

.sidebar-steel-0dc3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.sidebar-steel-0dc3 h4 {
  margin: 0 0 0.25rem;
}

.sidebar-steel-0dc3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.accent-0fee {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.static-1eac {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.static-1eac h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.static-1eac ul {
  margin: 1.5rem 0;
}

.static-1eac li {
  margin-bottom: 0.75rem;
}

.liquid_833d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.description_hovered_1f82 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.plasma_9314 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.logo_245b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.logo_245b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.title-upper-9bce {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.title-upper-9bce a {
  color: rgba(255, 255, 255, 0.8);
}

.medium_4fcd {
  list-style: none;
}

.medium_4fcd li {
  margin-bottom: 0.75rem;
}

.medium_4fcd a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.medium_4fcd a:hover {
  color: white;
}

.icon_wood_82ae {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.button-692b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.info-f35a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.plasma-bacd {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.chip_82ee {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .secondary-top-2dc8 {
    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;
  }

  .surface_cool_9a7d {
    font-size: 1.5rem !important;
  }

  .label-3efb {
    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 */
  .box_short_f3e8,
  .footer-selected-b276,
  .item_13ae,
  .silver_3eda,
  .form_2bca,
  .focused-6924,
  .breadcrumb_1322,
  .menu-liquid-a6ee,
  .dark-1c90,
  .form-13db {
    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 */
  .title-action-3fe8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .badge-hot-4848 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .sidebar-4392 {
    flex-shrink: 0;
  }

  .notification-a8ad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .image_2f6d,
  .image-out-eec6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .image-out-eec6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .liquid_a02a {
    display: none;
  }

  /* Show mobile actions */
  .wrapper-d8b0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .notification-8aa5 {
    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;
  }

  .notification-8aa5 svg {
    flex-shrink: 0;
  }

  .notification-8aa5 .secondary_ef84 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .notification-8aa5 .input_stone_4652 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .link_b6f8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .text_short_6dc8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .notification-8aa5:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .chip-solid-1a0e {
    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;
  }

  .chip-solid-1a0e.fn-active-1a35 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .chip-solid-1a0e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .chip-solid-1a0e li:last-child {
    border-bottom: none;
  }

  .chip-solid-1a0e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hidden-liquid-67fc {
    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;
  }

  .hidden-liquid-67fc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hidden-liquid-67fc li:last-child {
    border-bottom: none;
  }

  .hidden-liquid-67fc a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .slow-967f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .title-aded {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .mask_under_9852,
  .red_f8bb {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .mask_under_9852 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .red_f8bb {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hidden-liquid-67fc.fn-active-1a35 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pagination_red_5efb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .label_dynamic_e58b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .media-down-bda2 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .item_hovered_8c1e {
    margin-top: 0;
  }

  /* Hero section */
  .item_hovered_8c1e {
    padding: 2rem 0 1.5rem;
  }

  .label-3efb {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .dark-1c90 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .white_034c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .preview_lower_4eb4 {
    max-width: 100%;
    border-radius: 8px;
  }

  .backdrop_b9c4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .link_ec2f {
    padding: 1rem;
  }

  .in_9735 {
    font-size: 1.5rem;
  }

  .notice-rough-d973 {
    font-size: 0.75rem;
  }

  .menu-liquid-a6ee {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .modal_8476 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .modal_8476 .wrapper-large-a696 {
    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 */
  .footer-3632 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .popup-down-7e34 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .label_lite_8237 {
    margin-bottom: 1rem;
  }

  /* Author */
  .footer_left_8cac {
    flex-direction: column;
  }

  .first-d965 {
    flex-direction: column;
  }

  /* Quotes */
  .form_2bca {
    flex-direction: column;
  }

  /* Pros/Cons */
  .plasma-d383 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .frame-33b7 {
    flex-direction: column;
  }

  .frame-33b7 .wrapper-large-a696 {
    width: 100%;
  }

  /* Version comparison */
  .heading_easy_a8ef {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .background-hard-1a00 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .plasma_9314 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-f35a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .next-83b6,
  .preview-1950,
  .fixed_ea18,
  .surface_b9af,
  .tiny-7cbd,
  .carousel_872b {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .next-83b6 table,
  .preview-1950 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .green_c907 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .secondary-top-2dc8 {
    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;
  }

  .surface_cool_9a7d {
    font-size: 1.25rem !important;
  }

  .label-3efb {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .label_dynamic_e58b {
    position: fixed;
  }

  .media-down-bda2 {
    padding: 0.625rem 0;
  }

  .advanced_aff1 img {
    height: 26px;
  }

  .hidden-liquid-67fc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .chip-solid-1a0e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .notification-8aa5 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .notification-8aa5 svg {
    width: 18px;
    height: 18px;
  }

  .notification-8aa5 .secondary_ef84 {
    font-size: 0.7rem;
  }

  .notification-8aa5 .input_stone_4652 {
    font-size: 0.65rem;
  }

  .mask_under_9852,
  .red_f8bb {
    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, .secondary-top-2dc8, .wrapper-c74e, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .white_034c {
    padding: 1rem;
  }

  .backdrop_b9c4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .link_ec2f {
    padding: 0.875rem;
  }

  .in_9735 {
    font-size: 1.25rem;
  }

  .modal_8476 .wrapper-large-a696 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .label-3efb {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .wrapper-large-a696 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .wood_2dc7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .popup-down-7e34 {
    padding: 1rem;
  }

  .label_lite_8237 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .box_short_f3e8,
  .footer_thick_5c9f,
  .button-wood-e1d7,
  .paragraph-hot-2127 {
    padding: 1rem;
  }
}

@media print {
  .label_dynamic_e58b,
  .module_47c7,
  .pagination_red_5efb,
  .wrapper-large-a696,
  .description_hovered_1f82 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .secondary-top-2dc8 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.caption_e13f {
  margin-bottom: 3rem;
  text-align: center;
}

.surface_cool_9a7d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.yellow_f18d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.stale_b759,
.hidden-upper-c027 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer-edaa {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.footer-edaa:hover {
  transform: translateY(-5px);
}

.footer-edaa strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.footer-edaa span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.block-paper-a9dd {
  margin: 3rem 0;
}

.tabs_middle_b0be {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.heading-bright-ea6d {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.heading-bright-ea6d:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.soft_307c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.nav-a20d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.left-0d14 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.link_6ff2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pro-f737 {
  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;
}

.pro-f737:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pro-f737.north_b803 {
  border-left: 4px solid var(--primary-color);
}

.gallery_7a6c {
  flex-shrink: 0;
}

.gallery_7a6c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.active-2b79 {
  flex: 1;
}

.active-2b79 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer_3db3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.search-ae55,
.carousel_focused_d6aa,
.thumbnail_huge_179a {
  margin-bottom: 1.5rem;
}

.search-ae55 h4,
.carousel_focused_d6aa h4,
.thumbnail_huge_179a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-ae55 ul,
.carousel_focused_d6aa ul,
.thumbnail_huge_179a ul {
  list-style: none;
  padding: 0;
}

.search-ae55 li,
.carousel_focused_d6aa li,
.thumbnail_huge_179a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.search-ae55 li:before,
.carousel_focused_d6aa li:before,
.thumbnail_huge_179a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.accordion_57e6 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.accordion_57e6 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;
}

.accordion_57e6 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.breadcrumb_yellow_fede { margin: 2rem 0; }
.active_lite_66a2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.active_lite_66a2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.notice-thick-9e7f p { margin-bottom: 1rem; line-height: 1.7; }
.notice-thick-9e7f strong { color: var(--text-primary); }
.notice-thick-9e7f ul { list-style: none; padding-left: 0; }
.notice-thick-9e7f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notice-thick-9e7f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.liquid-8a54 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper_in_372a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.wrapper_in_372a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.black-4d52 { font-size: 3rem; margin-bottom: 1rem; }
.wrapper_in_372a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.wrapper_in_372a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hidden_small_b3e1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hidden_small_b3e1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.caption-cool-3b3d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.modal_2f6e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hover_0773 { text-align: center; }
.list-b2f7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.pagination-north-f5ee { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom_a593 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.north-36f4 { margin: 2rem 0; }
.slider_tiny_a0b9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slider_tiny_a0b9 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.slider_tiny_a0b9 p, .slider_tiny_a0b9 ul { line-height: 1.7; }
.slider_tiny_a0b9 ul { list-style: none; padding-left: 0; }
.slider_tiny_a0b9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider_tiny_a0b9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.thumbnail-paper-6972 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.liquid_4b53 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.iron-678e { text-align: center; }
.list_plasma_a872 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.basic-40e2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.feature_top_f4ff { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hovered-ba7a { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.selected_0f47 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.selected_0f47:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.selected_0f47 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.selected_0f47 p, .selected_0f47 ul { line-height: 1.7; }
.selected_0f47 ul { list-style: none; padding-left: 0; }
.selected_0f47 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.selected_0f47 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: fbf9 */
.promo-block-y9 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
