/* ================================
   CONTENT TYPE WIZARD
   ================================ */

.wizard-container {
    max-width: 100%; /* Remove width constraint to use parent container width */
    margin: 0 auto;
}

.wizard-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.wizard-title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    letter-spacing: var(--letter-spacing-tight);
}

.wizard-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin: 0;
}

.type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.type-option {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    color: inherit;
}

.type-option:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    line-height: 1;
}

.type-option h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    letter-spacing: var(--letter-spacing-tight);
}

.type-option p {
    color: var(--color-text-muted);
    margin: 0;
    line-height: var(--line-height-relaxed);
}

