/* Getting Started Page Styles */

.getting-started-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.getting-started-full-layout {
  margin-top: 1rem;
  max-width: 800px;
}

.getting-started-sidebar {
  position: sticky;
  top: 1rem;
  height: fit-content;
}

.getting-started-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.getting-started-cards .card {
  width: 100%;
}

.getting-started-cards .card-body {
  flex: 1;
}

.getting-started-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.getting-started-cards-grid .card {
  width: 100%;
}

.getting-started-cards-grid .card-body {
  flex: 1;
}

.welcome-content {
  max-width: 600px;
}

.welcome-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--oc-gray-9);
}

.welcome-subtitle {
  font-size: 1rem;
  color: var(--oc-gray-6);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #4b5563;
}

.feature-icon {
  color: #2563eb;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .getting-started-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .getting-started-sidebar {
    position: static;
    order: 2;
  }
  
  .getting-started-main {
    order: 1;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .getting-started-cards-grid {
    grid-template-columns: 1fr;
  }
}
