/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --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.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.surface-3dcd {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.surface-3dcd:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.form_a760 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .form_a760 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .form_a760 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.preview-out-4f06):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.preview-out-4f06,
header,
.tabs-fa85,
.container-motion-3b89,
.soft_88fc,
.logo_2a0a,
.black-6049,
.module-blue-3db1,
.badge-in-ae2f {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.preview-out-4f06 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.info_glass_ad0c {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.preview-out-4f06.over_7254 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.alert-paper-48ed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.wrapper-c629 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.thumbnail_tiny_fd45 img {
  height: 36px;
  width: auto;
  display: block;
}

.aside-be68 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.chip_rough_954f {
  flex: 1;
}

.box-4e53 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.orange-abbc {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.orange-abbc:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.orange-abbc.fn-active-acf4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.shade-outer-b3e9 {
  position: relative;
}

.content-hard-715d {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.content-hard-715d svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.shade-outer-b3e9:hover .content-hard-715d svg,
.content-hard-715d[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.hero_ba61 {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.shade-outer-b3e9:hover .hero_ba61 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.hero_ba61::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.accent-94f4 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.accent-94f4:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.accent-94f4[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.hidden-ce65 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.dark-5151 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.dark-5151:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.dark-5151 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.focus_steel_8ea3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.focus_steel_8ea3:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.focus_steel_8ea3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.wide_9cac {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.label_gas_c6e1 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.wide_9cac[aria-expanded="true"] .label_gas_c6e1:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.wide_9cac[aria-expanded="true"] .label_gas_c6e1:nth-child(2) {
  opacity: 0;
}

.wide_9cac[aria-expanded="true"] .label_gas_c6e1:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .chip_rough_954f {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .chip_rough_954f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .chip_rough_954f.photo_lite_fcfd {
    display: block;
    right: 0;
  }
  
  .box-4e53 {
    flex-direction: column;
    gap: 0;
  }
  
  .orange-abbc {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .chip_rough_954f::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .chip_rough_954f.photo_lite_fcfd::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .chip_rough_954f {
    display: none;
  }
  
  .wide_9cac {
    display: flex;
  }
  
  .aside-be68 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dark-5151,
  .focus_steel_8ea3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade-outer-b3e9 {
    position: relative;
  }
  
  .hero_ba61 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .content-hard-715d[aria-expanded="true"] + .hero_ba61 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .accent-94f4 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hidden-ce65 {
    gap: 8px;
  }
  
  .dark-5151 {
    display: none;
  }
  
  .focus_steel_8ea3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .thumbnail_tiny_fd45 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .focus_steel_8ea3 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .focus_steel_8ea3 svg {
    width: 14px;
    height: 14px;
  }
  
  .alert-paper-48ed {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.tabs-fa85 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.down-8b3b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.action-b317 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-b317 svg {
  flex-shrink: 0;
}

.action-b317 a {
  color: var(--color-primary);
  text-decoration: none;
}

.action-b317 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .down-8b3b {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.container-motion-3b89 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.summary-5dd7 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .summary-5dd7 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.feature-cfe2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.feature-cfe2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.feature-cfe2 a:hover {
  text-decoration: underline;
}

.simple_d97d {
  color: var(--color-text-lighter);
}

.wrapper-31eb {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .wrapper-31eb {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .wrapper-31eb {
    font-size: 1.5rem;
  }
}

.gradient-cool-27ba {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.container_black_bbd0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .container_black_bbd0 {
    grid-template-columns: 1fr;
  }
}

.backdrop-226e {
  display: flex;
  gap: var(--space-sm);
}

.prev-e38d {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.up-2839 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.up-2839 strong {
  font-weight: 600;
  color: var(--color-text);
}

.up-2839 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.dropdown_c63c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.glass_ad33 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title_84a3 {
  position: relative;
  text-align: center;
}

.title_84a3 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.active-rough-ebb0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.widget-left-551f {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.chip-b077 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.preview_focused_eea0 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.main-rough-07b6 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.dropdown-dirty-7c4f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .summary-5dd7 {
    grid-template-columns: 1fr;
  }
  
  .wrapper-31eb {
    font-size: 1.75rem;
  }
  
  .glass_ad33 {
    order: -1;
    max-width: 100%;
  }
  
  .title_84a3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wrapper-31eb {
    font-size: 1.5rem;
  }
  
  .gradient-cool-27ba {
    font-size: 1rem;
  }
  
  .feature-cfe2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .title_84a3 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.notice-7d4a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.secondary-f166 {
  background: var(--color-primary);
  color: white;
}

.secondary-f166:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.background_fixed_ad29 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.background_fixed_ad29:hover {
  background: var(--color-primary);
  color: white;
}

.stone_875c {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.stone_875c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.north_1d24 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.column_plasma_9293 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.soft_88fc {
  padding: var(--space-xl) 0;
  background: white;
}

.next_8d45 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.accent-2351 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.accent-2351:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.texture-8b3b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.box_c254 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.thumbnail-a2e9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.logo_2a0a {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.plasma_21fe {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stone_5d4d {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.carousel-prev-5f07 {
  list-style: none;
  counter-reset: toc-counter;
}

.carousel-prev-5f07 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.carousel-prev-5f07 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.carousel-prev-5f07 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.carousel-prev-5f07 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.black-6049 {
  padding: var(--space-xxl) 0;
}

.outline_gold_e974 {
  background: var(--color-bg-section);
}

.pressed_f13c {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.list_3288 {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.picture_lower_ef7c {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.wood_d249 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.badge-focused-e63c {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .badge-focused-e63c {
    grid-template-columns: 1fr 300px;
  }
}

.frame-tall-f02e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.frame-tall-f02e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.frame-tall-f02e pre,
.frame-tall-f02e code {
  overflow-x: auto;
  max-width: 100%;
}

.frame-tall-f02e h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.frame-tall-f02e h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.frame-tall-f02e h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.frame-tall-f02e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.frame-tall-f02e ul,
.frame-tall-f02e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.frame-tall-f02e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.frame-tall-f02e strong {
  font-weight: 600;
  color: var(--color-text);
}

.frame-tall-f02e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.frame-tall-f02e a:hover {
  color: var(--color-primary-dark);
}

.primary-836e {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.primary-836e li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.primary-836e li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .badge-focused-e63c {
    grid-template-columns: 1fr;
  }
  
  .picture_lower_ef7c {
    font-size: 1.75rem;
  }
  
  .frame-tall-f02e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .picture_lower_ef7c {
    font-size: 1.5rem;
  }
  
  .frame-tall-f02e h3 {
    font-size: 1.375rem;
  }
  
  .frame-tall-f02e h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.disabled-1ac0 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.border-6d6e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.last-c46f {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.video_9a78 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.filter_ef31 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.grid_bright_9654 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.hovered_c085 {
  flex-shrink: 0;
}

.mini_c329 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.accent_69a1 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .accent_69a1 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.header_basic_820f,
.static-5a7b,
.lower_3212 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.header_basic_820f thead,
.static-5a7b thead {
  background: var(--color-primary);
  color: white;
}

.header_basic_820f th,
.header_basic_820f td,
.static-5a7b th,
.static-5a7b td,
.lower_3212 th,
.lower_3212 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header_basic_820f th,
  .header_basic_820f td,
  .static-5a7b th,
  .static-5a7b td,
  .lower_3212 th,
  .lower_3212 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .header_basic_820f,
  .static-5a7b,
  .lower_3212 {
    min-width: 600px;
  }
}

.header_basic_820f th,
.static-5a7b th,
.lower_3212 th {
  font-weight: 600;
}

.header_basic_820f tbody tr:hover,
.static-5a7b tbody tr:hover,
.lower_3212 tbody tr:hover {
  background: var(--color-bg-alt);
}

.under-28d7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.next_b10e {
  position: sticky;
  top: 80px;
  align-self: start;
}

.lite-5621 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.lite-5621 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.video_copper_15d5 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.video_copper_15d5 h4 {
  color: white;
}

.in-a830 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.primary_simple_c416 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.primary_simple_c416:last-child {
  border-bottom: none;
}

.primary_simple_c416 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.primary_simple_c416 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.description_silver_ffd3 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.component_9462 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.component_9462:hover {
  text-decoration: underline;
}

.thumbnail-steel-c560 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.pattern_57be {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pattern_57be span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.photo_fresh_b998 {
  font-weight: 600;
  color: white;
}

.main-b097 {
  list-style: none;
  padding: 0;
}

.main-b097 li {
  padding: var(--space-xs) 0;
}

.hover_blue_1284 {
  color: #4caf50;
}

.row-27de {
  color: #ff9800;
}

.shade-b157 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.preview_hard_6d80 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.fast-86f5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.content_orange_0fa9 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-eb8c {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.breadcrumb_2d95 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.stone_5b85 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .stone_5b85 {
    grid-template-columns: 1fr;
  }
}

.outer-7f10 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.outer-7f10:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.red_a13c {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

.outer-7f10 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.outer-7f10 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.slow-39e6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.photo_fresh_b998 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.box_fd5e {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.motion-fa9b {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.motion-fa9b h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.hard-7b4d {
  max-width: 900px;
  margin: 0 auto;
}

.pattern_c421 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.old_e046 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .old_e046 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.wrapper_orange_d63d {
  margin-top: var(--space-xxl);
}

.wrapper_orange_d63d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.overlay_selected_2d15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .overlay_selected_2d15 {
    grid-template-columns: 1fr;
  }
}

.current-4cd0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.middle_866f {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.middle_ab99 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.current-4cd0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.current-4cd0 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.current-4cd0 li {
  padding: var(--space-xs) 0;
  color: white;
}

.current-4cd0 .notice-7d4a {
  width: 100%;
  background: white;
}

.middle_866f .notice-7d4a {
  color: #667eea;
}

.middle_ab99 .notice-7d4a {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.sort_6ea9 {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail-black-1cc9 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.shadow-0866 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.progress-north-c92d {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.shadow-0866 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.caption-soft-9537 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .shadow-0866 {
    padding: var(--space-md);
  }
  
  .caption-soft-9537 {
    padding: var(--space-md);
  }
  
  .basic-b559 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.sidebar-7735 ol,
.sidebar-7735 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.sidebar-7735 li {
  margin-bottom: var(--space-sm);
}

.sidebar-7735 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.down_b84f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.small_6776 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.basic-b559 {
  margin-top: var(--space-lg);
  text-align: center;
}

.basic-b559 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.fixed-d98e,
.label-c15f,
.accordion-a431,
.slider-easy-283d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.label_iron_6c6d {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.solid_7a8d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.form_8d7e {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .form_8d7e {
    font-size: 0.625rem;
  }
}

.fresh_800d {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.fresh_800d:hover {
  background: var(--color-primary-dark);
}

.item-7a39 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.item-7a39 h4 {
  margin-bottom: var(--space-md);
}

.progress-bright-dc55 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.widget_9cbc {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.dropdown-tiny-4a15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .dropdown-tiny-4a15 {
    grid-template-columns: 1fr;
  }
}

.hidden-d528 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.picture_d768 {
  border-color: var(--color-success);
}

.main_f9ee {
  border-color: var(--color-warning);
}

.paragraph_cb4d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.picture_d768 .paragraph_cb4d {
  background: #e8f5e9;
  color: var(--color-success);
}

.main_f9ee .paragraph_cb4d {
  background: #fff3e0;
  color: var(--color-warning);
}

.hidden-d528 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.hidden-d528 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.left-5a54 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.dark_6f72 {
  margin: var(--space-xxl) 0;
}

.dark_6f72 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.dark_6f72 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.top_811d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .top_811d {
    grid-template-columns: 1fr;
  }
}

.easy-f93c {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.easy-f93c h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.thick-e296 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.thick-e296 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.tertiary_hard_24cc {
  margin-top: var(--space-xxl);
}

.under-0a5e {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.up_2fa7 {
  text-align: center;
}

.filter-5b2e {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.pagination_cold_1cc9 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.filter-5b2e .photo_fresh_b998 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.title_fast_717e {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.main_light_eb95 p {
  margin-bottom: var(--space-md);
}

.link_over_19b2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .under-0a5e {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.warm_dbde {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.widget_blue_305a {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.notice-c681 {
  margin-bottom: var(--space-xl);
}

.video-1f14 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.tertiary_968c {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.image-copper-cf14 {
  color: var(--color-text-light);
}

.dynamic-fba6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.notice-82b0 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.black_237b {
  font-weight: 600;
  color: var(--color-text);
}

.dirty_6062 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.section-pressed-0741 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.component_ccb7 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.nav_7ae4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.icon_903b {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.grid-smooth-01d2 {
  border: 2px solid #4caf50;
}

.border_new_ea8d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.container-ddde {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.fixed_2731 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.gas_5323 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.slider_beb0 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.small_a7d3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hard-5a9b {
  text-align: right;
}

.hard-5a9b .lower_1a1f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.prev-b427 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.shadow-center-25ca h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.shadow-center-25ca p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.thumbnail_ab20 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.carousel_a11a {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cold-8449 {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-7319 {
  background: #e3f2fd;
  color: #1565c0;
}

.frame-out-5ba3 {
  background: #fff3e0;
  color: #e65100;
}

.module-complex-d925 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.module-complex-d925 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.form_77db {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.form_77db:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.cold_1a94 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.red-ce59 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.red-ce59 strong {
  color: var(--color-primary);
}

.form_22b9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.element-7264 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.north-caa4 {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb-1a06 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.footer-full-a5b4 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-full-a5b4:hover {
  background: var(--color-bg-alt);
}

.surface-large-6789 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.footer-full-a5b4[aria-expanded="true"] .surface-large-6789 {
  transform: rotate(180deg);
}

.caption_steel_15a7 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.caption_steel_15a7 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.caption_steel_15a7 ul,
.caption_steel_15a7 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.caption_steel_15a7 li {
  margin-bottom: var(--space-xs);
}

.right_c5f1 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.button_aac9 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.right_c5f1 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.backdrop_1907 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.south_ab87 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.west_5ca5 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.title-9079 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.thick-d358 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .thick-d358 {
    grid-template-columns: 1fr;
  }
}

.current-67a8,
.last-11f4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.current-67a8 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.last-11f4 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.current-67a8 h4,
.last-11f4 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.current-67a8 ul,
.last-11f4 ul {
  list-style: none;
  padding: 0;
}

.current-67a8 li,
.last-11f4 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.disabled-be57 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .disabled-be57 {
    grid-template-columns: 1fr;
  }
}

.under-2cd5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.menu-iron-8dd3 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.right_6136 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.under-2cd5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.under-2cd5 ul {
  list-style: none;
  padding: 0;
}

.under-2cd5 li {
  padding: var(--space-xs) 0;
  color: white;
}

.section-ec10 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.section-ec10 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-ec10 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.description-wood-4085 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.secondary-static-1b0b {
  font-style: italic;
}

.steel_1793 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.status_orange_1c8b {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.status_orange_1c8b h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.status_orange_1c8b p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.green_8815 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.module-blue-3db1 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.photo-north-e922 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.hot_59df {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .hot_59df {
    grid-template-columns: 1fr;
  }
}

.green-4c09 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.green-4c09:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.simple_f2c4 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.green-4c09 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.green-4c09 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.badge-in-ae2f {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.status_4750 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.dirty_1f6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.panel-d397 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.panel-d397 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.backdrop-bbd3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.backdrop-bbd3 li {
  margin-bottom: var(--space-xs);
}

.backdrop-bbd3 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.backdrop-bbd3 a:hover {
  color: white;
}

.orange_edcf {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.orange_edcf a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.orange_edcf a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.container-00e3 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.container-00e3 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.container-00e3 a:hover {
  color: white;
}

.thumbnail-4b11 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .status_4750,
  .dirty_1f6f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.lite_e4f1 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.chip-3f5f p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.aside-lite-294d {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.aside-lite-294d .backdrop-226e {
  color: #4caf50;
  font-size: 0.875rem;
}

.link_911a {
  list-style: none;
  padding: 0;
}

.link_911a li {
  margin-bottom: var(--space-xs);
}

.link_911a a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.link_911a a:hover {
  color: white;
}

.overlay_purple_789e {
  list-style: none;
  padding: 0;
}

.overlay_purple_789e li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.overlay_purple_789e a {
  color: #b0b0b0;
  text-decoration: none;
}

.overlay_purple_789e a:hover {
  color: white;
}

.thumbnail-4b11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.info-bright-7264 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.info-bright-7264 a {
  color: #4caf50;
  text-decoration: none;
}

.layout_simple_3adb {
  font-size: 0.75rem;
  color: #666666;
}

.thick-3996 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.thick-3996 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.thick-3996 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.logo_upper_5043 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.logo_upper_5043:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .thumbnail-4b11 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .wrapper-31eb {
    font-size: 2rem;
  }
  
  .picture_lower_ef7c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .summary-5dd7,
  .badge-focused-e63c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .stone_5b85,
  .dropdown-tiny-4a15,
  .overlay_selected_2d15,
  .top_811d,
  .thick-d358,
  .disabled-be57,
  .hot_59df,
  .status_4750,
  .dirty_1f6f {
    grid-template-columns: 1fr;
  }
  
  .next_8d45 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .black-6049 {
    padding: var(--space-lg) 0;
  }
  
  .carousel-prev-5f07 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .carousel-prev-5f07 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notice-7d4a {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .next_8d45 {
    grid-template-columns: 1fr;
  }
  
  .dropdown_c63c,
  .green_8815,
  .progress-bright-dc55 {
    flex-direction: column;
    width: 100%;
  }
  
  .north_1d24,
  .column_plasma_9293,
  .dropdown_c63c .notice-7d4a,
  .green_8815 .notice-7d4a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wrapper-31eb {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .picture_lower_ef7c {
    font-size: 1.375rem;
  }
  
  .texture-8b3b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .accent-2351,
  .outer-7f10,
  .lite-5621,
  .icon_903b,
  .thumbnail-black-1cc9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .form_8d7e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .down-8b3b {
    gap: var(--space-xs);
  }
  
  .action-b317 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pattern_57be {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .filter-5b2e {
    width: 150px;
    height: 150px;
  }
  
  .pagination_cold_1cc9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .preview-out-4f06,
  .tabs-fa85,
  .dropdown_c63c,
  .status_orange_1c8b,
  .module-blue-3db1,
  .badge-in-ae2f,
  .wide_9cac {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .black-6049 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2553 */
.ghost-box-o5 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.1;
}
