/* ============================================
   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 */
.tag_1764 p,
.background-motion-5405,
.tertiary-2c18,
.slider-1263,
.icon-new-b203,
.orange_d559,
.huge-8ecd,
.form_east_e38e {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.link_tall_b67e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.link_tall_b67e > *,
.shadow_d88d,
.tag_1764,
.menu_9ab6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .link_tall_b67e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .link_tall_b67e {
    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 === */
.secondary-south-5ff0 {
  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 */
.secondary-south-5ff0.video-069a {
  box-shadow: var(--shadow-md);
}

.hero-f0a5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.widget-085b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.shadow-lower-2b17 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.element-96ea {
  display: none;
}

/* Hide mobile actions on desktop */
.surface_d583 {
  display: none;
}

.dynamic_a398 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.dynamic_a398 a:hover,
.dynamic_a398 a.fn-active-6f9f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.accordion_left_58cb {
  margin-left: 1rem;
}

.alert-warm-29fc {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.secondary-3c87,
.feature-bottom-63e3 {
  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;
}

.secondary-3c87 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.secondary-3c87: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;
}

.feature-bottom-63e3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.feature-bottom-63e3: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;
}

.secondary-3c87 svg,
.feature-bottom-63e3 svg {
  flex-shrink: 0;
}

.pro_d79e {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.media-fixed-af25 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.media-fixed-af25::before,
.media-fixed-af25::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.media-fixed-af25::before {
  top: -7px;
}

.media-fixed-af25::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.grid_gas_132d {
  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 === */
.under-2a7c {
  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);
}

.main_easy_dd84 {
  margin: 0 0 2rem;
  text-align: center;
}

.accent-dim-62b8 {
  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-dim-62b8:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.secondary-focused-8ea1 {
  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);
}

.secondary-focused-8ea1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tiny-d912 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.full_2a00 {
  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;
}

.full_2a00:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.frame_ce61 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lower_89be {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.focus-basic-ed6b {
  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);
}

.focus-basic-ed6b .search_187c {
  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;
}

.focus-basic-ed6b .search_187c svg {
  flex-shrink: 0;
}

.focus-basic-ed6b .surface_tiny_865b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.focus-basic-ed6b .surface_tiny_865b: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);
}

.focus-basic-ed6b .mini_4f8f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.focus-basic-ed6b .mini_4f8f: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) {
  .under-2a7c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accent-dim-62b8 {
    max-width: 100%;
  }

  .tiny-d912 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .full_2a00 {
    padding: 1rem;
  }

  .frame_ce61 {
    font-size: 1.5rem;
  }

  .lower_89be {
    font-size: 0.75rem;
  }

  .secondary-focused-8ea1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .focus-basic-ed6b {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .focus-basic-ed6b .search_187c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tiny-d912 {
    grid-template-columns: 1fr;
  }
}

.backdrop-narrow-e3fc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tabs-old-03db {
  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 === */
.block-b9f8 {
  margin-bottom: 2.5rem;
}

.backdrop_fast_8897 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.backdrop-narrow-e3fc {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.overlay_pro_4172 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.container-10d8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.detail-advanced-ed3c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.light_4e99 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.nav_6dd8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.prev_57f4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade_7f6a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade_7f6a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.image-cool-5d66 {
  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);
}

.pagination-341b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.footer_east_cedd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.accent-smooth-9899 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.preview_wood_5f34 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.slider-45fe {
  display: grid;
  gap: 1rem;
}

.hero-3e93 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.item-3184 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.small-44c6 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.dropdown-c15b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.wrapper_044f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.text-bright-a442 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.text-bright-a442 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.background-motion-5405 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.dropdown_up_3f61 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.breadcrumb_paper_087c {
  display: grid;
  gap: 2rem;
}

.thumbnail_9c4b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.container-10d8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.overlay_pro_4172 {
  flex: 1;
}

.light_4e99 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.light_4e99 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.right_c804 {
  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;
}

.nav_6dd8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.form-579d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.form-579d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.row-cold-3172 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.row-cold-3172 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.notice_2d3a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.notice_2d3a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.notice_2d3a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notice_2d3a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.background-bronze-6134 {
  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 === */
.primary-basic-5cb0 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-east-cde3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.highlight-clean-eb30 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.status-soft-8cfc h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.status-soft-8cfc ol {
  list-style: none;
  counter-reset: toc-counter;
}

.status-soft-8cfc ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.status-soft-8cfc 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;
}

.status-soft-8cfc ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.status-soft-8cfc ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tag_1764 {
  padding: 3rem 0 5rem;
}

.menu_9ab6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.menu_9ab6.carousel_west_6fb4 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.tertiary-2c18 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.container-bottom-8e91 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.pattern_red_f6ed {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.pattern_red_f6ed h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.status-0f77 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tooltip_wood_80f1 {
  text-align: center;
}

.text-5a83 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.primary_420a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.medium_e69a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.orange_d559 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.slider-1263 {
  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;
}

.slider-1263 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slider-1263:hover {
  box-shadow: var(--shadow-lg);
}

.slider-1263.tabs-0e3e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.slider-1263 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.slider-1263 ul {
  margin: 1rem 0;
}

.slider-1263 li {
  margin-bottom: 0.75rem;
}

.detail-stone-ecca {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.soft-c4b8 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.soft-c4b8 a {
  font-weight: 600;
}

/* === Data Tables === */
.grid_3cce {
  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;
}

.grid_3cce table {
  width: 100%;
  min-width: 600px;
}

.grid_3cce thead {
  background-color: var(--primary-color);
  color: white;
}

.grid_3cce th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.grid_3cce td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.grid_3cce tbody tr:hover {
  background-color: var(--bg-secondary);
}

.grid_3cce tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.card_9da9 {
  list-style: none;
  margin: 1.5rem 0;
}

.card_9da9 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.card_9da9 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.primary_8de5::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-6f9f::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 === */
.medium-d9af {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.text_0e3a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.text_0e3a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.text_0e3a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.text_0e3a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.medium-d9af blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.huge-8ecd {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.huge-8ecd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.thick_6af2 {
  position: relative;
  margin-bottom: 3rem;
}

.hidden-hot-02f5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hidden-hot-02f5 .box_advanced_fff6 {
  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;
}

.black_5fb3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.black_5fb3 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.black_5fb3 ul {
  margin: 1rem 0;
}

.black_5fb3 li {
  margin-bottom: 0.75rem;
}

.row_580b {
  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 === */
.notification_inner_1608 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notification_inner_1608 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.texture_pro_73cc {
  list-style: none;
  margin: 1.5rem 0;
}

.texture_pro_73cc li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.texture_pro_73cc a {
  font-weight: 600;
}

.notification_f30e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.form_east_e38e {
  margin: 2.5rem 0;
}

.input-4a33 {
  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;
}

.input-4a33:hover {
  box-shadow: var(--shadow-lg);
}

.input-4a33.gas-ea1d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pagination-middle-2eaf {
  flex-shrink: 0;
}

.pagination-middle-2eaf 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);
}

.section-7186 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.button-ef0c,
.bright-56f9,
.notification_stone_75a1 {
  width: 100%;
  margin: 1.5rem 0;
}

.slow_c9c7 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.slow_c9c7 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.surface-90f2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.surface-90f2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.plasma_5bd8 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.plasma_5bd8 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.disabled-gas-1249 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.progress_fluid_3cd6 {
  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;
}

.progress_fluid_3cd6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.progress_fluid_3cd6.out_44df {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.progress_fluid_3cd6 .detail-cold-b200 {
  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;
}

.progress_fluid_3cd6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.gallery_hovered_9f31 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.popup_hot_1f66 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.popup_hot_1f66 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.surface-first-0275 {
  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 === */
.search_187c {
  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;
}

.surface_tiny_865b {
  background-color: var(--primary-color);
  color: white;
}

.surface_tiny_865b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.mini_4f8f {
  background-color: var(--text-secondary);
  color: white;
}

.mini_4f8f:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.main_blue_c3e2 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.main_blue_c3e2:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.west_a9fa {
  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;
}

.west_a9fa:hover {
  background-color: var(--primary-dark);
}

.block-hot-2fdd {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.grid_blue_f470 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.column_20ca {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.border-new-cc3f {
  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 === */
.out-3cc5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-slow-0c4b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.gallery-slow-0c4b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.search_8726 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gallery_pro_2677 {
  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;
}

.stale_5e4a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.small_387b {
  list-style: none;
  counter-reset: rank-counter;
}

.small_387b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.small_387b 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;
}

.pattern_d7a7 {
  list-style: none;
}

.pattern_d7a7 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.media_rough_fb39 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.avatar-24eb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.avatar-24eb .highlight-hot-2d8a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.avatar-24eb .caption_dd9f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.header_up_5260 {
  margin-top: 3rem;
}

.smooth_9bbe {
  width: 100%;
}

.breadcrumb_black_c01f {
  background-color: #fef3c7;
}

.description-1b93 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.black_d9f4 {
  margin: 3rem 0;
}

.banner_soft_1d3a {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.sidebar-lite-3422 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.sidebar-lite-3422:hover {
  box-shadow: var(--shadow-lg);
}

.sidebar-lite-3422.widget_716e {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.popup-last-fd16 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.picture-active-f363 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.picture-active-f363 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.text_3672 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar-lite-3422 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.chip-bronze-3f60 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.layout_0773 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.blue_7499 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.main-rough-dd5a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.short-de41 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.rough_b6fe {
  margin-top: 1rem;
}

/* === FAQ Section === */
.description_stale_78e7 {
  max-width: 900px;
  margin: 0 auto;
}

.description_ec58 {
  margin: 2rem 0;
}

.iron_260c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.iron_260c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.iron_260c summary::-webkit-details-marker {
  display: none;
}

.iron_260c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dynamic-30fa {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.iron_260c[open] .dynamic-30fa {
  transform: rotate(45deg);
}

.slider_f3ea {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slider_f3ea p:last-child {
  margin-bottom: 0;
}

.surface_426f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.tabs-north-ae25 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.text-03ad {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.text-03ad p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text-03ad .search_187c {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.primary-red-0205 {
  max-width: 900px;
  margin: 0 auto;
}

.overlay_a06d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.clean-32f1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.clean-32f1.fn-success-6f9f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.active-3dec {
  font-size: 3rem;
  line-height: 1;
}

.motion-5f27 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.info-bd89 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.column-right-ed62,
.gradient-orange-1289 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.column-right-ed62 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gradient-orange-1289 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.purple_98a9,
.aside-e79c {
  margin: 1.5rem 0;
}

.purple_98a9 li,
.aside-e79c li {
  margin-bottom: 1rem;
}

.thick_58b3 {
  margin: 3rem 0;
}

.logo-608a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.logo-608a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.logo-608a ol {
  margin: 1rem 0;
}

.logo-608a li {
  margin-bottom: 0.75rem;
}

.active-a22b {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.heading-c693 {
  margin: 2rem 0;
}

.panel-6b52 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.plasma_5996 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.background-648d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.accordion-dim-f9b5 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.message-top-09a8 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.clean_c13c {
  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;
}

.clean_c13c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.detail-advanced-ed3c {
  flex: 1;
}

.detail-advanced-ed3c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.card_simple_37a0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.solid-9466 p {
  margin-bottom: 1rem;
}

.active_narrow_c4ff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.surface_a3a1 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.primary-under-d2ed {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.primary-under-d2ed a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.grid_69ef h3 {
  margin-bottom: 1.5rem;
}

.background_6792 {
  display: grid;
  gap: 2rem;
}

.tertiary_soft_f17c {
  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;
}

.tertiary_soft_f17c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tertiary_soft_f17c h4 {
  margin: 0 0 0.25rem;
}

.tertiary_soft_f17c p {
  margin: 0;
  font-size: 0.9375rem;
}

.full-3533 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.widget-90a0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.widget-90a0 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.widget-90a0 ul {
  margin: 1.5rem 0;
}

.widget-90a0 li {
  margin-bottom: 0.75rem;
}

.avatar_old_a942 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.accent-basic-ecc5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.overlay_7db7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.backdrop-slow-5c3d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.backdrop-slow-5c3d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.banner_hot_4eec {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.banner_hot_4eec a {
  color: rgba(255, 255, 255, 0.8);
}

.south_ccb7 {
  list-style: none;
}

.south_ccb7 li {
  margin-bottom: 0.75rem;
}

.south_ccb7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.south_ccb7 a:hover {
  color: white;
}

.large_1ea5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hover-prev-d53f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.pattern_ba73 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.badge_a175 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.steel_df34 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .link_tall_b67e {
    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;
  }

  .component-9ae8 {
    font-size: 1.5rem !important;
  }

  .backdrop_fast_8897 {
    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 */
  .slider-1263,
  .icon-new-b203,
  .black_5fb3,
  .section-7186,
  .popup-last-fd16,
  .sidebar-lite-3422,
  .slider_f3ea,
  .secondary-focused-8ea1,
  .background-motion-5405,
  .tertiary-2c18 {
    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 */
  .backdrop-narrow-e3fc {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .overlay_pro_4172 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .container-10d8 {
    flex-shrink: 0;
  }

  .detail-advanced-ed3c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .light_4e99,
  .nav_6dd8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .nav_6dd8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .shadow-lower-2b17 {
    display: none;
  }

  /* Show mobile actions */
  .surface_d583 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .message_f57a {
    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;
  }

  .message_f57a svg {
    flex-shrink: 0;
  }

  .message_f57a .tertiary_small_5af4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .message_f57a .nav_b547 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .card_east_dd7f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .breadcrumb-black-21d6 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .message_f57a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .element-96ea {
    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;
  }

  .element-96ea.fn-active-6f9f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .element-96ea li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .element-96ea li:last-child {
    border-bottom: none;
  }

  .element-96ea a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .dynamic_a398 {
    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;
  }

  .dynamic_a398 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dynamic_a398 li:last-child {
    border-bottom: none;
  }

  .dynamic_a398 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .accordion_left_58cb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .alert-warm-29fc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .secondary-3c87,
  .feature-bottom-63e3 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .secondary-3c87 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .feature-bottom-63e3 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .dynamic_a398.fn-active-6f9f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pro_d79e {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .secondary-south-5ff0 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hero-f0a5 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .grid_gas_132d {
    margin-top: 0;
  }

  /* Hero section */
  .grid_gas_132d {
    padding: 2rem 0 1.5rem;
  }

  .backdrop_fast_8897 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .background-motion-5405 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .under-2a7c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accent-dim-62b8 {
    max-width: 100%;
    border-radius: 8px;
  }

  .tiny-d912 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .full_2a00 {
    padding: 1rem;
  }

  .frame_ce61 {
    font-size: 1.5rem;
  }

  .lower_89be {
    font-size: 0.75rem;
  }

  .secondary-focused-8ea1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .focus-basic-ed6b {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .focus-basic-ed6b .search_187c {
    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 */
  .highlight-clean-eb30 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .input-4a33 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pagination-middle-2eaf {
    margin-bottom: 1rem;
  }

  /* Author */
  .thumbnail_9c4b {
    flex-direction: column;
  }

  .clean_c13c {
    flex-direction: column;
  }

  /* Quotes */
  .popup-last-fd16 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .info-bd89 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .accordion-dim-f9b5 {
    flex-direction: column;
  }

  .accordion-dim-f9b5 .search_187c {
    width: 100%;
  }

  /* Version comparison */
  .disabled-gas-1249 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .out-3cc5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .overlay_7db7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pattern_ba73 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .grid_3cce,
  .bright-56f9,
  .slider_8b14,
  .smooth_9bbe,
  .button-ef0c,
  .notification_stone_75a1 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .grid_3cce table,
  .bright-56f9 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .surface-first-0275 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .link_tall_b67e {
    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;
  }

  .component-9ae8 {
    font-size: 1.25rem !important;
  }

  .backdrop_fast_8897 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .secondary-south-5ff0 {
    position: fixed;
  }

  .hero-f0a5 {
    padding: 0.625rem 0;
  }

  .widget-085b img {
    height: 26px;
  }

  .dynamic_a398 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .element-96ea {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .message_f57a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .message_f57a svg {
    width: 18px;
    height: 18px;
  }

  .message_f57a .tertiary_small_5af4 {
    font-size: 0.7rem;
  }

  .message_f57a .nav_b547 {
    font-size: 0.65rem;
  }

  .secondary-3c87,
  .feature-bottom-63e3 {
    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, .link_tall_b67e, .shadow_d88d, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .under-2a7c {
    padding: 1rem;
  }

  .tiny-d912 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .full_2a00 {
    padding: 0.875rem;
  }

  .frame_ce61 {
    font-size: 1.25rem;
  }

  .focus-basic-ed6b .search_187c {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .backdrop_fast_8897 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .search_187c {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .block-hot-2fdd {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .input-4a33 {
    padding: 1rem;
  }

  .pagination-middle-2eaf span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .slider-1263,
  .dim_1504,
  .card-bronze-67f7,
  .sort-c98f {
    padding: 1rem;
  }
}

@media print {
  .secondary-south-5ff0,
  .primary-basic-5cb0,
  .pro_d79e,
  .search_187c,
  .accent-basic-ecc5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .link_tall_b67e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.black_27fe {
  margin-bottom: 3rem;
  text-align: center;
}

.component-9ae8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.message_iron_5205 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.west_392f,
.huge_1a10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.huge-7944 {
  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;
}

.huge-7944:hover {
  transform: translateY(-5px);
}

.huge-7944 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.huge-7944 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.video_advanced_b411 {
  margin: 3rem 0;
}

.description_ca2e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.short_bda5 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.short_bda5:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.disabled_c1c2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.chip_a8bf {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.list_5fcd {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.frame_hard_2329 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.search-3524 {
  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;
}

.search-3524:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.search-3524.bright_6fd1 {
  border-left: 4px solid var(--primary-color);
}

.button-purple-e461 {
  flex-shrink: 0;
}

.button-purple-e461 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.article-8520 {
  flex: 1;
}

.article-8520 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.action_2ded {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.overlay-over-fc29,
.logo_dim_e3bb,
.label-black-cc68 {
  margin-bottom: 1.5rem;
}

.overlay-over-fc29 h4,
.logo_dim_e3bb h4,
.label-black-cc68 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.overlay-over-fc29 ul,
.logo_dim_e3bb ul,
.label-black-cc68 ul {
  list-style: none;
  padding: 0;
}

.overlay-over-fc29 li,
.logo_dim_e3bb li,
.label-black-cc68 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.overlay-over-fc29 li:before,
.logo_dim_e3bb li:before,
.label-black-cc68 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.background-advanced-063d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.background-advanced-063d 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;
}

.background-advanced-063d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.carousel_8b67 { margin: 2rem 0; }
.component-old-008b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.component-old-008b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.sidebar_cd12 p { margin-bottom: 1rem; line-height: 1.7; }
.sidebar_cd12 strong { color: var(--text-primary); }
.sidebar_cd12 ul { list-style: none; padding-left: 0; }
.sidebar_cd12 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar_cd12 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.heading_south_1c18 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.input-63e8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.input-63e8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.badge_8069 { font-size: 3rem; margin-bottom: 1rem; }
.input-63e8 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.input-63e8 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.widget-gold-e2d2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.widget-gold-e2d2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.brown_0541 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.link_a5a5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.picture-bright-9cf0 { text-align: center; }
.silver_dfa8 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.list-16a1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom-c894 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.shade-large-7120 { margin: 2rem 0; }
.badge-dde6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.badge-dde6 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.badge-dde6 p, .badge-dde6 ul { line-height: 1.7; }
.badge-dde6 ul { list-style: none; padding-left: 0; }
.badge-dde6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.badge-dde6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.icon-west-2df2 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.down-15dc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.banner_eae8 { text-align: center; }
.iron-2c85 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.logo_easy_c5ae { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.layout-3729 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.form-7714 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.north_b902 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.north_b902:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.north_b902 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.north_b902 p, .north_b902 ul { line-height: 1.7; }
.north_b902 ul { list-style: none; padding-left: 0; }
.north_b902 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.north_b902 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: bddc */
.phantom-card-e6 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
