/* Club Blueprint specific styles */
.club-blueprint-container {
  width: 100%;
  margin: 2rem 0;
}

.org-chart {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.org-chart img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.role-section {
  margin: 2rem 0;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.role-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.role-title {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.role-description {
  font-size: 0.9rem;
  color: #555;
}

.implementation-steps {
  background-color: #f1f8ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.implementation-steps h3 {
  margin-top: 0;
}

.implementation-steps ol {
  margin-left: 1.5rem;
}

.implementation-steps li {
  margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .role-grid {
    grid-template-columns: 1fr;
  }
  
  .role-card {
    padding: 1rem;
  }
}

/* Guide content image constraints */
.guide-visual {
  text-align: center;
  margin: 1.5rem 0;
}

.responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
