/* ============================================
   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 */
.primary_gold_4701 p,
.outline-pink-ce44,
.text-c4d5,
.summary_bright_615c,
.title_fluid_3bcb,
.banner-action-ddf3,
.active-dark-f6a4,
.shade_dynamic_e821 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.outline_thick_1a67 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.outline_thick_1a67 > *,
.carousel-26dd,
.primary_gold_4701,
.copper_4d8c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .outline_thick_1a67 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .outline_thick_1a67 {
    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 === */
.tag-light-8292 {
  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 */
.tag-light-8292.dynamic-bd5c {
  box-shadow: var(--shadow-md);
}

.accordion-orange-9eb5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.stale_a329 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.hidden-new-4f9b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.section-current-d8e9 {
  display: none;
}

/* Hide mobile actions on desktop */
.grid-240c {
  display: none;
}

.disabled-basic-6b27 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.disabled-basic-6b27 a:hover,
.disabled-basic-6b27 a.fn-active-cdec {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.link-d057 {
  margin-left: 1rem;
}

.component-tiny-c25c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.fast_1061,
.hot-06f7 {
  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;
}

.fast_1061 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.fast_1061: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;
}

.hot-06f7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hot-06f7: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;
}

.fast_1061 svg,
.hot-06f7 svg {
  flex-shrink: 0;
}

.accordion-plasma-19fb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.purple-627e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.purple-627e::before,
.purple-627e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.purple-627e::before {
  top: -7px;
}

.purple-627e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.container_focused_5fff {
  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 === */
.overlay_fresh_db5c {
  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);
}

.orange_6156 {
  margin: 0 0 2rem;
  text-align: center;
}

.pink-3a4b {
  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;
}

.pink-3a4b:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.center-b66b {
  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);
}

.center-b66b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.filter-c2b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.item-smooth-5bd0 {
  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;
}

.item-smooth-5bd0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.primary-selected-81b5 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard-c799 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.paper_5bdb {
  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);
}

.paper_5bdb .backdrop_3962 {
  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;
}

.paper_5bdb .backdrop_3962 svg {
  flex-shrink: 0;
}

.paper_5bdb .disabled_light_9fd8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.paper_5bdb .disabled_light_9fd8: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);
}

.paper_5bdb .summary-4b63 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.paper_5bdb .summary-4b63: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) {
  .overlay_fresh_db5c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pink-3a4b {
    max-width: 100%;
  }

  .filter-c2b8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .item-smooth-5bd0 {
    padding: 1rem;
  }

  .primary-selected-81b5 {
    font-size: 1.5rem;
  }

  .hard-c799 {
    font-size: 0.75rem;
  }

  .center-b66b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paper_5bdb {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .paper_5bdb .backdrop_3962 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .filter-c2b8 {
    grid-template-columns: 1fr;
  }
}

.caption-black-85a1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dirty_df2f {
  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 === */
.widget-4efe {
  margin-bottom: 2.5rem;
}

.primary-e12b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.caption-black-85a1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.content_east_d068 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.silver_6ce6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.component-easy-d5bf {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.backdrop-e3a9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.menu-advanced-1755 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.article-eb13 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_da4f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_da4f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.shadow-tall-c5c8 {
  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);
}

.block_fb53 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.row_huge_4bf5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-brown-93be {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.item-b13b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.section-stale-f7dc {
  display: grid;
  gap: 1rem;
}

.easy-7a42 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.plasma_c2d8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.clean-bf9e {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.under-9566 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.border_6e9a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.cool-1ff1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cool-1ff1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.outline-pink-ce44 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.warm_186c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.east_0061 {
  display: grid;
  gap: 2rem;
}

.stale-6dea {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.silver_6ce6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.content_east_d068 {
  flex: 1;
}

.backdrop-e3a9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.backdrop-e3a9 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.medium_71b8 {
  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;
}

.menu-advanced-1755 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.pattern-old-a7a8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.pattern-old-a7a8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.rough-642a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.rough-642a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tertiary-blue-1bc2 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary-blue-1bc2 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tertiary-blue-1bc2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tertiary-blue-1bc2 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.gradient_8e50 {
  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 === */
.text-fixed-caf6 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.widget-hot-736c {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thumbnail-a5c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.item_steel_346c h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.item_steel_346c ol {
  list-style: none;
  counter-reset: toc-counter;
}

.item_steel_346c ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.item_steel_346c 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;
}

.item_steel_346c ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.item_steel_346c ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.primary_gold_4701 {
  padding: 3rem 0 5rem;
}

.copper_4d8c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.copper_4d8c.block_cbc1 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.text-c4d5 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.slider-16bc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.title-c767 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.title-c767 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.cool_412b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.search-004d {
  text-align: center;
}

.south_0eca {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.row_0ca6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.box-bc6a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.banner-action-ddf3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.summary_bright_615c {
  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;
}

.summary_bright_615c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary_bright_615c:hover {
  box-shadow: var(--shadow-lg);
}

.summary_bright_615c.medium_e6ce {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.summary_bright_615c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.summary_bright_615c ul {
  margin: 1rem 0;
}

.summary_bright_615c li {
  margin-bottom: 0.75rem;
}

.left-2798 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.info_5baa {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.info_5baa a {
  font-weight: 600;
}

/* === Data Tables === */
.tall_638d {
  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;
}

.tall_638d table {
  width: 100%;
  min-width: 600px;
}

.tall_638d thead {
  background-color: var(--primary-color);
  color: white;
}

.tall_638d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.tall_638d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.tall_638d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.tall_638d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.input_2813 {
  list-style: none;
  margin: 1.5rem 0;
}

.input_2813 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.input_2813 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.badge-b0d9::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-cdec::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 === */
.paragraph-old-6ed8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.chip_01f7 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.chip_01f7 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.chip_01f7 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.chip_01f7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paragraph-old-6ed8 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.active-dark-f6a4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.active-dark-f6a4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.primary-e2d4 {
  position: relative;
  margin-bottom: 3rem;
}

.nav_gas_7529 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.nav_gas_7529 .disabled_474c {
  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;
}

.accent-11bf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.accent-11bf h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.accent-11bf ul {
  margin: 1rem 0;
}

.accent-11bf li {
  margin-bottom: 0.75rem;
}

.container_short_172b {
  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 === */
.pressed_cf87 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pressed_cf87 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.summary_stone_9b54 {
  list-style: none;
  margin: 1.5rem 0;
}

.summary_stone_9b54 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.summary_stone_9b54 a {
  font-weight: 600;
}

.block-thick-21dd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.shade_dynamic_e821 {
  margin: 2.5rem 0;
}

.hover-5fe6 {
  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;
}

.hover-5fe6:hover {
  box-shadow: var(--shadow-lg);
}

.hover-5fe6.blue-481f {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.under-b2e9 {
  flex-shrink: 0;
}

.under-b2e9 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);
}

.component_red_8326 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.search-action-cbd0,
.top-4635,
.small_338b {
  width: 100%;
  margin: 1.5rem 0;
}

.breadcrumb_top_947c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.breadcrumb_top_947c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.logo-b395 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.logo-b395 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.north_ace7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north_ace7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.container-d259 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-cc40 {
  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;
}

.highlight-cc40:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.highlight-cc40.video-f9b7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.highlight-cc40 .component_next_3d5e {
  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;
}

.highlight-cc40 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.texture-7559 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column_2dc3 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.column_2dc3 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.content-gold-a4ec {
  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 === */
.backdrop_3962 {
  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;
}

.disabled_light_9fd8 {
  background-color: var(--primary-color);
  color: white;
}

.disabled_light_9fd8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.summary-4b63 {
  background-color: var(--text-secondary);
  color: white;
}

.summary-4b63:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.caption-4fe0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.caption-4fe0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.cool-0406 {
  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;
}

.cool-0406:hover {
  background-color: var(--primary-dark);
}

.card-lite-f35e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.fast_1cf4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.first_5be8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.white-ae07 {
  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 === */
.grid_red_7584 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.title_1d01 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.title_1d01 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.narrow_ef14 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.over_157a {
  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;
}

.slow_69f3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.detail_thick_b1e2 {
  list-style: none;
  counter-reset: rank-counter;
}

.detail_thick_b1e2 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.detail_thick_b1e2 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;
}

.caption-basic-3ddb {
  list-style: none;
}

.caption-basic-3ddb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.cold-39e4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.outline-middle-faa4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.outline-middle-faa4 .wood_4bc8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.outline-middle-faa4 .picture-edd5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wood-ab7b {
  margin-top: 3rem;
}

.filter-lower-a2e2 {
  width: 100%;
}

.banner-26d0 {
  background-color: #fef3c7;
}

.lower_f0cd {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.heading-0367 {
  margin: 3rem 0;
}

.message_c406 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.advanced_e7d0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.advanced_e7d0:hover {
  box-shadow: var(--shadow-lg);
}

.advanced_e7d0.orange_b046 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.border-basic-ccb4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.new-6737 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.new-6737 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.lite-c66c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced_e7d0 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.south_a3ae {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.module-simple-3aa8 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.photo_glass_2ce5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.full-d9e9 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.picture-motion-fe0f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.list_pink_c3b2 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.west_361b {
  max-width: 900px;
  margin: 0 auto;
}

.middle_5ab8 {
  margin: 2rem 0;
}

.iron-3679 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.iron-3679 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.iron-3679 summary::-webkit-details-marker {
  display: none;
}

.iron-3679 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.avatar_lower_d8a0 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.iron-3679[open] .avatar_lower_d8a0 {
  transform: rotate(45deg);
}

.header_motion_c765 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header_motion_c765 p:last-child {
  margin-bottom: 0;
}

.logo_e504 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.description-6cc5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.large_555e {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.large_555e p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.large_555e .backdrop_3962 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.alert-2a1f {
  max-width: 900px;
  margin: 0 auto;
}

.form_slow_1c30 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.active-8834 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.active-8834.fn-success-cdec {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.accordion-5b29 {
  font-size: 3rem;
  line-height: 1;
}

.summary_down_7a31 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.last_c207 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.white-21b9,
.pattern-cool-1b40 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.white-21b9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pattern-cool-1b40 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.shadow-b311,
.light_6dc1 {
  margin: 1.5rem 0;
}

.shadow-b311 li,
.light_6dc1 li {
  margin-bottom: 1rem;
}

.west-8e9c {
  margin: 3rem 0;
}

.thumbnail-9d8b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.thumbnail-9d8b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.thumbnail-9d8b ol {
  margin: 1rem 0;
}

.thumbnail-9d8b li {
  margin-bottom: 0.75rem;
}

.tertiary-liquid-cfdf {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.summary-12d7 {
  margin: 2rem 0;
}

.text_west_a285 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.motion_cf03 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.video_mini_8778 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.icon-right-7da9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.picture_glass_a382 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tag-b68d {
  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;
}

.tag-b68d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.component-easy-d5bf {
  flex: 1;
}

.component-easy-d5bf h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.description-ed6e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.static_97fb p {
  margin-bottom: 1rem;
}

.simple_d705 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.icon_motion_441e {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.cold-63a6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cold-63a6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.input_south_0438 h3 {
  margin-bottom: 1.5rem;
}

.pink-257e {
  display: grid;
  gap: 2rem;
}

.accordion_north_a03a {
  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;
}

.accordion_north_a03a img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.accordion_north_a03a h4 {
  margin: 0 0 0.25rem;
}

.accordion_north_a03a p {
  margin: 0;
  font-size: 0.9375rem;
}

.breadcrumb-229a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.preview_white_8e44 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.preview_white_8e44 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.preview_white_8e44 ul {
  margin: 1.5rem 0;
}

.preview_white_8e44 li {
  margin-bottom: 0.75rem;
}

.panel_south_5298 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.backdrop_7f5b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.simple-1725 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.description_smooth_2f50 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.description_smooth_2f50 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.progress-c6c6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.progress-c6c6 a {
  color: rgba(255, 255, 255, 0.8);
}

.shade_hot_d8ce {
  list-style: none;
}

.shade_hot_d8ce li {
  margin-bottom: 0.75rem;
}

.shade_hot_d8ce a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.shade_hot_d8ce a:hover {
  color: white;
}

.hidden_south_7f5f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.accordion-6302 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.bright-1f49 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.over-b495 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.left_fe3b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .outline_thick_1a67 {
    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;
  }

  .gold-d97d {
    font-size: 1.5rem !important;
  }

  .primary-e12b {
    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 */
  .summary_bright_615c,
  .title_fluid_3bcb,
  .accent-11bf,
  .component_red_8326,
  .border-basic-ccb4,
  .advanced_e7d0,
  .header_motion_c765,
  .center-b66b,
  .outline-pink-ce44,
  .text-c4d5 {
    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 */
  .caption-black-85a1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .content_east_d068 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .silver_6ce6 {
    flex-shrink: 0;
  }

  .component-easy-d5bf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .backdrop-e3a9,
  .menu-advanced-1755 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .menu-advanced-1755 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .hidden-new-4f9b {
    display: none;
  }

  /* Show mobile actions */
  .grid-240c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .mask-old-dcd7 {
    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;
  }

  .mask-old-dcd7 svg {
    flex-shrink: 0;
  }

  .mask-old-dcd7 .sort-cold-5421 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .mask-old-dcd7 .new-56ac {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .highlight-ee6c {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .description_c04a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .mask-old-dcd7:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .section-current-d8e9 {
    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;
  }

  .section-current-d8e9.fn-active-cdec {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .section-current-d8e9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .section-current-d8e9 li:last-child {
    border-bottom: none;
  }

  .section-current-d8e9 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .disabled-basic-6b27 {
    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;
  }

  .disabled-basic-6b27 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .disabled-basic-6b27 li:last-child {
    border-bottom: none;
  }

  .disabled-basic-6b27 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .link-d057 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .component-tiny-c25c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .fast_1061,
  .hot-06f7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .fast_1061 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hot-06f7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .disabled-basic-6b27.fn-active-cdec {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .accordion-plasma-19fb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tag-light-8292 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .accordion-orange-9eb5 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .container_focused_5fff {
    margin-top: 0;
  }

  /* Hero section */
  .container_focused_5fff {
    padding: 2rem 0 1.5rem;
  }

  .primary-e12b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .outline-pink-ce44 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .overlay_fresh_db5c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pink-3a4b {
    max-width: 100%;
    border-radius: 8px;
  }

  .filter-c2b8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .item-smooth-5bd0 {
    padding: 1rem;
  }

  .primary-selected-81b5 {
    font-size: 1.5rem;
  }

  .hard-c799 {
    font-size: 0.75rem;
  }

  .center-b66b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paper_5bdb {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .paper_5bdb .backdrop_3962 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .thumbnail-a5c5 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hover-5fe6 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .under-b2e9 {
    margin-bottom: 1rem;
  }

  /* Author */
  .stale-6dea {
    flex-direction: column;
  }

  .tag-b68d {
    flex-direction: column;
  }

  /* Quotes */
  .border-basic-ccb4 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .last_c207 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .icon-right-7da9 {
    flex-direction: column;
  }

  .icon-right-7da9 .backdrop_3962 {
    width: 100%;
  }

  /* Version comparison */
  .container-d259 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .grid_red_7584 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .simple-1725 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bright-1f49 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .tall_638d,
  .top-4635,
  .active_a121,
  .filter-lower-a2e2,
  .search-action-cbd0,
  .small_338b {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tall_638d table,
  .top-4635 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .content-gold-a4ec {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .outline_thick_1a67 {
    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;
  }

  .gold-d97d {
    font-size: 1.25rem !important;
  }

  .primary-e12b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tag-light-8292 {
    position: fixed;
  }

  .accordion-orange-9eb5 {
    padding: 0.625rem 0;
  }

  .stale_a329 img {
    height: 26px;
  }

  .disabled-basic-6b27 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .section-current-d8e9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .mask-old-dcd7 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .mask-old-dcd7 svg {
    width: 18px;
    height: 18px;
  }

  .mask-old-dcd7 .sort-cold-5421 {
    font-size: 0.7rem;
  }

  .mask-old-dcd7 .new-56ac {
    font-size: 0.65rem;
  }

  .fast_1061,
  .hot-06f7 {
    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, .outline_thick_1a67, .carousel-26dd, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .overlay_fresh_db5c {
    padding: 1rem;
  }

  .filter-c2b8 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .item-smooth-5bd0 {
    padding: 0.875rem;
  }

  .primary-selected-81b5 {
    font-size: 1.25rem;
  }

  .paper_5bdb .backdrop_3962 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .primary-e12b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .backdrop_3962 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .card-lite-f35e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hover-5fe6 {
    padding: 1rem;
  }

  .under-b2e9 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .summary_bright_615c,
  .search-8cd2,
  .avatar_929d,
  .fresh-0326 {
    padding: 1rem;
  }
}

@media print {
  .tag-light-8292,
  .text-fixed-caf6,
  .accordion-plasma-19fb,
  .backdrop_3962,
  .backdrop_7f5b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .outline_thick_1a67 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.thick_bb68 {
  margin-bottom: 3rem;
  text-align: center;
}

.gold-d97d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.overlay-a825 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.overlay_fast_9324,
.texture-0654 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel_6fcf {
  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;
}

.carousel_6fcf:hover {
  transform: translateY(-5px);
}

.carousel_6fcf strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.carousel_6fcf span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.short_71ec {
  margin: 3rem 0;
}

.chip_02b2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.next_9c3f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.next_9c3f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.title-easy-2c8e {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-25f3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.first_69ce {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.block_pressed_e25d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.shade_thick_4790 {
  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;
}

.shade_thick_4790:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.shade_thick_4790.brown-4675 {
  border-left: 4px solid var(--primary-color);
}

.steel-fe97 {
  flex-shrink: 0;
}

.steel-fe97 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.over_24da {
  flex: 1;
}

.over_24da h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.caption-7e1d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.message-99da,
.banner_1e31,
.main_374a {
  margin-bottom: 1.5rem;
}

.message-99da h4,
.banner_1e31 h4,
.main_374a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message-99da ul,
.banner_1e31 ul,
.main_374a ul {
  list-style: none;
  padding: 0;
}

.message-99da li,
.banner_1e31 li,
.main_374a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.message-99da li:before,
.banner_1e31 li:before,
.main_374a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.avatar_2eee {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.avatar_2eee 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;
}

.avatar_2eee a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.tertiary_bf16 { margin: 2rem 0; }
.search-black-b8db { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.search-black-b8db h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tabs-b443 p { margin-bottom: 1rem; line-height: 1.7; }
.tabs-b443 strong { color: var(--text-primary); }
.tabs-b443 ul { list-style: none; padding-left: 0; }
.tabs-b443 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tabs-b443 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.border-fixed-ffa0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.content-ab59 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.content-ab59:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.east-3ed8 { font-size: 3rem; margin-bottom: 1rem; }
.content-ab59 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.content-ab59 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hidden_5151 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hidden_5151 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.link_stone_d210 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.column_plasma_4c4c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.highlight_green_1a31 { text-align: center; }
.hard-9a60 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.disabled-60ec { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.over_6a51 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.surface-48de { margin: 2rem 0; }
.dirty_1b5e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dirty_1b5e h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.dirty_1b5e p, .dirty_1b5e ul { line-height: 1.7; }
.dirty_1b5e ul { list-style: none; padding-left: 0; }
.dirty_1b5e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dirty_1b5e ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.right-6eb4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.warm-751f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.element-6f4b { text-align: center; }
.clean-389e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notification_glass_b9d0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thick_1261 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.border_1d3b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.outline_in_5e77 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.outline_in_5e77:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.outline_in_5e77 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.outline_in_5e77 p, .outline_in_5e77 ul { line-height: 1.7; }
.outline_in_5e77 ul { list-style: none; padding-left: 0; }
.outline_in_5e77 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.outline_in_5e77 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ffde */
.phantom-card-t8 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
