/* Strategy & Tips page layout - DiceWorld */
.strategy-section {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
.lead {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  margin-bottom: var(--space-7);
  max-width: 54ch;
}
.strategy-section .card {
  margin-bottom: var(--space-7);
  box-shadow: var(--shadow-md);
  background: linear-gradient(144deg, #f6f1d7 0%, #e4f1fa 100%);
}
.strategy-section .card h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.strategy-section .card ol,
.strategy-section .card ul {
  margin-left: var(--space-5);
}
.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin: var(--space-5) 0;
}
.swot {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-xs);
  min-width: 0;
}
.swot-strengths { border-left: 6px solid var(--color-success); }
.swot-weaknesses { border-left: 6px solid var(--color-danger); }
.swot-opportunities { border-left: 6px solid var(--color-primary); }
.swot-threats { border-left: 6px solid var(--color-warning); }
.swot h3 {
  font-size: var(--font-size-lg);
  color: var(--color-gray-900);
  margin-top: 0;
}
.swot-cta {
  text-align: right;
  margin-top: var(--space-5);
  margin-bottom: 0;
}
.smart-list {
  margin-left: var(--space-6);
  margin-bottom: var(--space-6);
  list-style: disc inside;
}
.strategy-section blockquote {
  border-left: 4px solid var(--color-primary);
  background: #f3f8ff;
  padding: var(--space-5) var(--space-6);
  color: var(--color-primary);
  font-style: italic;
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-5) 0;
}
@media (max-width: 900px) {
  .swot-grid {
    grid-template-columns: 1fr;
  }
  .swot-cta {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .strategy-section {
    margin-top: var(--space-5);
    margin-bottom: var(--space-5);
  }
  .strategy-section .card {
    padding: var(--space-4);
  }
}
