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

.summary_5313:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.grid-0a28,
header,
.footer_29ce,
.filter_up_a888,
.logo-simple-dc1e,
.description-5874,
.pattern_4859,
.tertiary_8f41,
.small_a2ba {
  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
   ============================================ */
.grid-0a28 {
  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);
}

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

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

/* Scrolled state */
.grid-0a28.hot-44f1 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.notice-fluid-28c7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

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

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

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

.title_826e {
  flex: 1;
}

.pagination-south-91bb {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

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

.feature-bd2f:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.feature-bd2f.fn-active-e638 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.table-aea4 {
  position: relative;
}

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

.header_first_14ce svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.info_complex_59b4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.gradient-dim-03a1[aria-expanded="true"] .simple_9b4f:nth-child(2) {
  opacity: 0;
}

.gradient-dim-03a1[aria-expanded="true"] .simple_9b4f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .title_826e::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .title_826e.middle-effc {
    display: block;
    right: 0;
  }
  
  .pagination-south-91bb {
    flex-direction: column;
    gap: 0;
  }
  
  .feature-bd2f {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .title_826e::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;
  }
  
  .title_826e.middle-effc::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .title_826e {
    display: none;
  }
  
  .gradient-dim-03a1 {
    display: flex;
  }
  
  .picture_28e8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .info_complex_59b4,
  .detail_e9e8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .table-aea4 {
    position: relative;
  }
  
  .row_blue_8479 {
    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;
  }
  
  .header_first_14ce[aria-expanded="true"] + .row_blue_8479 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .up-8cdb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pattern_in_14f0 {
    gap: 8px;
  }
  
  .info_complex_59b4 {
    display: none;
  }
  
  .detail_e9e8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .media_f82e img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .detail_e9e8 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .detail_e9e8 svg {
    width: 14px;
    height: 14px;
  }
  
  .notice-fluid-28c7 {
    gap: var(--space-sm);
  }
}

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

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

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

.component-ee13 svg {
  flex-shrink: 0;
}

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

.component-ee13 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.accordion-north-89f6 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.heading-liquid-2828 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.heading-liquid-2828 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.notice-634f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.prev-4b27 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.grid-glass-2354 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

@media (max-width: 968px) {
  .mask_fec3 {
    grid-template-columns: 1fr;
  }
  
  .dynamic_7eb1 {
    font-size: 1.75rem;
  }
  
  .prev-4b27 {
    order: -1;
    max-width: 100%;
  }
  
  .tooltip_middle_0795 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dynamic_7eb1 {
    font-size: 1.5rem;
  }
  
  .notification-3de7 {
    font-size: 1rem;
  }
  
  .warm_ef6d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tooltip_middle_0795 {
    max-width: 250px;
  }
}

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

.photo-tall-c01f {
  background: var(--color-primary);
  color: white;
}

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

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

.slider-wood-a54e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.row-1bee {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.gradient-610d {
  list-style: none;
  counter-reset: toc-counter;
}

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

.gradient-610d 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);
}

.gradient-610d 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;
}

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

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

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

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

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

.header-bright-1eef {
  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);
}

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

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

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

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

.widget-55d2 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.widget-55d2 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);
}

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

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

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

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

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

.widget-55d2 strong {
  font-weight: 600;
  color: var(--color-text);
}

.widget-55d2 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.widget-55d2 a:hover {
  color: var(--color-primary-dark);
}

.border-up-5fc5 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.border-up-5fc5 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.border-up-5fc5 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) {
  .modal-4041 {
    grid-template-columns: 1fr;
  }
  
  .header-bright-1eef {
    font-size: 1.75rem;
  }
  
  .widget-55d2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-bright-1eef {
    font-size: 1.5rem;
  }
  
  .widget-55d2 h3 {
    font-size: 1.375rem;
  }
  
  .widget-55d2 h4 {
    font-size: 1.125rem;
  }
}

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

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

.shadow-7462 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.selected-2160 {
  flex-shrink: 0;
}

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

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

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

.text_7f16,
.tag_hard_dc8a,
.feature_1695 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.text_7f16 thead,
.tag_hard_dc8a thead {
  background: var(--color-primary);
  color: white;
}

.text_7f16 th,
.text_7f16 td,
.tag_hard_dc8a th,
.tag_hard_dc8a td,
.feature_1695 th,
.feature_1695 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .text_7f16 th,
  .text_7f16 td,
  .tag_hard_dc8a th,
  .tag_hard_dc8a td,
  .feature_1695 th,
  .feature_1695 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .text_7f16,
  .tag_hard_dc8a,
  .feature_1695 {
    min-width: 600px;
  }
}

.text_7f16 th,
.tag_hard_dc8a th,
.feature_1695 th {
  font-weight: 600;
}

.text_7f16 tbody tr:hover,
.tag_hard_dc8a tbody tr:hover,
.feature_1695 tbody tr:hover {
  background: var(--color-bg-alt);
}

.image-white-5f68 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.text_3ceb h4 {
  color: white;
}

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

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

.tag-hovered-7d02:last-child {
  border-bottom: none;
}

.tag-hovered-7d02 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.tag-hovered-7d02 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.tag-bronze-78bb {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.tabs-058d:hover {
  text-decoration: underline;
}

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

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

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

.west-eaf2 {
  font-weight: 600;
  color: white;
}

.easy-05ff {
  list-style: none;
  padding: 0;
}

.easy-05ff li {
  padding: var(--space-xs) 0;
}

.hover_plasma_1ec1 {
  color: #4caf50;
}

.description_blue_0235 {
  color: #ff9800;
}

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

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

.section-clean-30d6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_thick_8c93 .focus-47c8 {
  width: 100%;
  background: white;
}

.pattern-clean-2dc8 .focus-47c8 {
  color: #667eea;
}

.filter_de23 .focus-47c8 {
  color: #f5576c;
}

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

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

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

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

.silver-6c90 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.pagination-914a {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .silver-6c90 {
    padding: var(--space-md);
  }
  
  .pagination-914a {
    padding: var(--space-md);
  }
  
  .east_b608 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.plasma-2fd8 ol,
.plasma-2fd8 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.plasma-2fd8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.hard_237b,
.dynamic-e40e,
.detail_static_3cd5,
.photo_current_a21e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.stone-d464 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.section-lower-1a5f {
  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);
}

.footer_e151 .section-lower-1a5f {
  background: #e8f5e9;
  color: var(--color-success);
}

.highlight_medium_7d37 .section-lower-1a5f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.preview-pro-e8e1 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.label-cool-b251 {
  margin-top: var(--space-xxl);
}

.filter-30ca {
  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);
}

.caption_bd14 {
  text-align: center;
}

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

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

.static-2227 .west-eaf2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.chip-yellow-c832 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.pattern_yellow_4d8b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-cold-598c {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.surface-9e7e {
  text-align: right;
}

.surface-9e7e .block_thick_116c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.motion-4999 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.section-88fe {
  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);
}

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

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

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

.focus-smooth-7185 strong {
  color: var(--color-primary);
}

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

.banner-white-6de5 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

.description-7add:hover {
  background: var(--color-bg-alt);
}

.title_motion_be47 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.description-7add[aria-expanded="true"] .title_motion_be47 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.filter-motion-521b {
  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);
}

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

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

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

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

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

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

.fixed_95ec h4,
.component_medium_8bc2 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.fixed_95ec ul,
.component_medium_8bc2 ul {
  list-style: none;
  padding: 0;
}

.fixed_95ec li,
.component_medium_8bc2 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .chip-white-01e3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.middle_e9e6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.backdrop_0e8e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-59ed {
  list-style: none;
  padding: 0;
  margin: 0;
}

.center-59ed li {
  margin-bottom: var(--space-xs);
}

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

.center-59ed a:hover {
  color: white;
}

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

.red-0dc6 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);
}

.red-0dc6 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.under-d310 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.under-d310 a:hover {
  color: white;
}

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

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

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

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

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

.paragraph-2d0f .silver_cc05 {
  color: #4caf50;
  font-size: 0.875rem;
}

.link-95c4 {
  list-style: none;
  padding: 0;
}

.link-95c4 li {
  margin-bottom: var(--space-xs);
}

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

.link-95c4 a:hover {
  color: white;
}

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

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

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

.pagination_49d4 a:hover {
  color: white;
}

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

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

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

.avatar-thick-0428 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.message-7760 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;
}

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

.copper-18c4:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .picture_92d1 {
    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;
  }
  
  .dynamic_7eb1 {
    font-size: 2rem;
  }
  
  .header-bright-1eef {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .mask_fec3,
  .modal-4041 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary-east-da3f,
  .static-70d0,
  .background-lite-0455,
  .button_glass_18b3,
  .narrow-d9ad,
  .chip-white-01e3,
  .footer_4fb5,
  .item-dac3,
  .column_hard_bd2e {
    grid-template-columns: 1fr;
  }
  
  .narrow_1df5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pattern_4859 {
    padding: var(--space-lg) 0;
  }
  
  .gradient-610d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gradient-610d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus-47c8 {
    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;
  }
  
  .narrow_1df5 {
    grid-template-columns: 1fr;
  }
  
  .notice-634f,
  .pattern_d5fb,
  .section_silver_66fc {
    flex-direction: column;
    width: 100%;
  }
  
  .border_f44d,
  .row-1bee,
  .notice-634f .focus-47c8,
  .pattern_d5fb .focus-47c8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dynamic_7eb1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .header-bright-1eef {
    font-size: 1.375rem;
  }
  
  .tabs_solid_9c97 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .slow-50e6,
  .light_2f14,
  .table_cool_2ec5,
  .footer_over_2c1f,
  .mini_05be {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .shade-up-bccd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .primary_old_9734 {
    gap: var(--space-xs);
  }
  
  .component-ee13 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hero_outer_be79 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .static-2227 {
    width: 150px;
    height: 150px;
  }
  
  .background_1834 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .grid-0a28,
  .footer_29ce,
  .notice-634f,
  .pressed-ad22,
  .tertiary_8f41,
  .small_a2ba,
  .gradient-dim-03a1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pattern_4859 {
    page-break-inside: avoid;
  }
}

/* css-noise: b228 */
.promo-block-c8 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.3;
}
