/** Shopify CDN: Minification failed

Line 57:10 Expected identifier but found whitespace
Line 57:12 Unexpected "{"
Line 57:21 Expected ":"
Line 80:17 Expected identifier but found whitespace
Line 80:19 Unexpected "{"
Line 80:28 Expected ":"
Line 88:15 Expected identifier but found whitespace
Line 88:17 Unexpected "{"
Line 88:26 Expected ":"

**/

  .dependency-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .dependency-intro {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
  }

  .dependency-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
  }

  .dependency-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
  }

  .dependency-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
  }

  .info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  }

  .info-card h3 {
    color: {{ section.settings.accent_color }};
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .symptom-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .symptom-item {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .symptom-item:hover {
    border-color: {{ section.settings.accent_color }};
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .symptom-number {
    width: 35px;
    height: 35px;
    background: {{ section.settings.accent_color }};
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }

  .symptom-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
  }

  .symptom-text span {
    font-size: 0.95rem;
    color: #666;
  }

  @media (max-width: 990px) {
    .dependency-grid { grid-template-columns: 1fr; }
    .dependency-intro h2 { font-size: 2rem; }
  }