/* ============================================
   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 */
.in-99f2 p,
.east-9a3e,
.selected_6a74,
.copper_9f8b,
.accordion_purple_631c,
.cold-4201,
.frame_rough_0eed,
.summary-tall-c1b3 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.logo_full_59b6 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.logo_full_59b6 > *,
.last-db8a,
.in-99f2,
.last-1525 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .logo_full_59b6 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .logo_full_59b6 {
    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 === */
.accent_hot_24d8 {
  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 */
.accent_hot_24d8.outline_773e {
  box-shadow: var(--shadow-md);
}

.notification_6ee9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.article-fa25 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.solid_c87a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.border_lower_826d {
  display: none;
}

/* Hide mobile actions on desktop */
.inner_4877 {
  display: none;
}

.red-a0f3 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.red-a0f3 a:hover,
.red-a0f3 a.fn-active-704b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.next_bc6e {
  margin-left: 1rem;
}

.stale_c999 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.box_red_52f4,
.accordion_down_026c {
  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;
}

.box_red_52f4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.box_red_52f4: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;
}

.accordion_down_026c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.accordion_down_026c: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;
}

.box_red_52f4 svg,
.accordion_down_026c svg {
  flex-shrink: 0;
}

.popup_074b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hero-fluid-75da {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hero-fluid-75da::before,
.hero-fluid-75da::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hero-fluid-75da::before {
  top: -7px;
}

.hero-fluid-75da::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.row_last_625e {
  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 === */
.tag-6ff3 {
  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);
}

.last-f8fc {
  margin: 0 0 2rem;
  text-align: center;
}

.bronze_fb3b {
  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;
}

.bronze_fb3b:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.container_next_9c29 {
  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);
}

.container_next_9c29 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.small-e91b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.dirty_9d48 {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dirty_9d48:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.paper_0d47 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal_over_fe93 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.highlight_fluid_c8f4 {
  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);
}

.highlight_fluid_c8f4 .card_lower_d1ae {
  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;
}

.highlight_fluid_c8f4 .card_lower_d1ae svg {
  flex-shrink: 0;
}

.highlight_fluid_c8f4 .notice-east-bab1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.highlight_fluid_c8f4 .notice-east-bab1: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);
}

.highlight_fluid_c8f4 .paragraph_glass_cb5c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.highlight_fluid_c8f4 .paragraph_glass_cb5c: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) {
  .tag-6ff3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bronze_fb3b {
    max-width: 100%;
  }

  .small-e91b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dirty_9d48 {
    padding: 1rem;
  }

  .paper_0d47 {
    font-size: 1.5rem;
  }

  .modal_over_fe93 {
    font-size: 0.75rem;
  }

  .container_next_9c29 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .highlight_fluid_c8f4 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .highlight_fluid_c8f4 .card_lower_d1ae {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .small-e91b {
    grid-template-columns: 1fr;
  }
}

.mask_7878 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tabs_fast_0845 {
  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 === */
.media_dde2 {
  margin-bottom: 2.5rem;
}

.pattern-8465 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.mask_7878 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.section-thick-e303 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.inner_3e2d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.hover-cfa3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.yellow-48e7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.full-eca8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dropdown-d0fb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_309c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_309c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.message_full_fcfe {
  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);
}

.mask-tiny-a859 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.hard_179b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden_medium_1a1a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.notice_9347 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hard_8c4a {
  display: grid;
  gap: 1rem;
}

.module-steel-563d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.summary_c559 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pagination-paper-5173 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hero-west-04f9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notice_smooth_646b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.header_f4a3 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header_f4a3 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.east-9a3e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.secondary_liquid_8c93 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.right-bace {
  display: grid;
  gap: 2rem;
}

.mask-5d87 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.inner_3e2d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.section-thick-e303 {
  flex: 1;
}

.yellow-48e7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.yellow-48e7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hidden_fe3e {
  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;
}

.full-eca8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.container_0d9b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.container_0d9b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.short-bbb4 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.short-bbb4 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.panel-fast-bbda {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel-fast-bbda strong {
  display: block;
  margin-bottom: 0.75rem;
}

.panel-fast-bbda ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-fast-bbda li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.preview_lite_b751 {
  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 === */
.pressed-1486 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.brown-223b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.section-f36d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.message_last_00a9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.message_last_00a9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.message_last_00a9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.message_last_00a9 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;
}

.message_last_00a9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.message_last_00a9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.in-99f2 {
  padding: 3rem 0 5rem;
}

.last-1525 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.last-1525.popup-soft-1679 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.selected_6a74 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.label_4b7f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.breadcrumb-focused-d5f8 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.breadcrumb-focused-d5f8 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.sort_left_4573 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.header-e95d {
  text-align: center;
}

.mask-advanced-c0b8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-inner-02dc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary_next_4e95 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.cold-4201 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.copper_9f8b {
  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;
}

.copper_9f8b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.copper_9f8b:hover {
  box-shadow: var(--shadow-lg);
}

.copper_9f8b.hero-cf67 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.copper_9f8b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.copper_9f8b ul {
  margin: 1rem 0;
}

.copper_9f8b li {
  margin-bottom: 0.75rem;
}

.selected_e2db {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.outer-9484 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.outer-9484 a {
  font-weight: 600;
}

/* === Data Tables === */
.article_middle_b2e9 {
  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;
}

.article_middle_b2e9 table {
  width: 100%;
  min-width: 600px;
}

.article_middle_b2e9 thead {
  background-color: var(--primary-color);
  color: white;
}

.article_middle_b2e9 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.article_middle_b2e9 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.article_middle_b2e9 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.article_middle_b2e9 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.cold-0691 {
  list-style: none;
  margin: 1.5rem 0;
}

.cold-0691 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.cold-0691 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.background_8504::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-704b::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 === */
.box_north_9495 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gold_0efc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gold_0efc img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gold_0efc strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gold_0efc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_north_9495 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.frame_rough_0eed {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.frame_rough_0eed::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.orange_a863 {
  position: relative;
  margin-bottom: 3rem;
}

.cold-d7e3 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.cold-d7e3 .surface_full_ad04 {
  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;
}

.module_4778 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.module_4778 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.module_4778 ul {
  margin: 1rem 0;
}

.module_4778 li {
  margin-bottom: 0.75rem;
}

.small_4424 {
  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 === */
.breadcrumb_f437 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.breadcrumb_f437 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.module-e43b {
  list-style: none;
  margin: 1.5rem 0;
}

.module-e43b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.module-e43b a {
  font-weight: 600;
}

.header_c9ed {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.summary-tall-c1b3 {
  margin: 2.5rem 0;
}

.text_huge_9df2 {
  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;
}

.text_huge_9df2:hover {
  box-shadow: var(--shadow-lg);
}

.text_huge_9df2.form-ac58 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.mask_north_83d0 {
  flex-shrink: 0;
}

.mask_north_83d0 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);
}

.narrow_e7e6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.search-easy-1d5d,
.overlay_white_cb21,
.upper-8d07 {
  width: 100%;
  margin: 1.5rem 0;
}

.picture_red_04d4 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.picture_red_04d4 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.focus_389d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focus_389d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.light-912c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.light-912c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.item_tiny_e74f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.basic_263b {
  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;
}

.basic_263b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.basic_263b.row-soft-ee38 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.basic_263b .main-static-6e48 {
  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;
}

.basic_263b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.box_west_57a6 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.title-lite-a9be {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.title-lite-a9be label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.alert-hard-4c22 {
  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 === */
.card_lower_d1ae {
  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;
}

.notice-east-bab1 {
  background-color: var(--primary-color);
  color: white;
}

.notice-east-bab1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.paragraph_glass_cb5c {
  background-color: var(--text-secondary);
  color: white;
}

.paragraph_glass_cb5c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.header-black-1fbb {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header-black-1fbb:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.wrapper-small-8244 {
  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;
}

.wrapper-small-8244:hover {
  background-color: var(--primary-dark);
}

.detail-cold-73dc {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.image_north_b5cd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.preview-cf59 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.logo-slow-b4cb {
  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 === */
.menu-96f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wood-8268 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.wood-8268 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.footer-5692 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.heading-left-5375 {
  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;
}

.basic_0483 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.link-yellow-0f0d {
  list-style: none;
  counter-reset: rank-counter;
}

.link-yellow-0f0d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.link-yellow-0f0d 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;
}

.slider-91b7 {
  list-style: none;
}

.slider-91b7 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.up-9f2c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.glass-74f7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.glass-74f7 .status_cold_4cc2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.glass-74f7 .input_02ce {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion_slow_2c3e {
  margin-top: 3rem;
}

.hover-white-f424 {
  width: 100%;
}

.sidebar_dynamic_6fdb {
  background-color: #fef3c7;
}

.cool-c030 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.south-c16a {
  margin: 3rem 0;
}

.advanced-b421 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.alert_upper_9f44 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.alert_upper_9f44:hover {
  box-shadow: var(--shadow-lg);
}

.alert_upper_9f44.breadcrumb_b032 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.action-d098 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pink-4cd4 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pink-4cd4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper_hovered_06d3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert_upper_9f44 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.input-f944 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cold-787b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_b2bb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bright_209d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.banner-f637 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.focus-6b62 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.green-46aa {
  max-width: 900px;
  margin: 0 auto;
}

.logo_up_ffcb {
  margin: 2rem 0;
}

.narrow-e419 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.narrow-e419 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.narrow-e419 summary::-webkit-details-marker {
  display: none;
}

.narrow-e419 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.footer_pro_99b9 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.narrow-e419[open] .footer_pro_99b9 {
  transform: rotate(45deg);
}

.primary_pressed_b9a2 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.primary_pressed_b9a2 p:last-child {
  margin-bottom: 0;
}

.main-bottom-10b5 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.lower_fcac {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.filter_1a95 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.filter_1a95 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.filter_1a95 .card_lower_d1ae {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.down_2104 {
  max-width: 900px;
  margin: 0 auto;
}

.pattern-tiny-6245 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.title_mini_1d1c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.title_mini_1d1c.fn-success-704b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.video_pro_c8f5 {
  font-size: 3rem;
  line-height: 1;
}

.texture-hovered-dd59 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.shadow-east-5377 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.panel_a00a,
.slow-5bf8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.panel_a00a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.slow-5bf8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.popup-112e,
.plasma_f325 {
  margin: 1.5rem 0;
}

.popup-112e li,
.plasma_f325 li {
  margin-bottom: 1rem;
}

.large_df5b {
  margin: 3rem 0;
}

.panel-next-342c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.panel-next-342c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel-next-342c ol {
  margin: 1rem 0;
}

.panel-next-342c li {
  margin-bottom: 0.75rem;
}

.panel-easy-d76b {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.dropdown_dea7 {
  margin: 2rem 0;
}

.shadow_fluid_33b7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sidebar_glass_3ce5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.badge_action_a54a {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.tag-bright-f125 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.thumbnail_light_f348 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tooltip-iron-e88f {
  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;
}

.tooltip-iron-e88f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.hover-cfa3 {
  flex: 1;
}

.hover-cfa3 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.lite-ba6b {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.banner_thick_1f6d p {
  margin-bottom: 1rem;
}

.caption_2a03 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.box-a0f7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.sort_c5e4 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.sort_c5e4 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.sidebar_brown_6bb2 h3 {
  margin-bottom: 1.5rem;
}

.notification-d469 {
  display: grid;
  gap: 2rem;
}

.surface_6960 {
  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;
}

.surface_6960 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.surface_6960 h4 {
  margin: 0 0 0.25rem;
}

.surface_6960 p {
  margin: 0;
  font-size: 0.9375rem;
}

.last_6704 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.module-cold-e27c {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.module-cold-e27c h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.module-cold-e27c ul {
  margin: 1.5rem 0;
}

.module-cold-e27c li {
  margin-bottom: 0.75rem;
}

.element_up_b89d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.module_top_22b4 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.gold_e603 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.breadcrumb-e3d0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.breadcrumb-e3d0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.mask_687d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.mask_687d a {
  color: rgba(255, 255, 255, 0.8);
}

.pro_9df2 {
  list-style: none;
}

.pro_9df2 li {
  margin-bottom: 0.75rem;
}

.pro_9df2 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pro_9df2 a:hover {
  color: white;
}

.gallery_lower_a0d5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.badge_907f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.active-a27b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.frame_a47d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.label-active-6e53 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .logo_full_59b6 {
    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;
  }

  .gallery_31a8 {
    font-size: 1.5rem !important;
  }

  .pattern-8465 {
    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 */
  .copper_9f8b,
  .accordion_purple_631c,
  .module_4778,
  .narrow_e7e6,
  .action-d098,
  .alert_upper_9f44,
  .primary_pressed_b9a2,
  .container_next_9c29,
  .east-9a3e,
  .selected_6a74 {
    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 */
  .mask_7878 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-thick-e303 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .inner_3e2d {
    flex-shrink: 0;
  }

  .hover-cfa3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .yellow-48e7,
  .full-eca8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .full-eca8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .solid_c87a {
    display: none;
  }

  /* Show mobile actions */
  .inner_4877 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .icon_right_2bf4 {
    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;
  }

  .icon_right_2bf4 svg {
    flex-shrink: 0;
  }

  .icon_right_2bf4 .hard-bd3b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .icon_right_2bf4 .widget-wood-f1e8 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .yellow-1036 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tooltip_stone_ceab {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .icon_right_2bf4:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .border_lower_826d {
    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;
  }

  .border_lower_826d.fn-active-704b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .border_lower_826d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .border_lower_826d li:last-child {
    border-bottom: none;
  }

  .border_lower_826d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .red-a0f3 {
    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;
  }

  .red-a0f3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .red-a0f3 li:last-child {
    border-bottom: none;
  }

  .red-a0f3 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .next_bc6e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .stale_c999 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .box_red_52f4,
  .accordion_down_026c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .box_red_52f4 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .accordion_down_026c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .red-a0f3.fn-active-704b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .popup_074b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .accent_hot_24d8 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .notification_6ee9 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .row_last_625e {
    margin-top: 0;
  }

  /* Hero section */
  .row_last_625e {
    padding: 2rem 0 1.5rem;
  }

  .pattern-8465 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .east-9a3e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .tag-6ff3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bronze_fb3b {
    max-width: 100%;
    border-radius: 8px;
  }

  .small-e91b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dirty_9d48 {
    padding: 1rem;
  }

  .paper_0d47 {
    font-size: 1.5rem;
  }

  .modal_over_fe93 {
    font-size: 0.75rem;
  }

  .container_next_9c29 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .highlight_fluid_c8f4 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .highlight_fluid_c8f4 .card_lower_d1ae {
    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 */
  .section-f36d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .text_huge_9df2 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .mask_north_83d0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .mask-5d87 {
    flex-direction: column;
  }

  .tooltip-iron-e88f {
    flex-direction: column;
  }

  /* Quotes */
  .action-d098 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .shadow-east-5377 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .tag-bright-f125 {
    flex-direction: column;
  }

  .tag-bright-f125 .card_lower_d1ae {
    width: 100%;
  }

  /* Version comparison */
  .item_tiny_e74f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .menu-96f0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .gold_e603 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .active-a27b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .article_middle_b2e9,
  .overlay_white_cb21,
  .outline_5e7f,
  .hover-white-f424,
  .search-easy-1d5d,
  .upper-8d07 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .article_middle_b2e9 table,
  .overlay_white_cb21 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .alert-hard-4c22 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .logo_full_59b6 {
    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;
  }

  .gallery_31a8 {
    font-size: 1.25rem !important;
  }

  .pattern-8465 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .accent_hot_24d8 {
    position: fixed;
  }

  .notification_6ee9 {
    padding: 0.625rem 0;
  }

  .article-fa25 img {
    height: 26px;
  }

  .red-a0f3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .border_lower_826d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .icon_right_2bf4 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .icon_right_2bf4 svg {
    width: 18px;
    height: 18px;
  }

  .icon_right_2bf4 .hard-bd3b {
    font-size: 0.7rem;
  }

  .icon_right_2bf4 .widget-wood-f1e8 {
    font-size: 0.65rem;
  }

  .box_red_52f4,
  .accordion_down_026c {
    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, .logo_full_59b6, .last-db8a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .tag-6ff3 {
    padding: 1rem;
  }

  .small-e91b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dirty_9d48 {
    padding: 0.875rem;
  }

  .paper_0d47 {
    font-size: 1.25rem;
  }

  .highlight_fluid_c8f4 .card_lower_d1ae {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pattern-8465 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .card_lower_d1ae {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .detail-cold-73dc {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .text_huge_9df2 {
    padding: 1rem;
  }

  .mask_north_83d0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .copper_9f8b,
  .shade-d42a,
  .modal_white_68c1,
  .sidebar_dynamic_47a6 {
    padding: 1rem;
  }
}

@media print {
  .accent_hot_24d8,
  .pressed-1486,
  .popup_074b,
  .card_lower_d1ae,
  .module_top_22b4 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .logo_full_59b6 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.sidebar_8217 {
  margin-bottom: 3rem;
  text-align: center;
}

.gallery_31a8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.search-1e8c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.button_hovered_7b6e,
.form_6cdd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.panel-thick-3f06 {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.panel-thick-3f06:hover {
  transform: translateY(-5px);
}

.panel-thick-3f06 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.panel-thick-3f06 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.alert_85a0 {
  margin: 3rem 0;
}

.shade_static_0e64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.block_4392 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.block_4392:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.last_5e27 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gradient-9afd {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.upper_5988 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.shade_364e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.title_3c1f {
  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;
}

.title_3c1f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.title_3c1f.lite-f50a {
  border-left: 4px solid var(--primary-color);
}

.list-up-f3cc {
  flex-shrink: 0;
}

.list-up-f3cc svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.heading_1791 {
  flex: 1;
}

.heading_1791 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.active_eacf {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.thick_110f,
.center-d276,
.disabled_thick_1f36 {
  margin-bottom: 1.5rem;
}

.thick_110f h4,
.center-d276 h4,
.disabled_thick_1f36 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.thick_110f ul,
.center-d276 ul,
.disabled_thick_1f36 ul {
  list-style: none;
  padding: 0;
}

.thick_110f li,
.center-d276 li,
.disabled_thick_1f36 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.thick_110f li:before,
.center-d276 li:before,
.disabled_thick_1f36 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.inner-bf35 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.inner-bf35 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;
}

.inner-bf35 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.panel_pink_2402 { margin: 2rem 0; }
.tag-2984 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tag-2984 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.link_large_3ab3 p { margin-bottom: 1rem; line-height: 1.7; }
.link_large_3ab3 strong { color: var(--text-primary); }
.link_large_3ab3 ul { list-style: none; padding-left: 0; }
.link_large_3ab3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.link_large_3ab3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.highlight_1059 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.texture-9884 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.texture-9884:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.thick-c850 { font-size: 3rem; margin-bottom: 1rem; }
.texture-9884 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.texture-9884 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.notice_motion_a16b { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.notice_motion_a16b span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.picture-action-80ec { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.highlight-inner-ce80 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accordion_5201 { text-align: center; }
.link-abe3 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.highlight_7a9a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.main-b1c0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.border-85c6 { margin: 2rem 0; }
.inner_63d8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.inner_63d8 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.inner_63d8 p, .inner_63d8 ul { line-height: 1.7; }
.inner_63d8 ul { list-style: none; padding-left: 0; }
.inner_63d8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.inner_63d8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.modal_right_8e65 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.black_ff22 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.widget_glass_2906 { text-align: center; }
.gold_6575 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.badge_fa1e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.label_green_2ac5 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.tall-490f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.column_cold_f7a0 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.column_cold_f7a0:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.column_cold_f7a0 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.column_cold_f7a0 p, .column_cold_f7a0 ul { line-height: 1.7; }
.column_cold_f7a0 ul { list-style: none; padding-left: 0; }
.column_cold_f7a0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.column_cold_f7a0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e7b9 */
.ghost-box-r5 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
