/* Additional styles for Resources page */
.resources-section {
  padding: 4rem 0;
}

.resources-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.resource-category {
  background: #f8fafc;
  border-radius: 12px;
  padding: 3rem;
}

.category-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3rem;
  text-align: center;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.resource-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.resource-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.resource-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 1.5rem 0 0.75rem;
}

.resource-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6366f1;
  margin: 1rem 0 0.5rem;
}

.resource-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.resource-content ul {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.resource-content li {
  margin-bottom: 0.5rem;
}

.checklist {
  list-style: none !important;
  padding-left: 0 !important;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.assessment-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.assessment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.boundary-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.boundary-category {
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 8px;
  border-left: 4px solid #6366f1;
}

.confidence-goals {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.confidence-goals li {
  margin-bottom: 0.5rem;
  color: #475569;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .resources-section {
    padding: 2rem 0;
  }

  .category-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .resource-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .resource-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .resources-section {
    padding: 2rem 0;
  }

  .resource-category {
    padding: 1.5rem 1rem;
  }

  .resource-card {
    padding: 1.25rem;
  }
}
