/* ============================================
   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 */
.modal_up_7933 p,
.search_c617,
.paper_fc8e,
.sidebar_green_b4c4,
.logo_purple_a617,
.component_27bf,
.container_lower_35d4,
.header_hard_f608 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.iron_0e4a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.iron_0e4a > *,
.gradient-6429,
.modal_up_7933,
.disabled-4cb6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .iron_0e4a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .iron_0e4a {
    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 === */
.header-a511 {
  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 */
.header-a511.item-21ca {
  box-shadow: var(--shadow-md);
}

.label-ef82 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.table_ad0d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.frame-f2ce {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.table_cb6c {
  display: none;
}

/* Hide mobile actions on desktop */
.photo_a855 {
  display: none;
}

.north_1593 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.north_1593 a:hover,
.north_1593 a.fn-active-bdea {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.main-8fac {
  margin-left: 1rem;
}

.frame-cd38 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.component-aa5d,
.warm_29a5 {
  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;
}

.component-aa5d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.component-aa5d: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;
}

.warm_29a5 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.warm_29a5: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;
}

.component-aa5d svg,
.warm_29a5 svg {
  flex-shrink: 0;
}

.text-down-9716 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.silver-a240 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.silver-a240::before,
.silver-a240::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.silver-a240::before {
  top: -7px;
}

.silver-a240::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.west_f6e6 {
  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 === */
.hot-40a2 {
  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);
}

.tabs_light_8b10 {
  margin: 0 0 2rem;
  text-align: center;
}

.pro-b298 {
  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;
}

.pro-b298:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.chip-5311 {
  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);
}

.chip-5311 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.layout-e0ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.narrow-2030 {
  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;
}

.narrow-2030:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tag-d2f4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form_4b93 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.breadcrumb_purple_33b4 {
  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);
}

.breadcrumb_purple_33b4 .background-77a5 {
  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;
}

.breadcrumb_purple_33b4 .background-77a5 svg {
  flex-shrink: 0;
}

.breadcrumb_purple_33b4 .primary_f36b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.breadcrumb_purple_33b4 .primary_f36b: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);
}

.breadcrumb_purple_33b4 .mask_copper_7e24 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.breadcrumb_purple_33b4 .mask_copper_7e24: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) {
  .hot-40a2 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pro-b298 {
    max-width: 100%;
  }

  .layout-e0ca {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .narrow-2030 {
    padding: 1rem;
  }

  .tag-d2f4 {
    font-size: 1.5rem;
  }

  .form_4b93 {
    font-size: 0.75rem;
  }

  .chip-5311 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .breadcrumb_purple_33b4 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .breadcrumb_purple_33b4 .background-77a5 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .layout-e0ca {
    grid-template-columns: 1fr;
  }
}

.heading_c669 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.medium-7ccc {
  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 === */
.warm_b387 {
  margin-bottom: 2.5rem;
}

.table-1b88 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.heading_c669 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.smooth-4279 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breadcrumb-0a0d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.pattern-upper-f526 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.selected-ad15 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.mask_b47f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.new_488a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini-c10c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini-c10c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.slow-af04 {
  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);
}

.bottom-1912 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.hero_warm_76e2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern_rough_9e62 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.backdrop-complex-7bc9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.button_da89 {
  display: grid;
  gap: 1rem;
}

.alert_56c7 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.middle_da31 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.large-175e {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.overlay_1316 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.inner_df73 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.tooltip_65aa {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tooltip_65aa p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.search_c617 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter-0bf2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.wood-0297 {
  display: grid;
  gap: 2rem;
}

.feature-copper-f3c3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.breadcrumb-0a0d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.smooth-4279 {
  flex: 1;
}

.selected-ad15 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.selected-ad15 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.text_advanced_6d95 {
  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;
}

.mask_b47f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.panel_tiny_19af {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.panel_tiny_19af span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.media_db89 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.media_db89 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.pagination_947e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pagination_947e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.pagination_947e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pagination_947e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.disabled-north-54b1 {
  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 === */
.modal-pro-942d {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pink-642d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.block-in-f651 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info_bronze_66e9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.info_bronze_66e9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.info_bronze_66e9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.info_bronze_66e9 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;
}

.info_bronze_66e9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.info_bronze_66e9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.modal_up_7933 {
  padding: 3rem 0 5rem;
}

.disabled-4cb6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.disabled-4cb6.tag-f6d3 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.paper_fc8e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.description-6005 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.wrapper-hard-3f7d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.wrapper-hard-3f7d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.focused_f249 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.current_c069 {
  text-align: center;
}

.image-095b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout_0f8a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.out_b19b {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.component_27bf {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.sidebar_green_b4c4 {
  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;
}

.sidebar_green_b4c4 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sidebar_green_b4c4:hover {
  box-shadow: var(--shadow-lg);
}

.sidebar_green_b4c4.badge-8441 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.sidebar_green_b4c4 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.sidebar_green_b4c4 ul {
  margin: 1rem 0;
}

.sidebar_green_b4c4 li {
  margin-bottom: 0.75rem;
}

.yellow-cc0e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.soft-35d6 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.soft-35d6 a {
  font-weight: 600;
}

/* === Data Tables === */
.prev_2e78 {
  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;
}

.prev_2e78 table {
  width: 100%;
  min-width: 600px;
}

.prev_2e78 thead {
  background-color: var(--primary-color);
  color: white;
}

.prev_2e78 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.prev_2e78 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.prev_2e78 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.prev_2e78 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.breadcrumb-fluid-7017 {
  list-style: none;
  margin: 1.5rem 0;
}

.breadcrumb-fluid-7017 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.breadcrumb-fluid-7017 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.notice_fast_ebb9::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-bdea::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 === */
.tall-9db5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.highlight-fluid-8b45 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.highlight-fluid-8b45 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.highlight-fluid-8b45 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.highlight-fluid-8b45 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tall-9db5 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.container_lower_35d4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.container_lower_35d4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.message-e362 {
  position: relative;
  margin-bottom: 3rem;
}

.summary_short_e128 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.summary_short_e128 .highlight-middle-8383 {
  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;
}

.red-5731 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.red-5731 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.red-5731 ul {
  margin: 1rem 0;
}

.red-5731 li {
  margin-bottom: 0.75rem;
}

.accent-c26e {
  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 === */
.overlay-stone-c9bb {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.overlay-stone-c9bb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.top_9596 {
  list-style: none;
  margin: 1.5rem 0;
}

.top_9596 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.top_9596 a {
  font-weight: 600;
}

.secondary_active_d4c2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.header_hard_f608 {
  margin: 2.5rem 0;
}

.image_yellow_62cf {
  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;
}

.image_yellow_62cf:hover {
  box-shadow: var(--shadow-lg);
}

.image_yellow_62cf.stale-19d9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.shadow_hard_cbef {
  flex-shrink: 0;
}

.shadow_hard_cbef 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);
}

.form_light_cc91 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.upper_7fd3,
.lower_8119,
.element-upper-2e7b {
  width: 100%;
  margin: 1.5rem 0;
}

.focused_c35a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.focused_c35a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.alert-paper-d861 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.alert-paper-d861 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.nav-right-5d9a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.nav-right-5d9a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.thumbnail-liquid-7ee8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accent-a666 {
  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;
}

.accent-a666:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accent-a666.dark-6eee {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accent-a666 .link_steel_b791 {
  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;
}

.accent-a666 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pink_187e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.focused_01f2 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.focused_01f2 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.new-62d6 {
  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 === */
.background-77a5 {
  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;
}

.primary_f36b {
  background-color: var(--primary-color);
  color: white;
}

.primary_f36b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.mask_copper_7e24 {
  background-color: var(--text-secondary);
  color: white;
}

.mask_copper_7e24:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.in-9253 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.in-9253:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.south_7078 {
  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;
}

.south_7078:hover {
  background-color: var(--primary-dark);
}

.dirty-c046 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.picture_glass_ac2e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.solid_758a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.breadcrumb-pressed-0d94 {
  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 === */
.element_light_42db {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pattern-fresh-b872 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.pattern-fresh-b872 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.article-3006 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shade-right-1099 {
  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;
}

.primary_dirty_f5c6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.stale-f243 {
  list-style: none;
  counter-reset: rank-counter;
}

.stale-f243 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.stale-f243 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;
}

.hover_solid_303d {
  list-style: none;
}

.hover_solid_303d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.sidebar-8653 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.label-west-95ba {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.label-west-95ba .widget-glass-1ef0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.label-west-95ba .soft_cecb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pagination_33fe {
  margin-top: 3rem;
}

.texture_out_d09d {
  width: 100%;
}

.pressed_d70c {
  background-color: #fef3c7;
}

.out-8ded {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.media_11df {
  margin: 3rem 0;
}

.summary-top-f387 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.box_under_3fd3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.box_under_3fd3:hover {
  box-shadow: var(--shadow-lg);
}

.box_under_3fd3.highlight_glass_b764 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.caption-solid-06ee {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.breadcrumb_29e9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.breadcrumb_29e9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-brown-b02f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_under_3fd3 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.widget-a478 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-soft-a98d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.solid-5ca7 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.next_f846 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.rough-de70 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.shadow_bright_b0eb {
  margin-top: 1rem;
}

/* === FAQ Section === */
.liquid-3694 {
  max-width: 900px;
  margin: 0 auto;
}

.west-b4a2 {
  margin: 2rem 0;
}

.copper_387a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.copper_387a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.copper_387a summary::-webkit-details-marker {
  display: none;
}

.copper_387a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.picture_e6d3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.copper_387a[open] .picture_e6d3 {
  transform: rotate(45deg);
}

.complex_ea53 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.complex_ea53 p:last-child {
  margin-bottom: 0;
}

.link_ffed {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.table-old-180f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.heading_steel_a136 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.heading_steel_a136 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.heading_steel_a136 .background-77a5 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.basic-b4e6 {
  max-width: 900px;
  margin: 0 auto;
}

.sidebar_pressed_3016 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.copper_4db8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.copper_4db8.fn-success-bdea {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.slider-cf5c {
  font-size: 3rem;
  line-height: 1;
}

.brown_1393 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.gallery_cold_79cd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.block_5c4e,
.prev-8daf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.block_5c4e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.prev-8daf h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.box_large_3bef,
.wrapper_orange_0bfa {
  margin: 1.5rem 0;
}

.box_large_3bef li,
.wrapper_orange_0bfa li {
  margin-bottom: 1rem;
}

.active-down-1daf {
  margin: 3rem 0;
}

.border_steel_b4b7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.border_steel_b4b7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.border_steel_b4b7 ol {
  margin: 1rem 0;
}

.border_steel_b4b7 li {
  margin-bottom: 0.75rem;
}

.stale-2d03 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.table_clean_0135 {
  margin: 2rem 0;
}

.main_wide_f27e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.focus_lower_6ec2 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.detail-252b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.alert_87d8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.sort-hot-a10f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.image_32c2 {
  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;
}

.image_32c2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.pattern-upper-f526 {
  flex: 1;
}

.pattern-upper-f526 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.sort-active-89a8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.accent_gold_4fd7 p {
  margin-bottom: 1rem;
}

.list_glass_562f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.sort-0b80 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.overlay_35a6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.overlay_35a6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.primary_stale_5400 h3 {
  margin-bottom: 1.5rem;
}

.card_fast_6703 {
  display: grid;
  gap: 2rem;
}

.popup-inner-2658 {
  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;
}

.popup-inner-2658 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.popup-inner-2658 h4 {
  margin: 0 0 0.25rem;
}

.popup-inner-2658 p {
  margin: 0;
  font-size: 0.9375rem;
}

.notice_f9c9 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hard-ad67 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hard-ad67 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard-ad67 ul {
  margin: 1.5rem 0;
}

.hard-ad67 li {
  margin-bottom: 0.75rem;
}

.list-e427 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.focused_66e7 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.action_bd7f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.glass_d9f4 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.glass_d9f4 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.row-4ce3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.row-4ce3 a {
  color: rgba(255, 255, 255, 0.8);
}

.detail-c039 {
  list-style: none;
}

.detail-c039 li {
  margin-bottom: 0.75rem;
}

.detail-c039 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.detail-c039 a:hover {
  color: white;
}

.active_0afa {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.component-0d63 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.gradient_action_34e7 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.caption_4237 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.preview_cf70 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .iron_0e4a {
    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;
  }

  .primary-huge-556b {
    font-size: 1.5rem !important;
  }

  .table-1b88 {
    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 */
  .sidebar_green_b4c4,
  .logo_purple_a617,
  .red-5731,
  .form_light_cc91,
  .caption-solid-06ee,
  .box_under_3fd3,
  .complex_ea53,
  .chip-5311,
  .search_c617,
  .paper_fc8e {
    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 */
  .heading_c669 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .smooth-4279 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .breadcrumb-0a0d {
    flex-shrink: 0;
  }

  .pattern-upper-f526 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .selected-ad15,
  .mask_b47f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .mask_b47f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .frame-f2ce {
    display: none;
  }

  /* Show mobile actions */
  .photo_a855 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .backdrop_1e25 {
    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;
  }

  .backdrop_1e25 svg {
    flex-shrink: 0;
  }

  .backdrop_1e25 .progress_stale_bf8c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .backdrop_1e25 .east-83a8 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .active_3f23 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .background-thick-d131 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .backdrop_1e25:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .table_cb6c {
    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;
  }

  .table_cb6c.fn-active-bdea {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .table_cb6c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .table_cb6c li:last-child {
    border-bottom: none;
  }

  .table_cb6c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .north_1593 {
    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;
  }

  .north_1593 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .north_1593 li:last-child {
    border-bottom: none;
  }

  .north_1593 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .main-8fac {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .frame-cd38 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .component-aa5d,
  .warm_29a5 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .component-aa5d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .warm_29a5 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .north_1593.fn-active-bdea {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .text-down-9716 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .header-a511 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .label-ef82 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .west_f6e6 {
    margin-top: 0;
  }

  /* Hero section */
  .west_f6e6 {
    padding: 2rem 0 1.5rem;
  }

  .table-1b88 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .search_c617 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hot-40a2 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pro-b298 {
    max-width: 100%;
    border-radius: 8px;
  }

  .layout-e0ca {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .narrow-2030 {
    padding: 1rem;
  }

  .tag-d2f4 {
    font-size: 1.5rem;
  }

  .form_4b93 {
    font-size: 0.75rem;
  }

  .chip-5311 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .breadcrumb_purple_33b4 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .breadcrumb_purple_33b4 .background-77a5 {
    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 */
  .block-in-f651 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .image_yellow_62cf {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .shadow_hard_cbef {
    margin-bottom: 1rem;
  }

  /* Author */
  .feature-copper-f3c3 {
    flex-direction: column;
  }

  .image_32c2 {
    flex-direction: column;
  }

  /* Quotes */
  .caption-solid-06ee {
    flex-direction: column;
  }

  /* Pros/Cons */
  .gallery_cold_79cd {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .alert_87d8 {
    flex-direction: column;
  }

  .alert_87d8 .background-77a5 {
    width: 100%;
  }

  /* Version comparison */
  .thumbnail-liquid-7ee8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .element_light_42db {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .action_bd7f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gradient_action_34e7 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .prev_2e78,
  .lower_8119,
  .item_a141,
  .texture_out_d09d,
  .upper_7fd3,
  .element-upper-2e7b {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prev_2e78 table,
  .lower_8119 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .new-62d6 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .iron_0e4a {
    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;
  }

  .primary-huge-556b {
    font-size: 1.25rem !important;
  }

  .table-1b88 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .header-a511 {
    position: fixed;
  }

  .label-ef82 {
    padding: 0.625rem 0;
  }

  .table_ad0d img {
    height: 26px;
  }

  .north_1593 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .table_cb6c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .backdrop_1e25 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .backdrop_1e25 svg {
    width: 18px;
    height: 18px;
  }

  .backdrop_1e25 .progress_stale_bf8c {
    font-size: 0.7rem;
  }

  .backdrop_1e25 .east-83a8 {
    font-size: 0.65rem;
  }

  .component-aa5d,
  .warm_29a5 {
    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, .iron_0e4a, .gradient-6429, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hot-40a2 {
    padding: 1rem;
  }

  .layout-e0ca {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .narrow-2030 {
    padding: 0.875rem;
  }

  .tag-d2f4 {
    font-size: 1.25rem;
  }

  .breadcrumb_purple_33b4 .background-77a5 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .table-1b88 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .background-77a5 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .dirty-c046 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .image_yellow_62cf {
    padding: 1rem;
  }

  .shadow_hard_cbef span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .sidebar_green_b4c4,
  .table-gas-d7d2,
  .component-a3d7,
  .summary-up-652a {
    padding: 1rem;
  }
}

@media print {
  .header-a511,
  .modal-pro-942d,
  .text-down-9716,
  .background-77a5,
  .focused_66e7 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .iron_0e4a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.motion-4270 {
  margin-bottom: 3rem;
  text-align: center;
}

.primary-huge-556b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.disabled_outer_1b1d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.container_current_a331,
.paragraph-fresh-10f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.image-huge-dc73 {
  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;
}

.image-huge-dc73:hover {
  transform: translateY(-5px);
}

.image-huge-dc73 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.image-huge-dc73 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.section_6181 {
  margin: 3rem 0;
}

.center_7fd9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pagination_5dbd {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pagination_5dbd:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.bottom_865d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.box_9eb9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.overlay_bottom_862a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.title-7672 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.component_cdfb {
  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;
}

.component_cdfb:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.component_cdfb.notice-under-ef4a {
  border-left: 4px solid var(--primary-color);
}

.short-d3c6 {
  flex-shrink: 0;
}

.short-d3c6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.hero_hovered_1adb {
  flex: 1;
}

.hero_hovered_1adb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.preview_3f9d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bronze-00f5,
.wrapper-easy-fd2f,
.label-medium-ba17 {
  margin-bottom: 1.5rem;
}

.bronze-00f5 h4,
.wrapper-easy-fd2f h4,
.label-medium-ba17 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bronze-00f5 ul,
.wrapper-easy-fd2f ul,
.label-medium-ba17 ul {
  list-style: none;
  padding: 0;
}

.bronze-00f5 li,
.wrapper-easy-fd2f li,
.label-medium-ba17 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.bronze-00f5 li:before,
.wrapper-easy-fd2f li:before,
.label-medium-ba17 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tertiary-out-f83b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tertiary-out-f83b 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;
}

.tertiary-out-f83b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.photo-out-1cb3 { margin: 2rem 0; }
.shade_fbdb { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.shade_fbdb h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.avatar-05f3 p { margin-bottom: 1rem; line-height: 1.7; }
.avatar-05f3 strong { color: var(--text-primary); }
.avatar-05f3 ul { list-style: none; padding-left: 0; }
.avatar-05f3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar-05f3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.header_over_14a0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fresh_6950 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.fresh_6950:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.title-north-16c1 { font-size: 3rem; margin-bottom: 1rem; }
.fresh_6950 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.fresh_6950 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tertiary_f115 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tertiary_f115 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.summary_2d9d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.widget_under_825b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.avatar-1080 { text-align: center; }
.gradient-stone-b34b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.outer_d2d0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.panel_72ff { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.under_c6a8 { margin: 2rem 0; }
.complex_8b68 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.complex_8b68 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.complex_8b68 p, .complex_8b68 ul { line-height: 1.7; }
.complex_8b68 ul { list-style: none; padding-left: 0; }
.complex_8b68 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.complex_8b68 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.next_3be3 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.message-585b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wide_ed53 { text-align: center; }
.upper_4576 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.bronze-b084 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pattern_pressed_ab71 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.background-5563 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.chip-9e48 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.chip-9e48:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.chip-9e48 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.chip-9e48 p, .chip-9e48 ul { line-height: 1.7; }
.chip-9e48 ul { list-style: none; padding-left: 0; }
.chip-9e48 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.chip-9e48 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 3d55 */
.ghost-box-x9 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
