/* Blog Post Content Styles */

.blog-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #e7e3fc;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content a {
  color: #58CC02;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.blog-post-content a:hover {
  color: #46A302;
  text-decoration: underline;
}

/* Introduction Section */
.post-intro {
  background: linear-gradient(135deg, rgba(88, 204, 2, 0.08) 0%, rgba(70, 163, 2, 0.08) 100%);
  border-left: 4px solid #58CC02;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 8px;
}

.post-intro .lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #e7e3fc;
}

/* Sections */
.section {
  margin-bottom: 4rem;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #e7e3fc;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(88, 204, 2, 0.3);
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #e7e3fc;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  background: rgba(88, 204, 2, 0.05);
  border-left: 4px solid #58CC02;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(88, 204, 2, 0.1);
  box-shadow: 0 4px 12px rgba(88, 204, 2, 0.15);
}

.feature-list li strong {
  display: block;
  font-size: 1.1rem;
  color: #58CC02;
  margin-bottom: 0.5rem;
}

.feature-list li .description {
  display: block;
  color: #b4b0c8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Compact Lists */
.compact-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.compact-list li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.compact-list li strong {
  color: #58CC02;
  font-weight: 600;
}

/* Callout Boxes */
.callout {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid;
}

.callout p {
  margin-bottom: 0;
}

.callout-info {
  background: rgba(33, 150, 243, 0.1);
  border-color: #2196F3;
}

.callout-info strong {
  color: #2196F3;
}

.callout-warning {
  background: rgba(255, 152, 0, 0.1);
  border-color: #FF9800;
}

.callout-warning strong {
  color: #FF9800;
}

.callout-danger {
  background: rgba(244, 67, 54, 0.1);
  border-color: #F44336;
}

.callout-danger strong {
  color: #F44336;
}

/* Highlight Boxes */
.highlight-box {
  background: linear-gradient(135deg, rgba(88, 204, 2, 0.15) 0%, rgba(70, 163, 2, 0.1) 100%);
  border: 2px solid rgba(88, 204, 2, 0.3);
  padding: 1.75rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.highlight-box strong {
  color: #58CC02;
}

.highlight-box.success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.1) 100%);
  border-color: rgba(76, 175, 80, 0.3);
}

/* Workflow List */
.workflow-list {
  counter-reset: workflow-counter;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.workflow-list li {
  counter-increment: workflow-counter;
  position: relative;
  padding: 2rem 2rem 2rem 5rem;
  margin-bottom: 2rem;
  background: rgba(88, 204, 2, 0.05);
  border-radius: 10px;
  border-left: 4px solid #58CC02;
}

.workflow-list li::before {
  content: counter(workflow-counter);
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #58CC02;
  color: #1e1b2e;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-list li strong {
  display: block;
  font-size: 1.25rem;
  color: #58CC02;
  margin-bottom: 0.5rem;
}

.workflow-list li .step-detail {
  display: block;
  color: #b4b0c8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.workflow-list li .phase-description {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Resource Grid */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.resource-card {
  background: rgba(88, 204, 2, 0.05);
  border: 1px solid rgba(88, 204, 2, 0.2);
  border-radius: 10px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.resource-card:hover {
  background: rgba(88, 204, 2, 0.08);
  border-color: rgba(88, 204, 2, 0.4);
  box-shadow: 0 8px 24px rgba(88, 204, 2, 0.15);
}

.resource-card h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.resource-card h3 a {
  color: #58CC02;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resource-card h3 a:hover {
  color: #46A302;
}

.resource-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b4b0c8;
}

/* Habit List */
.habit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.habit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(88, 204, 2, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.habit-list li:hover {
  background: rgba(88, 204, 2, 0.1);
  box-shadow: 0 4px 12px rgba(88, 204, 2, 0.15);
}

.habit-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.habit-text {
  flex: 1;
}

.habit-text strong {
  color: #58CC02;
  font-weight: 600;
}

/* Ethics Section */
.ethics-section {
  background: rgba(244, 67, 54, 0.05);
  border: 2px solid rgba(244, 67, 54, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.ethics-section h2 {
  border-bottom-color: rgba(244, 67, 54, 0.3);
}

.ethics-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.ethics-list li {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.ethics-list li strong {
  color: #F44336;
  font-weight: 600;
}

/* Conclusion Section */
.conclusion {
  background: linear-gradient(135deg, rgba(88, 204, 2, 0.08) 0%, rgba(70, 163, 2, 0.08) 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.takeaway-text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.final-cta {
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 2rem;
  background: rgba(88, 204, 2, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(88, 204, 2, 0.3);
}

/* Typography Enhancements */
.blog-post-content strong {
  font-weight: 600;
  color: #e7e3fc;
}

.blog-post-content code {
  background: rgba(88, 204, 2, 0.1);
  color: #58CC02;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.9em;
}

.blog-post-content blockquote {
  border-left: 4px solid #58CC02;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #b4b0c8;
}

/* Links */
.link-primary {
  color: #58CC02;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(88, 204, 2, 0.4);
  transition: all 0.2s ease;
}

.link-primary:hover {
  color: #46A302;
  text-decoration-color: #46A302;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-content {
    font-size: 15px;
  }

  .post-intro .lead {
    font-size: 1.1rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .section h3 {
    font-size: 1.25rem;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .workflow-list li {
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  }

  .workflow-list li::before {
    left: 1rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .post-intro {
    padding: 1.5rem;
  }

  .highlight-box {
    padding: 1.25rem;
  }

  .final-cta {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .blog-post-content {
    color: #000;
  }

  .blog-post-content a {
    color: #0066cc;
  }

  .callout,
  .highlight-box,
  .resource-card {
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

