/* ============================================
   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)
   ============================================ */
.dropdown_a6cb {
  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;
}

.dropdown_a6cb:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.main_ad1f,
header,
.bronze_389d,
.secondary_gas_ac73,
.east-3ac1,
.card-stale-90f6,
.small_6209,
.modal_bottom_3ea5,
.search-orange-42df {
  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
   ============================================ */
.main_ad1f {
  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);
}

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

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

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

.middle-4235 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

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

.media-north-aa72 img {
  height: 36px;
  width: auto;
  display: block;
}

.video_selected_09a6 {
  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;
}

.icon_selected_97f4 {
  flex: 1;
}

.paragraph-13a3 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.border-easy-40ec {
  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);
}

.border-easy-40ec:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.border-easy-40ec.fn-active-1628 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.block_brown_c9b0 {
  position: relative;
}

.picture-up-394b {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.picture-up-394b svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.block_brown_c9b0:hover .picture-up-394b svg,
.picture-up-394b[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.overlay_tiny_7e3d {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.gallery-b145 {
  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;
}

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

.gallery-b145 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.search_warm_8491 {
  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;
}

.search_warm_8491: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);
}

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

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

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

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

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

.pagination-c5f2[aria-expanded="true"] .button-c3dd:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .icon_selected_97f4 {
    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 */
  }

  .icon_selected_97f4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .icon_selected_97f4.shadow_dfc6 {
    display: block;
    right: 0;
  }
  
  .paragraph-13a3 {
    flex-direction: column;
    gap: 0;
  }
  
  .border-easy-40ec {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .icon_selected_97f4::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;
  }
  
  .icon_selected_97f4.shadow_dfc6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .icon_selected_97f4 {
    display: none;
  }
  
  .pagination-c5f2 {
    display: flex;
  }
  
  .video_selected_09a6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gallery-b145,
  .search_warm_8491 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .block_brown_c9b0 {
    position: relative;
  }
  
  .overlay_tiny_7e3d {
    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;
  }
  
  .picture-up-394b[aria-expanded="true"] + .overlay_tiny_7e3d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gas-ee54 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery_red_3734 {
    gap: 8px;
  }
  
  .gallery-b145 {
    display: none;
  }
  
  .search_warm_8491 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .media-north-aa72 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .search_warm_8491 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .search_warm_8491 svg {
    width: 14px;
    height: 14px;
  }
  
  .middle-4235 {
    gap: var(--space-sm);
  }
}

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

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

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

.caption_yellow_091f svg {
  flex-shrink: 0;
}

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

.caption_yellow_091f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.list_wood_4ecf a:hover {
  text-decoration: underline;
}

.summary-fixed-c4ad {
  color: var(--color-text-lighter);
}

.fluid_b931 {
  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) {
  .fluid_b931 {
    font-size: 2rem;
  }
}

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

.pagination-ad60 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

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

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

.article-aa54 {
  display: flex;
  gap: var(--space-sm);
}

.item_ad5b {
  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;
}

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

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

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

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

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

.overlay-00ee {
  position: relative;
  text-align: center;
}

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

.modal-fast-4577 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.focus-b5a9 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

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

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

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

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

@media (max-width: 968px) {
  .out-8e7b {
    grid-template-columns: 1fr;
  }
  
  .fluid_b931 {
    font-size: 1.75rem;
  }
  
  .paper_11ad {
    order: -1;
    max-width: 100%;
  }
  
  .overlay-00ee {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .fluid_b931 {
    font-size: 1.5rem;
  }
  
  .pagination-ad60 {
    font-size: 1rem;
  }
  
  .list_wood_4ecf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .overlay-00ee {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.dropdown_tall_a080 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wood-371d {
  list-style: none;
  counter-reset: toc-counter;
}

.wood-371d li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.wood-371d 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);
}

.wood-371d 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;
}

.wood-371d li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.box-hard-a4e4 {
  background: var(--color-bg-section);
}

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

.down_95ce {
  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);
}

.texture-green-818e {
  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);
}

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

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

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

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

.thick_a1d5 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.thick_a1d5 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);
}

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

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

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

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

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

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

.thick_a1d5 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.thick_a1d5 a:hover {
  color: var(--color-primary-dark);
}

.nav-green-eff1 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.nav-green-eff1 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.nav-green-eff1 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) {
  .status_tiny_16d6 {
    grid-template-columns: 1fr;
  }
  
  .texture-green-818e {
    font-size: 1.75rem;
  }
  
  .thick_a1d5 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .texture-green-818e {
    font-size: 1.5rem;
  }
  
  .thick_a1d5 h3 {
    font-size: 1.375rem;
  }
  
  .thick_a1d5 h4 {
    font-size: 1.125rem;
  }
}

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

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

.button-hovered-3bf2 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.section-071b {
  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;
}

.tabs-light-43e4 {
  flex-shrink: 0;
}

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

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

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

.container_62eb,
.purple-7b91,
.form_7e8c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.container_62eb thead,
.purple-7b91 thead {
  background: var(--color-primary);
  color: white;
}

.container_62eb th,
.container_62eb td,
.purple-7b91 th,
.purple-7b91 td,
.form_7e8c th,
.form_7e8c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .container_62eb th,
  .container_62eb td,
  .purple-7b91 th,
  .purple-7b91 td,
  .form_7e8c th,
  .form_7e8c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .container_62eb,
  .purple-7b91,
  .form_7e8c {
    min-width: 600px;
  }
}

.container_62eb th,
.purple-7b91 th,
.form_7e8c th {
  font-weight: 600;
}

.container_62eb tbody tr:hover,
.purple-7b91 tbody tr:hover,
.form_7e8c tbody tr:hover {
  background: var(--color-bg-alt);
}

.yellow-9e19 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.column_58a1 h4 {
  color: white;
}

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

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

.aside-bright-e733:last-child {
  border-bottom: none;
}

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

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

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

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

.active-5416:hover {
  text-decoration: underline;
}

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

.old_6ba9 {
  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);
}

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

.text-7499 {
  font-weight: 600;
  color: white;
}

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

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

.accent-994a {
  color: #4caf50;
}

.tabs-8cf4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.widget-465f {
  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;
}

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

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

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

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

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

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

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

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.static-193e {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .dropdown-mini-7c41 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.gallery_iron_afa9 .dropdown_tall_a080 {
  width: 100%;
  background: white;
}

.up_3247 .dropdown_tall_a080 {
  color: #667eea;
}

.old-2197 .dropdown_tall_a080 {
  color: #f5576c;
}

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

.disabled-55ee {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

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

.fast-141c {
  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);
}

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

.module_stale_6719 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .pagination_liquid_5e9f {
    padding: var(--space-md);
  }
  
  .module_stale_6719 {
    padding: var(--space-md);
  }
  
  .link_d553 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.focused-d5f8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.feature_lite_f0ba,
.caption-out-3e15,
.aside-right-5429,
.hot_aa92 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.badge_377e {
  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) {
  .badge_377e {
    font-size: 0.625rem;
  }
}

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

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

.thumbnail-yellow-18a1 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.thumbnail-yellow-18a1 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.icon-pro-e7ba {
  border-color: var(--color-success);
}

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

.disabled-hard-186c {
  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);
}

.icon-pro-e7ba .disabled-hard-186c {
  background: #e8f5e9;
  color: var(--color-success);
}

.link-ef92 .disabled-hard-186c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.warm-1ce7 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.border-blue-9d5f {
  margin-top: var(--space-xxl);
}

.summary-671d {
  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);
}

.tooltip-glass-68b4 {
  text-align: center;
}

.pink_e643 {
  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);
}

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

.pink_e643 .text-7499 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.input-down-53bd p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.top-5e3e {
  margin-bottom: var(--space-xl);
}

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

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

.stone-6e8e {
  color: var(--color-text-light);
}

.upper-30c5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.widget_east_1204 {
  border: 2px solid #4caf50;
}

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

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

.copper-a994 {
  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;
}

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

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

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

.backdrop-f75b {
  text-align: right;
}

.backdrop-f75b .paper-0905 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

.module-large-42e8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.module-large-42e8 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

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

.video_east_7975 {
  background: #e8f5e9;
  color: #2e7d32;
}

.footer-adb4 {
  background: #e3f2fd;
  color: #1565c0;
}

.rough_bea8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.popup_854b {
  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);
}

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

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

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

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

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

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

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

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

.tag-b70b {
  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);
}

.tag-b70b:hover {
  background: var(--color-bg-alt);
}

.complex-28eb {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tag-b70b[aria-expanded="true"] .complex-28eb {
  transform: rotate(180deg);
}

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

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

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

.message-9bca li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.link-363e {
  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);
}

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

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

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

.picture-c06e,
.top_e7c4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.picture-c06e h4,
.top_e7c4 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.picture-c06e ul,
.top_e7c4 ul {
  list-style: none;
  padding: 0;
}

.picture-c06e li,
.top_e7c4 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.stale-69dd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.stale-69dd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.stale-69dd ul {
  list-style: none;
  padding: 0;
}

.stale-69dd li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.tertiary-d17e {
  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);
}

.mini-b832 {
  font-style: italic;
}

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

.tag-medium-ca1f {
  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;
}

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

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

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

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

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

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

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

.focus_focused_7229 {
  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);
}

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

.video-black-2cc2 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

/* ============================================
   23. FOOTER
   ============================================ */
.search-orange-42df {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.current-ae11 {
  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) */
.dim_bbe3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.list_c83f a:hover {
  color: white;
}

.table-gas-808e {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.table-gas-808e 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);
}

.table-gas-808e a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.active-8684 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.active-8684 a:hover {
  color: white;
}

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

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

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

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

.brown_75c0 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.brown_75c0 .article-aa54 {
  color: #4caf50;
  font-size: 0.875rem;
}

.item-first-5015 {
  list-style: none;
  padding: 0;
}

.item-first-5015 li {
  margin-bottom: var(--space-xs);
}

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

.item-first-5015 a:hover {
  color: white;
}

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

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

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

.outline_brown_8a13 a:hover {
  color: white;
}

.article_2ae9 {
  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);
}

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

.stone_3e97 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.hidden_3429 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;
}

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

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

@media (max-width: 768px) {
  .article_2ae9 {
    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;
  }
  
  .fluid_b931 {
    font-size: 2rem;
  }
  
  .texture-green-818e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .out-8e7b,
  .status_tiny_16d6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .caption-static-7563,
  .right-947c,
  .dropdown-mini-7c41,
  .frame-6e53,
  .active_north_0ccc,
  .footer-9cf9,
  .hidden_96c8,
  .current-ae11,
  .dim_bbe3 {
    grid-template-columns: 1fr;
  }
  
  .border-f9fa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .small_6209 {
    padding: var(--space-lg) 0;
  }
  
  .wood-371d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .wood-371d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dropdown_tall_a080 {
    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;
  }
  
  .border-f9fa {
    grid-template-columns: 1fr;
  }
  
  .panel_3a3f,
  .wrapper_stale_dbfb,
  .aside-ef4f {
    flex-direction: column;
    width: 100%;
  }
  
  .highlight_2b7b,
  .main-dbbc,
  .panel_3a3f .dropdown_tall_a080,
  .wrapper_stale_dbfb .dropdown_tall_a080 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .fluid_b931 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .texture-green-818e {
    font-size: 1.375rem;
  }
  
  .first_b6e3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .article_8241,
  .bronze_a24c,
  .menu_purple_34eb,
  .description-green-dc36,
  .disabled-55ee {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .badge_377e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .active_c37b {
    gap: var(--space-xs);
  }
  
  .caption_yellow_091f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .old_6ba9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pink_e643 {
    width: 150px;
    height: 150px;
  }
  
  .slow-495e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .main_ad1f,
  .bronze_389d,
  .panel_3a3f,
  .tag-medium-ca1f,
  .modal_bottom_3ea5,
  .search-orange-42df,
  .pagination-c5f2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .small_6209 {
    page-break-inside: avoid;
  }
}

/* css-noise: dbda */
.shadow-element-o6 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
