/* Extracted from templates/tutorials.html style block 1. */
.tutorial-item {
    margin-bottom: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tutorial-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.tutorial-author {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.tutorial-author a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.tutorial-author a:hover {
    text-decoration: underline;
}

.tutorial-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}
.tutorial-title a {
    color: inherit;
    text-decoration: none;
}
.tutorial-title a:hover {
    text-decoration: underline;
}

.tutorial-body {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.65;
}

.tutorial-body p:last-child { margin-bottom: 0; }
.tutorial-body h1, .tutorial-body h2, .tutorial-body h3 { font-size: 1.1rem; margin-top: 1rem; font-weight: 600; }
.tutorial-body ul, .tutorial-body ol { padding-left: 1.25rem; }
.tutorial-body pre { background: #f6f8fa; padding: 0.75rem; border-radius: 6px; overflow-x: auto; }

@media (max-width: 768px) {
    .tutorial-item { padding: 1.25rem; }
}
