/* ============================================
   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 */
.logo-0d01 p,
.basic_aaa0,
.thick-a4b2,
.wood-9cdb,
.shadow_341a,
.in-6439,
.dropdown_brown_fe80,
.focus-thick-15be {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.dim_e295 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.dim_e295 > *,
.component-9f64,
.logo-0d01,
.background-ab23 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .dim_e295 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .dim_e295 {
    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 === */
.basic-981a {
  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 */
.basic-981a.focused-ca41 {
  box-shadow: var(--shadow-md);
}

.icon-hot-dc39 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.silver-d610 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.aside-2575 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.border-hovered-78f8 {
  display: none;
}

/* Hide mobile actions on desktop */
.header_solid_7fc6 {
  display: none;
}

.gold-7df3 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.gold-7df3 a:hover,
.gold-7df3 a.fn-active-3acf {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.input_cold_7dfb {
  margin-left: 1rem;
}

.photo_9406 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.focus_4901,
.primary_upper_076b {
  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;
}

.focus_4901 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.focus_4901: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;
}

.primary_upper_076b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.primary_upper_076b: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;
}

.focus_4901 svg,
.primary_upper_076b svg {
  flex-shrink: 0;
}

.primary_hard_dbed {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.highlight_6132 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.highlight_6132::before,
.highlight_6132::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.highlight_6132::before {
  top: -7px;
}

.highlight_6132::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.disabled-under-4a2f {
  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 === */
.hover_soft_d9e4 {
  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);
}

.photo_solid_be2e {
  margin: 0 0 2rem;
  text-align: center;
}

.breadcrumb-right-272a {
  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;
}

.breadcrumb-right-272a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.banner-dd78 {
  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);
}

.banner-dd78 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.orange-4fb8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tabs_ba55 {
  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;
}

.tabs_ba55:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card_new_db6c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.element_1d12 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.video_outer_cb95 {
  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);
}

.video_outer_cb95 .item-white-85d3 {
  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;
}

.video_outer_cb95 .item-white-85d3 svg {
  flex-shrink: 0;
}

.video_outer_cb95 .green_71f4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.video_outer_cb95 .green_71f4: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);
}

.video_outer_cb95 .stale-2592 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.video_outer_cb95 .stale-2592: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) {
  .hover_soft_d9e4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .breadcrumb-right-272a {
    max-width: 100%;
  }

  .orange-4fb8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tabs_ba55 {
    padding: 1rem;
  }

  .card_new_db6c {
    font-size: 1.5rem;
  }

  .element_1d12 {
    font-size: 0.75rem;
  }

  .banner-dd78 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .video_outer_cb95 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .video_outer_cb95 .item-white-85d3 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .orange-4fb8 {
    grid-template-columns: 1fr;
  }
}

.carousel-0839 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.item-09a7 {
  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 === */
.selected-0259 {
  margin-bottom: 2.5rem;
}

.logo-purple-20a6 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.carousel-0839 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.current_6dcb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.out-ed61 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.mask_glass_ef63 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.element_soft_ec45 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.paper_7faf {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.gallery-fresh-bdc8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay-cb86 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay-cb86 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.active_c2e8 {
  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);
}

.first_a5ed {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.over-5ac6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.west-aa96 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.sidebar-ef06 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.logo_7663 {
  display: grid;
  gap: 1rem;
}

.aside-707a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.west-5b67 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fixed-aad3 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.pattern_white_583f {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.fast-534e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.label_west_eede {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label_west_eede p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.basic_aaa0 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.badge-basic-7071 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.filter_green_adab {
  display: grid;
  gap: 2rem;
}

.advanced_1a48 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.out-ed61 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.current_6dcb {
  flex: 1;
}

.element_soft_ec45 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.element_soft_ec45 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.list-lite-a7d6 {
  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;
}

.paper_7faf {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.texture_23f4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.texture_23f4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.preview-4875 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.preview-4875 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.layout_stone_1162 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.layout_stone_1162 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.layout_stone_1162 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.layout_stone_1162 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pink_1f45 {
  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 === */
.media_bc6c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.fast-8c8c {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.alert-31d1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.accordion-first-76cb h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.accordion-first-76cb ol {
  list-style: none;
  counter-reset: toc-counter;
}

.accordion-first-76cb ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.accordion-first-76cb 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;
}

.accordion-first-76cb ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.accordion-first-76cb ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.logo-0d01 {
  padding: 3rem 0 5rem;
}

.background-ab23 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.background-ab23.middle-f098 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.thick-a4b2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.silver_acf0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.focus-3aae {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.focus-3aae h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.backdrop_ccc5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.disabled_black_0c95 {
  text-align: center;
}

.frame_d3a3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.disabled-a677 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary_976e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.in-6439 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.wood-9cdb {
  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;
}

.wood-9cdb * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.wood-9cdb:hover {
  box-shadow: var(--shadow-lg);
}

.wood-9cdb.media-4727 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.wood-9cdb h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.wood-9cdb ul {
  margin: 1rem 0;
}

.wood-9cdb li {
  margin-bottom: 0.75rem;
}

.rough_ccb8 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wrapper-f035 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wrapper-f035 a {
  font-weight: 600;
}

/* === Data Tables === */
.breadcrumb_ac5d {
  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;
}

.breadcrumb_ac5d table {
  width: 100%;
  min-width: 600px;
}

.breadcrumb_ac5d thead {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb_ac5d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.breadcrumb_ac5d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb_ac5d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.breadcrumb_ac5d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.focused-c020 {
  list-style: none;
  margin: 1.5rem 0;
}

.focused-c020 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.focused-c020 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.accordion-25cf::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-3acf::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 === */
.wide_6312 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gradient_blue_7cf4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gradient_blue_7cf4 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gradient_blue_7cf4 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gradient_blue_7cf4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wide_6312 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.dropdown_brown_fe80 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.dropdown_brown_fe80::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pattern-tiny-82e3 {
  position: relative;
  margin-bottom: 3rem;
}

.frame-e96c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.frame-e96c .form_20e5 {
  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-fresh-637d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.item-fresh-637d h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.item-fresh-637d ul {
  margin: 1rem 0;
}

.item-fresh-637d li {
  margin-bottom: 0.75rem;
}

.shade_a357 {
  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 === */
.component-pressed-84a1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.component-pressed-84a1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.texture-copper-17cb {
  list-style: none;
  margin: 1.5rem 0;
}

.texture-copper-17cb li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.texture-copper-17cb a {
  font-weight: 600;
}

.section_left_9962 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.focus-thick-15be {
  margin: 2.5rem 0;
}

.block_rough_bc42 {
  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;
}

.block_rough_bc42:hover {
  box-shadow: var(--shadow-lg);
}

.block_rough_bc42.row_copper_d027 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.primary_8f0f {
  flex-shrink: 0;
}

.primary_8f0f 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);
}

.wood-d9d6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.right-a9e6,
.silver_7cab,
.gradient-first-e885 {
  width: 100%;
  margin: 1.5rem 0;
}

.status_active_a528 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.status_active_a528 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.aside-1520 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.aside-1520 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.overlay_7b6d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.overlay_7b6d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hard_39a7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bottom-1f9a {
  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;
}

.bottom-1f9a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bottom-1f9a.accent-b58e {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.bottom-1f9a .hover-ba6d {
  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;
}

.bottom-1f9a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.notice-over-13f6 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.grid_e179 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.grid_e179 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.surface-green-3468 {
  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 === */
.item-white-85d3 {
  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;
}

.green_71f4 {
  background-color: var(--primary-color);
  color: white;
}

.green_71f4:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.stale-2592 {
  background-color: var(--text-secondary);
  color: white;
}

.stale-2592:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.summary-2280 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.summary-2280:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.yellow-f0bd {
  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;
}

.yellow-f0bd:hover {
  background-color: var(--primary-dark);
}

.input-wide-32de {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.pro_7d55 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.logo-inner-4b94 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.description_dynamic_f25c {
  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 === */
.outline_bottom_3318 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.outline-up-cffa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.outline-up-cffa h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.message-d8fb {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.bright_1847 {
  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;
}

.slider_f209 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.focused_40b0 {
  list-style: none;
  counter-reset: rank-counter;
}

.focused_40b0 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.focused_40b0 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;
}

.summary-steel-539a {
  list-style: none;
}

.summary-steel-539a li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.video_2802 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.medium_8d48 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.medium_8d48 .pro_a9a5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.medium_8d48 .picture-95f1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.summary-9f75 {
  margin-top: 3rem;
}

.purple-a2f2 {
  width: 100%;
}

.panel_8335 {
  background-color: #fef3c7;
}

.pagination_dim_c280 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.detail_white_dae9 {
  margin: 3rem 0;
}

.notification-c4fa {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hover-stale-0fd8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hover-stale-0fd8:hover {
  box-shadow: var(--shadow-lg);
}

.hover-stale-0fd8.message_large_9c85 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.section-7e52 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.accordion_over_023f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.accordion_over_023f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-ccd0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover-stale-0fd8 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.modal_2ead {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article_orange_0ae1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.filter-43e5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fresh-37a0 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge_silver_2246 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.video-small-31cd {
  margin-top: 1rem;
}

/* === FAQ Section === */
.article-bb80 {
  max-width: 900px;
  margin: 0 auto;
}

.primary-d344 {
  margin: 2rem 0;
}

.hard-974c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hard-974c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.hard-974c summary::-webkit-details-marker {
  display: none;
}

.hard-974c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.chip_lower_67f3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hard-974c[open] .chip_lower_67f3 {
  transform: rotate(45deg);
}

.hard-3cd3 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hard-3cd3 p:last-child {
  margin-bottom: 0;
}

.heading-9f2d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.secondary-0e88 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.link-black-6d43 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.link-black-6d43 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.link-black-6d43 .item-white-85d3 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.short_07ab {
  max-width: 900px;
  margin: 0 auto;
}

.heading_stone_a584 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.row-plasma-6508 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.row-plasma-6508.fn-success-3acf {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.focus-current-11d7 {
  font-size: 3rem;
  line-height: 1;
}

.dynamic_990b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.label-tiny-ca9e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.panel_cold_1aca,
.plasma_cc8f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.panel_cold_1aca h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.plasma_cc8f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.glass_3378,
.breadcrumb_gas_0067 {
  margin: 1.5rem 0;
}

.glass_3378 li,
.breadcrumb_gas_0067 li {
  margin-bottom: 1rem;
}

.motion-5fe2 {
  margin: 3rem 0;
}

.content_3d40 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content_3d40 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.content_3d40 ol {
  margin: 1rem 0;
}

.content_3d40 li {
  margin-bottom: 0.75rem;
}

.panel-5442 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.photo-pro-7f45 {
  margin: 2rem 0;
}

.outer-bfa5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pressed-e130 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.last-7bd0 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.summary_7010 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.component_green_252c {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.input_18a6 {
  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;
}

.input_18a6 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.mask_glass_ef63 {
  flex: 1;
}

.mask_glass_ef63 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.detail-f267 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.selected-4fa4 p {
  margin-bottom: 1rem;
}

.surface_over_8b2b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.label_1182 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.disabled-b156 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.disabled-b156 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.grid_dim_9602 h3 {
  margin-bottom: 1.5rem;
}

.tag_steel_ee05 {
  display: grid;
  gap: 2rem;
}

.sidebar_1835 {
  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_1835 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.sidebar_1835 h4 {
  margin: 0 0 0.25rem;
}

.sidebar_1835 p {
  margin: 0;
  font-size: 0.9375rem;
}

.border_inner_ca77 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.primary_7805 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.primary_7805 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.primary_7805 ul {
  margin: 1.5rem 0;
}

.primary_7805 li {
  margin-bottom: 0.75rem;
}

.active-wide-f9bc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.advanced-8e05 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.bright-eef3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.orange-b2d5 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.orange-b2d5 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.icon-complex-de3d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.icon-complex-de3d a {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown_91ae {
  list-style: none;
}

.dropdown_91ae li {
  margin-bottom: 0.75rem;
}

.dropdown_91ae a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.dropdown_91ae a:hover {
  color: white;
}

.block_6fd5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.rough_873f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.article_7be6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.summary-static-7c09 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.liquid_41c5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .dim_e295 {
    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;
  }

  .glass_f8ec {
    font-size: 1.5rem !important;
  }

  .logo-purple-20a6 {
    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 */
  .wood-9cdb,
  .shadow_341a,
  .item-fresh-637d,
  .wood-d9d6,
  .section-7e52,
  .hover-stale-0fd8,
  .hard-3cd3,
  .banner-dd78,
  .basic_aaa0,
  .thick-a4b2 {
    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 */
  .carousel-0839 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .current_6dcb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .out-ed61 {
    flex-shrink: 0;
  }

  .mask_glass_ef63 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .element_soft_ec45,
  .paper_7faf {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .paper_7faf {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .aside-2575 {
    display: none;
  }

  /* Show mobile actions */
  .header_solid_7fc6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .gradient_complex_96a1 {
    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;
  }

  .gradient_complex_96a1 svg {
    flex-shrink: 0;
  }

  .gradient_complex_96a1 .prev-175d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .gradient_complex_96a1 .orange-6018 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .bright-9c26 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .title_mini_aff1 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .gradient_complex_96a1:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .border-hovered-78f8 {
    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-hovered-78f8.fn-active-3acf {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .border-hovered-78f8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .border-hovered-78f8 li:last-child {
    border-bottom: none;
  }

  .border-hovered-78f8 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .gold-7df3 {
    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;
  }

  .gold-7df3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .gold-7df3 li:last-child {
    border-bottom: none;
  }

  .gold-7df3 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .input_cold_7dfb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .photo_9406 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .focus_4901,
  .primary_upper_076b {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .focus_4901 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .primary_upper_076b {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .gold-7df3.fn-active-3acf {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary_hard_dbed {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .basic-981a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .icon-hot-dc39 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .disabled-under-4a2f {
    margin-top: 0;
  }

  /* Hero section */
  .disabled-under-4a2f {
    padding: 2rem 0 1.5rem;
  }

  .logo-purple-20a6 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .basic_aaa0 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hover_soft_d9e4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .breadcrumb-right-272a {
    max-width: 100%;
    border-radius: 8px;
  }

  .orange-4fb8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tabs_ba55 {
    padding: 1rem;
  }

  .card_new_db6c {
    font-size: 1.5rem;
  }

  .element_1d12 {
    font-size: 0.75rem;
  }

  .banner-dd78 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .video_outer_cb95 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .video_outer_cb95 .item-white-85d3 {
    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 */
  .alert-31d1 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .block_rough_bc42 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .primary_8f0f {
    margin-bottom: 1rem;
  }

  /* Author */
  .advanced_1a48 {
    flex-direction: column;
  }

  .input_18a6 {
    flex-direction: column;
  }

  /* Quotes */
  .section-7e52 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .label-tiny-ca9e {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .summary_7010 {
    flex-direction: column;
  }

  .summary_7010 .item-white-85d3 {
    width: 100%;
  }

  /* Version comparison */
  .hard_39a7 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .outline_bottom_3318 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .bright-eef3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article_7be6 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .breadcrumb_ac5d,
  .silver_7cab,
  .input_slow_feef,
  .purple-a2f2,
  .right-a9e6,
  .gradient-first-e885 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb_ac5d table,
  .silver_7cab table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .surface-green-3468 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .dim_e295 {
    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;
  }

  .glass_f8ec {
    font-size: 1.25rem !important;
  }

  .logo-purple-20a6 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .basic-981a {
    position: fixed;
  }

  .icon-hot-dc39 {
    padding: 0.625rem 0;
  }

  .silver-d610 img {
    height: 26px;
  }

  .gold-7df3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .border-hovered-78f8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .gradient_complex_96a1 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .gradient_complex_96a1 svg {
    width: 18px;
    height: 18px;
  }

  .gradient_complex_96a1 .prev-175d {
    font-size: 0.7rem;
  }

  .gradient_complex_96a1 .orange-6018 {
    font-size: 0.65rem;
  }

  .focus_4901,
  .primary_upper_076b {
    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, .dim_e295, .component-9f64, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hover_soft_d9e4 {
    padding: 1rem;
  }

  .orange-4fb8 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tabs_ba55 {
    padding: 0.875rem;
  }

  .card_new_db6c {
    font-size: 1.25rem;
  }

  .video_outer_cb95 .item-white-85d3 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .logo-purple-20a6 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .item-white-85d3 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .input-wide-32de {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .block_rough_bc42 {
    padding: 1rem;
  }

  .primary_8f0f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .wood-9cdb,
  .title_3e8a,
  .focus_44fa,
  .photo-gold-7d08 {
    padding: 1rem;
  }
}

@media print {
  .basic-981a,
  .media_bc6c,
  .primary_hard_dbed,
  .item-white-85d3,
  .advanced-8e05 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .dim_e295 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gallery_down_8a72 {
  margin-bottom: 3rem;
  text-align: center;
}

.glass_f8ec {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.button_2df5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hot-9d1d,
.grid-b2cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fresh-8f33 {
  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;
}

.fresh-8f33:hover {
  transform: translateY(-5px);
}

.fresh-8f33 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.fresh-8f33 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.notice_3f4d {
  margin: 3rem 0;
}

.widget-54ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north-bbb2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.north-bbb2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.widget-2228 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.south_4f53 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.content_warm_6043 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.message-paper-6c70 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.overlay_c6ba {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.overlay_c6ba:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.overlay_c6ba.nav-97d9 {
  border-left: 4px solid var(--primary-color);
}

.gold_a869 {
  flex-shrink: 0;
}

.gold_a869 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.menu_2283 {
  flex: 1;
}

.menu_2283 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.badge-9426 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.notification_light_62f6,
.row_d657,
.mask-2b9c {
  margin-bottom: 1.5rem;
}

.notification_light_62f6 h4,
.row_d657 h4,
.mask-2b9c h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification_light_62f6 ul,
.row_d657 ul,
.mask-2b9c ul {
  list-style: none;
  padding: 0;
}

.notification_light_62f6 li,
.row_d657 li,
.mask-2b9c li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.notification_light_62f6 li:before,
.row_d657 li:before,
.mask-2b9c li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.under_af19 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.under_af19 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;
}

.under_af19 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.breadcrumb_lower_f7a4 { margin: 2rem 0; }
.message_hot_7439 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.message_hot_7439 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.thumbnail_hovered_cd62 p { margin-bottom: 1rem; line-height: 1.7; }
.thumbnail_hovered_cd62 strong { color: var(--text-primary); }
.thumbnail_hovered_cd62 ul { list-style: none; padding-left: 0; }
.thumbnail_hovered_cd62 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thumbnail_hovered_cd62 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.paragraph_0e3b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pagination-short-1790 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.pagination-short-1790:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.outline_soft_8c9a { font-size: 3rem; margin-bottom: 1rem; }
.pagination-short-1790 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.pagination-short-1790 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.block-23cd { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.block-23cd span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.article-a872 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.image_b249 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.basic-551c { text-align: center; }
.surface_pressed_2979 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.widget_complex_c07f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.box-f415 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.pagination_hard_da65 { margin: 2rem 0; }
.slider-fluid-9178 { 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-fluid-9178 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.slider-fluid-9178 p, .slider-fluid-9178 ul { line-height: 1.7; }
.slider-fluid-9178 ul { list-style: none; padding-left: 0; }
.slider-fluid-9178 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider-fluid-9178 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.in_0716 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.info_in_65e4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.grid_7549 { text-align: center; }
.action_b9d4 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.full-57c5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.panel-lite-357c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.texture-under-2127 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.badge_2dad { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.badge_2dad:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.badge_2dad h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.badge_2dad p, .badge_2dad ul { line-height: 1.7; }
.badge_2dad ul { list-style: none; padding-left: 0; }
.badge_2dad ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.badge_2dad ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2dbb */
.shadow-element-l8 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.3;
}
