.tutorial-container {
    max-width: 800px;
    margin: 80px auto 24px;
    padding: 0 16px;
}

.tutorial-article {
    background-color: var(--md-sys-color-surface);
    border-radius: var(--md-sys-shape-corner-medium);
    padding: 24px;
    box-shadow: var(--md-sys-elevation-1);
}

.tutorial-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--md-sys-color-outline);
}

.tutorial-header h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: var(--md-sys-color-primary);
}

.tutorial-author {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface-variant);
}

.tutorial-step {
    margin-bottom: 32px;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-radius: 50%;
    margin-right: 12px;
    font-weight: 500;
}

.step-content {
    padding-left: 44px;
}

.step-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.step-content pre,
.step-content code {
    background-color: var(--md-sys-color-surface-variant);
    border-radius: var(--md-sys-shape-corner-small);
    padding: 2px 6px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.875rem;
}