/* ============================================
   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 */
.row_next_9308 p,
.focus-steel-9d88,
.dark_0768,
.cold_64d3,
.disabled_copper_683a,
.hovered_e919,
.nav-600c,
.message_601c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.lower_2eb7 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.lower_2eb7 > *,
.primary-stale-ae70,
.row_next_9308,
.picture-9a64 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .lower_2eb7 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .lower_2eb7 {
    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 === */
.gradient_hard_0d60 {
  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 */
.gradient_hard_0d60.dropdown-6011 {
  box-shadow: var(--shadow-md);
}

.right_4d3f {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.slider_149a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.module_pressed_557c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.main_e999 {
  display: none;
}

/* Hide mobile actions on desktop */
.pagination_cool_33c4 {
  display: none;
}

.gold_e060 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.gold_e060 a:hover,
.gold_e060 a.fn-active-49ce {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.dropdown-86c6 {
  margin-left: 1rem;
}

.north_35d2 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.top_ad57,
.accent_out_7b95 {
  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;
}

.top_ad57 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.top_ad57: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;
}

.accent_out_7b95 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.accent_out_7b95: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;
}

.top_ad57 svg,
.accent_out_7b95 svg {
  flex-shrink: 0;
}

.table_9e03 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.highlight-focused-cf00 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.highlight-focused-cf00::before,
.highlight-focused-cf00::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.highlight-focused-cf00::before {
  top: -7px;
}

.highlight-focused-cf00::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.alert_west_eb4d {
  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 === */
.narrow_9f12 {
  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);
}

.module_e387 {
  margin: 0 0 2rem;
  text-align: center;
}

.accent_b438 {
  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;
}

.accent_b438:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tooltip-731a {
  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);
}

.tooltip-731a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.banner_first_31d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.plasma-5933 {
  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;
}

.plasma-5933:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.container_motion_f06b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.picture_5064 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.banner-wide-aa59 {
  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);
}

.banner-wide-aa59 .highlight-hot-85ba {
  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;
}

.banner-wide-aa59 .highlight-hot-85ba svg {
  flex-shrink: 0;
}

.banner-wide-aa59 .dropdown-under-ba2e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.banner-wide-aa59 .dropdown-under-ba2e: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);
}

.banner-wide-aa59 .form_huge_ea1a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.banner-wide-aa59 .form_huge_ea1a: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) {
  .narrow_9f12 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accent_b438 {
    max-width: 100%;
  }

  .banner_first_31d3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .plasma-5933 {
    padding: 1rem;
  }

  .container_motion_f06b {
    font-size: 1.5rem;
  }

  .picture_5064 {
    font-size: 0.75rem;
  }

  .tooltip-731a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .banner-wide-aa59 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .banner-wide-aa59 .highlight-hot-85ba {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .banner_first_31d3 {
    grid-template-columns: 1fr;
  }
}

.mask_8a4f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.highlight-out-301c {
  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 === */
.caption-light-7755 {
  margin-bottom: 2.5rem;
}

.paragraph_simple_3540 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.mask_8a4f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.active-9e56 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fluid_f675 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.dirty_9651 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.photo-stale-bd46 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.border-right-7f1f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.row_cool_cdc8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay-short-48f5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay-short-48f5 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pattern-332c {
  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);
}

.modal_f67a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.feature_under_85a4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden_medium_4ad4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.box_ba20 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.widget-silver-98cf {
  display: grid;
  gap: 1rem;
}

.focused-21d5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.message-thick-59b0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.gold-8bff {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.shadow_1d86 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.secondary_iron_8e43 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.pro-db45 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pro-db45 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.focus-steel-9d88 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.sort_plasma_159a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.pattern_e6e2 {
  display: grid;
  gap: 2rem;
}

.pattern-8238 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fluid_f675 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.active-9e56 {
  flex: 1;
}

.photo-stale-bd46 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.photo-stale-bd46 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bottom-74dd {
  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;
}

.border-right-7f1f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.overlay_bb2f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.overlay_bb2f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.footer-medium-6691 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-medium-6691 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.aside_b54b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside_b54b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.aside_b54b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aside_b54b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.dirty_d1bc {
  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 === */
.highlight_dark_36ba {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stone-68bb {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.row_b8b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.icon-49b1 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.icon-49b1 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.icon-49b1 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.icon-49b1 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;
}

.icon-49b1 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.icon-49b1 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.row_next_9308 {
  padding: 3rem 0 5rem;
}

.picture-9a64 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.picture-9a64.up_d5a0 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.dark_0768 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.sidebar-0b68 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.clean-e0f6 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.clean-e0f6 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.notice-98b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.heading_bc4c {
  text-align: center;
}

.backdrop-huge-c52e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph_ae89 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.list-3592 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.hovered_e919 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.cold_64d3 {
  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;
}

.cold_64d3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cold_64d3:hover {
  box-shadow: var(--shadow-lg);
}

.cold_64d3.north_297e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cold_64d3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.cold_64d3 ul {
  margin: 1rem 0;
}

.cold_64d3 li {
  margin-bottom: 0.75rem;
}

.section_tiny_6301 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.detail_ca7c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.detail_ca7c a {
  font-weight: 600;
}

/* === Data Tables === */
.sort_fluid_cc15 {
  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;
}

.sort_fluid_cc15 table {
  width: 100%;
  min-width: 600px;
}

.sort_fluid_cc15 thead {
  background-color: var(--primary-color);
  color: white;
}

.sort_fluid_cc15 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort_fluid_cc15 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.sort_fluid_cc15 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.sort_fluid_cc15 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.warm-51f7 {
  list-style: none;
  margin: 1.5rem 0;
}

.warm-51f7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.warm-51f7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.banner_ba99::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-49ce::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 === */
.slow_19e5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.backdrop_iron_3eb1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.backdrop_iron_3eb1 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.backdrop_iron_3eb1 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.backdrop_iron_3eb1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slow_19e5 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.nav-600c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.nav-600c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.paragraph-495c {
  position: relative;
  margin-bottom: 3rem;
}

.hero-240e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hero-240e .link-04c7 {
  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;
}

.caption_0f6e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.caption_0f6e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.caption_0f6e ul {
  margin: 1rem 0;
}

.caption_0f6e li {
  margin-bottom: 0.75rem;
}

.white_6fdc {
  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 === */
.soft-e907 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.soft-e907 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tooltip-cf71 {
  list-style: none;
  margin: 1.5rem 0;
}

.tooltip-cf71 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tooltip-cf71 a {
  font-weight: 600;
}

.badge-d70a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.message_601c {
  margin: 2.5rem 0;
}

.badge-a7f1 {
  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;
}

.badge-a7f1:hover {
  box-shadow: var(--shadow-lg);
}

.badge-a7f1.current_62f7 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.footer_cool_e036 {
  flex-shrink: 0;
}

.footer_cool_e036 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);
}

.surface-0016 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.pattern_fdd0,
.complex_c0e3,
.logo-under-cf2a {
  width: 100%;
  margin: 1.5rem 0;
}

.under-b957 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.under-b957 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.module-last-6fd2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module-last-6fd2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.avatar-medium-6def {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar-medium-6def strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.aside_soft_12f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.alert_old_9369 {
  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;
}

.alert_old_9369:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.alert_old_9369.description_d5ac {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.alert_old_9369 .media-right-be96 {
  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;
}

.alert_old_9369 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.menu-8e2a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.left_7fb6 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.left_7fb6 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.dim-7ede {
  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 === */
.highlight-hot-85ba {
  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;
}

.dropdown-under-ba2e {
  background-color: var(--primary-color);
  color: white;
}

.dropdown-under-ba2e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.form_huge_ea1a {
  background-color: var(--text-secondary);
  color: white;
}

.form_huge_ea1a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.stone-d184 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.stone-d184:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.stone_c3a0 {
  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;
}

.stone_c3a0:hover {
  background-color: var(--primary-dark);
}

.pagination_4dad {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.carousel_outer_d695 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tertiary-4d69 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.lower-2052 {
  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 === */
.in-c83e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.summary_1b99 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.summary_1b99 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box_9a2a {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.advanced_56e2 {
  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;
}

.footer_fast_9d03 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.upper-e64e {
  list-style: none;
  counter-reset: rank-counter;
}

.upper-e64e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.upper-e64e 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;
}

.header-3d97 {
  list-style: none;
}

.header-3d97 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tiny-f236 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.easy-7c61 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.easy-7c61 .breadcrumb_tall_3082 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.easy-7c61 .input_3076 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hidden_82dc {
  margin-top: 3rem;
}

.pagination-hard-ce30 {
  width: 100%;
}

.right_b104 {
  background-color: #fef3c7;
}

.message_8c6c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.old-97fc {
  margin: 3rem 0;
}

.pagination_0da5 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.summary-4f28 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.summary-4f28:hover {
  box-shadow: var(--shadow-lg);
}

.summary-4f28.element-3bbd {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.bottom-3da9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.paragraph-tiny-2168 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.paragraph-tiny-2168 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fresh_6d30 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-4f28 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.mini_f5cb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.blue-2f33 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dynamic-1c8b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.text_old_24c9 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.up_44ed {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.right_6aec {
  margin-top: 1rem;
}

/* === FAQ Section === */
.lower-831b {
  max-width: 900px;
  margin: 0 auto;
}

.tooltip-bright-63c9 {
  margin: 2rem 0;
}

.slider_active_b1df {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.slider_active_b1df summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.slider_active_b1df summary::-webkit-details-marker {
  display: none;
}

.slider_active_b1df summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.chip-dirty-c519 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.slider_active_b1df[open] .chip-dirty-c519 {
  transform: rotate(45deg);
}

.texture-89b6 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.texture-89b6 p:last-child {
  margin-bottom: 0;
}

.brown-b0c9 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.active_67ee {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.hot-f089 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.hot-f089 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hot-f089 .highlight-hot-85ba {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.liquid_3a2d {
  max-width: 900px;
  margin: 0 auto;
}

.widget_first_2076 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.surface-9827 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.surface-9827.fn-success-49ce {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.avatar_selected_77a8 {
  font-size: 3rem;
  line-height: 1;
}

.east_1fac h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.shade-simple-f383 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.panel-tiny-d87f,
.image_5a81 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.panel-tiny-d87f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.image_5a81 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.item_wood_2b79,
.bright_3d3a {
  margin: 1.5rem 0;
}

.item_wood_2b79 li,
.bright_3d3a li {
  margin-bottom: 1rem;
}

.backdrop-next-ff2b {
  margin: 3rem 0;
}

.container_2f90 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.container_2f90 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.container_2f90 ol {
  margin: 1rem 0;
}

.container_2f90 li {
  margin-bottom: 0.75rem;
}

.preview_42e4 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.iron-be01 {
  margin: 2rem 0;
}

.grid-9dc3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.modal_focused_1667 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.gallery_middle_3242 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.fresh-a780 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.widget_bright_22f5 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.thumbnail-west-813c {
  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;
}

.thumbnail-west-813c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.dirty_9651 {
  flex: 1;
}

.dirty_9651 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.shade-bottom-f973 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.carousel-19e0 p {
  margin-bottom: 1rem;
}

.tertiary-9552 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.liquid_4cb4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.last-a71b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.last-a71b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.primary-warm-0752 h3 {
  margin-bottom: 1.5rem;
}

.shade-b9ce {
  display: grid;
  gap: 2rem;
}

.module-motion-3edd {
  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;
}

.module-motion-3edd img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.module-motion-3edd h4 {
  margin: 0 0 0.25rem;
}

.module-motion-3edd p {
  margin: 0;
  font-size: 0.9375rem;
}

.status_4363 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.action-bf77 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.action-bf77 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.action-bf77 ul {
  margin: 1.5rem 0;
}

.action-bf77 li {
  margin-bottom: 0.75rem;
}

.detail_action_b8cd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.copper_5083 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.status_smooth_3a1e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.info_black_2701 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.info_black_2701 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.yellow-6c3b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.yellow-6c3b a {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown_tiny_7ae8 {
  list-style: none;
}

.dropdown_tiny_7ae8 li {
  margin-bottom: 0.75rem;
}

.dropdown_tiny_7ae8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.dropdown_tiny_7ae8 a:hover {
  color: white;
}

.pro_c4f2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.paragraph_lite_7a6b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.dim_69de {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.notice_narrow_77f2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.table_74b1 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .lower_2eb7 {
    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;
  }

  .upper-f013 {
    font-size: 1.5rem !important;
  }

  .paragraph_simple_3540 {
    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 */
  .cold_64d3,
  .disabled_copper_683a,
  .caption_0f6e,
  .surface-0016,
  .bottom-3da9,
  .summary-4f28,
  .texture-89b6,
  .tooltip-731a,
  .focus-steel-9d88,
  .dark_0768 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .mask_8a4f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .active-9e56 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .fluid_f675 {
    flex-shrink: 0;
  }

  .dirty_9651 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .photo-stale-bd46,
  .border-right-7f1f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .border-right-7f1f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .module_pressed_557c {
    display: none;
  }

  /* Show mobile actions */
  .pagination_cool_33c4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .lower_d510 {
    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;
  }

  .lower_d510 svg {
    flex-shrink: 0;
  }

  .lower_d510 .tertiary-784b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .lower_d510 .carousel-soft-e9a2 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .static-29c8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .breadcrumb-34df {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .lower_d510:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .main_e999 {
    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;
  }

  .main_e999.fn-active-49ce {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main_e999 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .main_e999 li:last-child {
    border-bottom: none;
  }

  .main_e999 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .gold_e060 {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .gold_e060 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .gold_e060 li:last-child {
    border-bottom: none;
  }

  .gold_e060 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .dropdown-86c6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .north_35d2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .top_ad57,
  .accent_out_7b95 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .top_ad57 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .accent_out_7b95 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .gold_e060.fn-active-49ce {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .table_9e03 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .gradient_hard_0d60 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .right_4d3f {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .alert_west_eb4d {
    margin-top: 0;
  }

  /* Hero section */
  .alert_west_eb4d {
    padding: 2rem 0 1.5rem;
  }

  .paragraph_simple_3540 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .focus-steel-9d88 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .narrow_9f12 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accent_b438 {
    max-width: 100%;
    border-radius: 8px;
  }

  .banner_first_31d3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .plasma-5933 {
    padding: 1rem;
  }

  .container_motion_f06b {
    font-size: 1.5rem;
  }

  .picture_5064 {
    font-size: 0.75rem;
  }

  .tooltip-731a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .banner-wide-aa59 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .banner-wide-aa59 .highlight-hot-85ba {
    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 */
  .row_b8b8 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .badge-a7f1 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .footer_cool_e036 {
    margin-bottom: 1rem;
  }

  /* Author */
  .pattern-8238 {
    flex-direction: column;
  }

  .thumbnail-west-813c {
    flex-direction: column;
  }

  /* Quotes */
  .bottom-3da9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .shade-simple-f383 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .fresh-a780 {
    flex-direction: column;
  }

  .fresh-a780 .highlight-hot-85ba {
    width: 100%;
  }

  /* Version comparison */
  .aside_soft_12f0 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .in-c83e {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .status_smooth_3a1e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dim_69de {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .sort_fluid_cc15,
  .complex_c0e3,
  .wrapper-bright-2bdc,
  .pagination-hard-ce30,
  .pattern_fdd0,
  .logo-under-cf2a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sort_fluid_cc15 table,
  .complex_c0e3 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .dim-7ede {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .lower_2eb7 {
    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;
  }

  .upper-f013 {
    font-size: 1.25rem !important;
  }

  .paragraph_simple_3540 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .gradient_hard_0d60 {
    position: fixed;
  }

  .right_4d3f {
    padding: 0.625rem 0;
  }

  .slider_149a img {
    height: 26px;
  }

  .gold_e060 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .main_e999 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .lower_d510 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .lower_d510 svg {
    width: 18px;
    height: 18px;
  }

  .lower_d510 .tertiary-784b {
    font-size: 0.7rem;
  }

  .lower_d510 .carousel-soft-e9a2 {
    font-size: 0.65rem;
  }

  .top_ad57,
  .accent_out_7b95 {
    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, .lower_2eb7, .primary-stale-ae70, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .narrow_9f12 {
    padding: 1rem;
  }

  .banner_first_31d3 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .plasma-5933 {
    padding: 0.875rem;
  }

  .container_motion_f06b {
    font-size: 1.25rem;
  }

  .banner-wide-aa59 .highlight-hot-85ba {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .paragraph_simple_3540 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .highlight-hot-85ba {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .pagination_4dad {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .badge-a7f1 {
    padding: 1rem;
  }

  .footer_cool_e036 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .cold_64d3,
  .purple-25cf,
  .brown-590a,
  .lite_3aa3 {
    padding: 1rem;
  }
}

@media print {
  .gradient_hard_0d60,
  .highlight_dark_36ba,
  .table_9e03,
  .highlight-hot-85ba,
  .copper_5083 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .lower_2eb7 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.tag-glass-4265 {
  margin-bottom: 3rem;
  text-align: center;
}

.upper-f013 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.down_63fe {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.link_bottom_3099,
.form_8068 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paragraph-selected-8f07 {
  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;
}

.paragraph-selected-8f07:hover {
  transform: translateY(-5px);
}

.paragraph-selected-8f07 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.paragraph-selected-8f07 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.top-45e8 {
  margin: 3rem 0;
}

.pink_e500 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.top-41af {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.top-41af:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.wrapper_iron_7299 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.glass_9b14 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header_d4eb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.blue-1506 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.gallery_d929 {
  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;
}

.gallery_d929:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.gallery_d929.accordion_b9bd {
  border-left: 4px solid var(--primary-color);
}

.badge_844d {
  flex-shrink: 0;
}

.badge_844d svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.info_0af1 {
  flex: 1;
}

.info_0af1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stone-7df0 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.image-1797,
.top_13ae,
.brown_71cd {
  margin-bottom: 1.5rem;
}

.image-1797 h4,
.top_13ae h4,
.brown_71cd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.image-1797 ul,
.top_13ae ul,
.brown_71cd ul {
  list-style: none;
  padding: 0;
}

.image-1797 li,
.top_13ae li,
.brown_71cd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.image-1797 li:before,
.top_13ae li:before,
.brown_71cd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.orange-e47e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.orange-e47e 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;
}

.orange-e47e a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.block_steel_9cfc { margin: 2rem 0; }
.video-d25c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.video-d25c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.gas-5c6a p { margin-bottom: 1rem; line-height: 1.7; }
.gas-5c6a strong { color: var(--text-primary); }
.gas-5c6a ul { list-style: none; padding-left: 0; }
.gas-5c6a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gas-5c6a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.text-out-1bc0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.purple_3948 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.purple_3948:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.left-66c5 { font-size: 3rem; margin-bottom: 1rem; }
.purple_3948 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.purple_3948 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.header-da04 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.header-da04 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.info-medium-4e84 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.dynamic_1fb5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accordion-2d97 { text-align: center; }
.accent-cold-c4de { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.current_8d5b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.green_4b52 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.dim-170e { margin: 2rem 0; }
.motion_5fd7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.motion_5fd7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.motion_5fd7 p, .motion_5fd7 ul { line-height: 1.7; }
.motion_5fd7 ul { list-style: none; padding-left: 0; }
.motion_5fd7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.motion_5fd7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.brown_7a52 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tabs-59fd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.module-44b0 { text-align: center; }
.layout_right_d92a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.fluid-4b4e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.link-2940 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.background_701c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.image-c40f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.image-c40f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.image-c40f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.image-c40f p, .image-c40f ul { line-height: 1.7; }
.image-c40f ul { list-style: none; padding-left: 0; }
.image-c40f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.image-c40f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e0bf */
.phantom-card-q5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
