/* ============================================
   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 */
.mask_pro_24b0 p,
.outline_7cdd,
.steel_0342,
.hard_9d23,
.input-b2cb,
.pagination_a620,
.gradient-fixed-312f,
.paragraph_1a9f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.primary_88ac {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.primary_88ac > *,
.menu-0d02,
.mask_pro_24b0,
.accordion_north_9e2f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .primary_88ac {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .primary_88ac {
    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 === */
.heading_complex_aedc {
  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 */
.heading_complex_aedc.red-ea62 {
  box-shadow: var(--shadow-md);
}

.shade-full-3fe3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.old_9c9a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.bottom_b4e1 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.carousel_9bb9 {
  display: none;
}

/* Hide mobile actions on desktop */
.component-action-5523 {
  display: none;
}

.primary-east-a958 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.primary-east-a958 a:hover,
.primary-east-a958 a.fn-active-3480 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.active_5c97 {
  margin-left: 1rem;
}

.north_19af {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.section-3f08,
.popup_wide_d2a7 {
  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;
}

.section-3f08 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.section-3f08: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;
}

.popup_wide_d2a7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.popup_wide_d2a7: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;
}

.section-3f08 svg,
.popup_wide_d2a7 svg {
  flex-shrink: 0;
}

.hero_ef9e {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.footer-b1a6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.footer-b1a6::before,
.footer-b1a6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.footer-b1a6::before {
  top: -7px;
}

.footer-b1a6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.bottom_4508 {
  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 === */
.table_a82d {
  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);
}

.modal_75b1 {
  margin: 0 0 2rem;
  text-align: center;
}

.tiny_0df0 {
  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;
}

.tiny_0df0:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.description-soft-0e3f {
  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);
}

.description-soft-0e3f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.header-motion-1efc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.grid_a0dc {
  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;
}

.grid_a0dc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tooltip_simple_f5ae {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.input-hard-19c9 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.backdrop-f054 {
  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);
}

.backdrop-f054 .layout_slow_705b {
  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;
}

.backdrop-f054 .layout_slow_705b svg {
  flex-shrink: 0;
}

.backdrop-f054 .button-yellow-c345 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.backdrop-f054 .button-yellow-c345: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);
}

.backdrop-f054 .section-0e33 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.backdrop-f054 .section-0e33: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) {
  .table_a82d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tiny_0df0 {
    max-width: 100%;
  }

  .header-motion-1efc {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .grid_a0dc {
    padding: 1rem;
  }

  .tooltip_simple_f5ae {
    font-size: 1.5rem;
  }

  .input-hard-19c9 {
    font-size: 0.75rem;
  }

  .description-soft-0e3f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .backdrop-f054 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .backdrop-f054 .layout_slow_705b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-motion-1efc {
    grid-template-columns: 1fr;
  }
}

.fixed-e9e6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.label-29b1 {
  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 === */
.form-white-c219 {
  margin-bottom: 2.5rem;
}

.list-33da {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.fixed-e9e6 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.preview-short-ff92 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.column_fast_57a2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.notification-c9fc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.green-6484 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.feature_5986 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.media_cool_3177 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture-clean-23e8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture-clean-23e8 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.action-7ecc {
  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);
}

.info_63a2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dirty_db69 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.breadcrumb-0dc2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.aside-silver-f101 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress-active-9eb0 {
  display: grid;
  gap: 1rem;
}

.next-a113 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.dropdown_e87b {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shade-cccf {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.purple-bb81 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.right_f4d7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.title-active-10dc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.title-active-10dc p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.outline_7cdd {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.backdrop_pressed_6bab {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.filter-cold-3d63 {
  display: grid;
  gap: 2rem;
}

.popup_small_7342 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.column_fast_57a2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.preview-short-ff92 {
  flex: 1;
}

.green-6484 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.green-6484 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.inner-d093 {
  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;
}

.feature_5986 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.fast_8ff5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.fast_8ff5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.chip-solid-2dd0 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.chip-solid-2dd0 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.in-4bfe {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.in-4bfe strong {
  display: block;
  margin-bottom: 0.75rem;
}

.in-4bfe ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.in-4bfe li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.nav_dirty_c748 {
  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 === */
.right_68b9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.texture_short_a0df {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thumbnail-b3bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.banner_stale_3b43 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.banner_stale_3b43 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.banner_stale_3b43 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.banner_stale_3b43 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;
}

.banner_stale_3b43 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.banner_stale_3b43 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.mask_pro_24b0 {
  padding: 3rem 0 5rem;
}

.accordion_north_9e2f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.accordion_north_9e2f.shade-fresh-8fe2 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.steel_0342 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.steel_659d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.hidden-south-9587 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.hidden-south-9587 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.column_orange_940a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card-green-d738 {
  text-align: center;
}

.title-lite-3d33 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gallery-hard-9e55 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.box-68c1 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.pagination_a620 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hard_9d23 {
  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;
}

.hard_9d23 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hard_9d23:hover {
  box-shadow: var(--shadow-lg);
}

.hard_9d23.stone-f76c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hard_9d23 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hard_9d23 ul {
  margin: 1rem 0;
}

.hard_9d23 li {
  margin-bottom: 0.75rem;
}

.notification-365d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.header-right-1317 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.header-right-1317 a {
  font-weight: 600;
}

/* === Data Tables === */
.gold_171b {
  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;
}

.gold_171b table {
  width: 100%;
  min-width: 600px;
}

.gold_171b thead {
  background-color: var(--primary-color);
  color: white;
}

.gold_171b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gold_171b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gold_171b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.gold_171b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.warm_efa8 {
  list-style: none;
  margin: 1.5rem 0;
}

.warm_efa8 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.warm_efa8 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.old_68a7::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-3480::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 === */
.outline-e535 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.component-a2f5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.component-a2f5 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.component-a2f5 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.component-a2f5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-e535 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.gradient-fixed-312f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.gradient-fixed-312f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.inner_c5ad {
  position: relative;
  margin-bottom: 3rem;
}

.form_last_7059 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.form_last_7059 .iron-b788 {
  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;
}

.surface-old-4a92 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.surface-old-4a92 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.surface-old-4a92 ul {
  margin: 1rem 0;
}

.surface-old-4a92 li {
  margin-bottom: 0.75rem;
}

.banner-8688 {
  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 === */
.smooth-5da4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.smooth-5da4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.status_dark_2fdd {
  list-style: none;
  margin: 1.5rem 0;
}

.status_dark_2fdd li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.status_dark_2fdd a {
  font-weight: 600;
}

.new-331a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.paragraph_1a9f {
  margin: 2.5rem 0;
}

.modal-hard-21b9 {
  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;
}

.modal-hard-21b9:hover {
  box-shadow: var(--shadow-lg);
}

.modal-hard-21b9.pro_c95c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.description_hovered_4c7a {
  flex-shrink: 0;
}

.description_hovered_4c7a 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);
}

.gold_e845 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shadow-d698,
.widget-8dab,
.north-65f8 {
  width: 100%;
  margin: 1.5rem 0;
}

.frame_2aa0 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.frame_2aa0 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.bronze-ca49 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.bronze-ca49 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.simple-c86d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.simple-c86d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.heading_b4b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.backdrop_advanced_d58e {
  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;
}

.backdrop_advanced_d58e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.backdrop_advanced_d58e.notification_c71c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.backdrop_advanced_d58e .copper_9911 {
  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;
}

.backdrop_advanced_d58e h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.item-64a1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pagination_a192 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.pagination_a192 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hot_c23d {
  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 === */
.layout_slow_705b {
  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;
}

.button-yellow-c345 {
  background-color: var(--primary-color);
  color: white;
}

.button-yellow-c345:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.section-0e33 {
  background-color: var(--text-secondary);
  color: white;
}

.section-0e33:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.module-purple-d0e9 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.module-purple-d0e9:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.badge_b4c6 {
  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;
}

.badge_b4c6:hover {
  background-color: var(--primary-dark);
}

.gold_60d9 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.logo_8e74 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.chip-ddce {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.list_577e {
  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 === */
.clean_7c00 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.right_f53d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.right_f53d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.component-2779 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.basic-31dd {
  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;
}

.under_a5ec {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.steel-1334 {
  list-style: none;
  counter-reset: rank-counter;
}

.steel-1334 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.steel-1334 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;
}

.secondary-04cf {
  list-style: none;
}

.secondary-04cf li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.pattern_pressed_a37c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.card-hot-0ae6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.card-hot-0ae6 .frame-1068 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.card-hot-0ae6 .active_6f3c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gallery_glass_065f {
  margin-top: 3rem;
}

.large_ea7c {
  width: 100%;
}

.slow_90e3 {
  background-color: #fef3c7;
}

.input-stone-42ff {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.table-thick-1947 {
  margin: 3rem 0;
}

.pattern-middle-8286 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.highlight_bottom_a2ca {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.highlight_bottom_a2ca:hover {
  box-shadow: var(--shadow-lg);
}

.highlight_bottom_a2ca.accordion_full_f2ba {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.form_5250 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shade_3fb1 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.shade_3fb1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.popup_bright_fae4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.highlight_bottom_a2ca blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.smooth_b454 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery_7259 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav_55bf {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.south_b5a2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail_8ca7 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.notice-22a7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.pagination-old-8da8 {
  max-width: 900px;
  margin: 0 auto;
}

.label-7404 {
  margin: 2rem 0;
}

.orange-38ce {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.orange-38ce summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.orange-38ce summary::-webkit-details-marker {
  display: none;
}

.orange-38ce summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.avatar_top_d518 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.orange-38ce[open] .avatar_top_d518 {
  transform: rotate(45deg);
}

.backdrop-d358 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.backdrop-d358 p:last-child {
  margin-bottom: 0;
}

.under-b821 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.widget-tiny-a7f5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.silver-f359 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.silver-f359 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.silver-f359 .layout_slow_705b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tooltip-advanced-dee8 {
  max-width: 900px;
  margin: 0 auto;
}

.popup-2cc5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.brown_9624 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.brown_9624.fn-success-3480 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.focus_gas_ca9e {
  font-size: 3rem;
  line-height: 1;
}

.tag-a071 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active-large-11bf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.next-15e0,
.active-ead1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.next-15e0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.active-ead1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.icon_31df,
.dynamic-9fa9 {
  margin: 1.5rem 0;
}

.icon_31df li,
.dynamic-9fa9 li {
  margin-bottom: 1rem;
}

.notification_5cda {
  margin: 3rem 0;
}

.south_144d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.south_144d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.south_144d ol {
  margin: 1rem 0;
}

.south_144d li {
  margin-bottom: 0.75rem;
}

.huge-a5ea {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.gas-f212 {
  margin: 2rem 0;
}

.footer-06ac {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slider_soft_bee5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.focus_pressed_9425 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.gas_b623 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.clean-2f08 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.glass-67d2 {
  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;
}

.glass-67d2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.notification-c9fc {
  flex: 1;
}

.notification-c9fc h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.message-cool-d790 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.steel_bf27 p {
  margin-bottom: 1rem;
}

.column_1e5c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.pagination-bb75 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.module-north-56ae {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.module-north-56ae a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.full_de8f h3 {
  margin-bottom: 1.5rem;
}

.wide_0e97 {
  display: grid;
  gap: 2rem;
}

.under-36eb {
  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;
}

.under-36eb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.under-36eb h4 {
  margin: 0 0 0.25rem;
}

.under-36eb p {
  margin: 0;
  font-size: 0.9375rem;
}

.active-a167 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.bronze-e444 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.bronze-e444 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.bronze-e444 ul {
  margin: 1.5rem 0;
}

.bronze-e444 li {
  margin-bottom: 0.75rem;
}

.element_new_bee9 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.button-a9f0 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.over_5b15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.inner_635c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.inner_635c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.wood-6109 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.wood-6109 a {
  color: rgba(255, 255, 255, 0.8);
}

.shade_smooth_ff2c {
  list-style: none;
}

.shade_smooth_ff2c li {
  margin-bottom: 0.75rem;
}

.shade_smooth_ff2c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.shade_smooth_ff2c a:hover {
  color: white;
}

.brown_8e5f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.tertiary-602f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.article_liquid_0eea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.element_plasma_7d31 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.thick-19f3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .primary_88ac {
    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;
  }

  .cool-67e8 {
    font-size: 1.5rem !important;
  }

  .list-33da {
    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 */
  .hard_9d23,
  .input-b2cb,
  .surface-old-4a92,
  .gold_e845,
  .form_5250,
  .highlight_bottom_a2ca,
  .backdrop-d358,
  .description-soft-0e3f,
  .outline_7cdd,
  .steel_0342 {
    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 */
  .fixed-e9e6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .preview-short-ff92 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .column_fast_57a2 {
    flex-shrink: 0;
  }

  .notification-c9fc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .green-6484,
  .feature_5986 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature_5986 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .bottom_b4e1 {
    display: none;
  }

  /* Show mobile actions */
  .component-action-5523 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .frame_silver_c7b9 {
    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;
  }

  .frame_silver_c7b9 svg {
    flex-shrink: 0;
  }

  .frame_silver_c7b9 .alert_2a7a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .frame_silver_c7b9 .tooltip_copper_12fe {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .item_9b4a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .heading-brown-74b8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .frame_silver_c7b9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .carousel_9bb9 {
    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;
  }

  .carousel_9bb9.fn-active-3480 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .carousel_9bb9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .carousel_9bb9 li:last-child {
    border-bottom: none;
  }

  .carousel_9bb9 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .primary-east-a958 {
    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;
  }

  .primary-east-a958 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .primary-east-a958 li:last-child {
    border-bottom: none;
  }

  .primary-east-a958 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .active_5c97 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .north_19af {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .section-3f08,
  .popup_wide_d2a7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .section-3f08 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .popup_wide_d2a7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .primary-east-a958.fn-active-3480 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero_ef9e {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .heading_complex_aedc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .shade-full-3fe3 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .bottom_4508 {
    margin-top: 0;
  }

  /* Hero section */
  .bottom_4508 {
    padding: 2rem 0 1.5rem;
  }

  .list-33da {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .outline_7cdd {
    font-size: 1rem;
  }

  /* Hero brand image */
  .table_a82d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tiny_0df0 {
    max-width: 100%;
    border-radius: 8px;
  }

  .header-motion-1efc {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .grid_a0dc {
    padding: 1rem;
  }

  .tooltip_simple_f5ae {
    font-size: 1.5rem;
  }

  .input-hard-19c9 {
    font-size: 0.75rem;
  }

  .description-soft-0e3f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .backdrop-f054 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .backdrop-f054 .layout_slow_705b {
    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 */
  .thumbnail-b3bb {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .modal-hard-21b9 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .description_hovered_4c7a {
    margin-bottom: 1rem;
  }

  /* Author */
  .popup_small_7342 {
    flex-direction: column;
  }

  .glass-67d2 {
    flex-direction: column;
  }

  /* Quotes */
  .form_5250 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active-large-11bf {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .gas_b623 {
    flex-direction: column;
  }

  .gas_b623 .layout_slow_705b {
    width: 100%;
  }

  /* Version comparison */
  .heading_b4b0 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .clean_7c00 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .over_5b15 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article_liquid_0eea {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .gold_171b,
  .widget-8dab,
  .paper_0f11,
  .large_ea7c,
  .shadow-d698,
  .north-65f8 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gold_171b table,
  .widget-8dab table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hot_c23d {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .primary_88ac {
    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;
  }

  .cool-67e8 {
    font-size: 1.25rem !important;
  }

  .list-33da {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .heading_complex_aedc {
    position: fixed;
  }

  .shade-full-3fe3 {
    padding: 0.625rem 0;
  }

  .old_9c9a img {
    height: 26px;
  }

  .primary-east-a958 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .carousel_9bb9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .frame_silver_c7b9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .frame_silver_c7b9 svg {
    width: 18px;
    height: 18px;
  }

  .frame_silver_c7b9 .alert_2a7a {
    font-size: 0.7rem;
  }

  .frame_silver_c7b9 .tooltip_copper_12fe {
    font-size: 0.65rem;
  }

  .section-3f08,
  .popup_wide_d2a7 {
    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, .primary_88ac, .menu-0d02, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .table_a82d {
    padding: 1rem;
  }

  .header-motion-1efc {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .grid_a0dc {
    padding: 0.875rem;
  }

  .tooltip_simple_f5ae {
    font-size: 1.25rem;
  }

  .backdrop-f054 .layout_slow_705b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .list-33da {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .layout_slow_705b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .gold_60d9 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .modal-hard-21b9 {
    padding: 1rem;
  }

  .description_hovered_4c7a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hard_9d23,
  .shadow_left_be90,
  .carousel_lower_80fb,
  .south-0b89 {
    padding: 1rem;
  }
}

@media print {
  .heading_complex_aedc,
  .right_68b9,
  .hero_ef9e,
  .layout_slow_705b,
  .button-a9f0 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .primary_88ac {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.outline-copper-dbd4 {
  margin-bottom: 3rem;
  text-align: center;
}

.cool-67e8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solid_4a17 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.carousel-627c,
.wrapper-paper-0e0a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.message-7cc9 {
  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;
}

.message-7cc9:hover {
  transform: translateY(-5px);
}

.message-7cc9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.message-7cc9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.static-cd0b {
  margin: 3rem 0;
}

.silver_640a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active-8b21 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.active-8b21:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hero-ffc2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.nav_7298 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.alert_easy_529e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.hidden-41bc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.box_1303 {
  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;
}

.box_1303:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.box_1303.row_f9c0 {
  border-left: 4px solid var(--primary-color);
}

.mini-7fe6 {
  flex-shrink: 0;
}

.mini-7fe6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.tooltip_8ea2 {
  flex: 1;
}

.tooltip_8ea2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.paragraph_f986 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.button_d799,
.secondary_9d77,
.widget-copper-142a {
  margin-bottom: 1.5rem;
}

.button_d799 h4,
.secondary_9d77 h4,
.widget-copper-142a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button_d799 ul,
.secondary_9d77 ul,
.widget-copper-142a ul {
  list-style: none;
  padding: 0;
}

.button_d799 li,
.secondary_9d77 li,
.widget-copper-142a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.button_d799 li:before,
.secondary_9d77 li:before,
.widget-copper-142a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.gallery_34be {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.gallery_34be 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;
}

.gallery_34be a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.cold_112a { margin: 2rem 0; }
.text_old_04e5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.text_old_04e5 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.title_gold_c589 p { margin-bottom: 1rem; line-height: 1.7; }
.title_gold_c589 strong { color: var(--text-primary); }
.title_gold_c589 ul { list-style: none; padding-left: 0; }
.title_gold_c589 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.title_gold_c589 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.down_9112 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.main_middle_e663 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.main_middle_e663:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.heading_f4fc { font-size: 3rem; margin-bottom: 1rem; }
.main_middle_e663 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.main_middle_e663 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.content_first_5626 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.content_first_5626 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.summary-smooth-b9e2 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.container_81ee { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accordion_a48c { text-align: center; }
.mask_advanced_3886 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.message_f752 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.form-center-1878 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.container_wood_70b4 { margin: 2rem 0; }
.modal_gas_5d01 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.modal_gas_5d01 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.modal_gas_5d01 p, .modal_gas_5d01 ul { line-height: 1.7; }
.modal_gas_5d01 ul { list-style: none; padding-left: 0; }
.modal_gas_5d01 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal_gas_5d01 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.overlay_28f2 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.bottom_4cf9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tabs-276a { text-align: center; }
.breadcrumb-5288 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.brown-1158 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.grid-e221 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.item_lite_e5e8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.smooth_b2a2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.smooth_b2a2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.smooth_b2a2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.smooth_b2a2 p, .smooth_b2a2 ul { line-height: 1.7; }
.smooth_b2a2 ul { list-style: none; padding-left: 0; }
.smooth_b2a2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.smooth_b2a2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cada */
.promo-block-d8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
