/* Tutorials Page Styles */
.tutorials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.tutorials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tutorials-header h1 {
    font-size: 2.5rem;
    color: var(--studio-gray-900, #0f172a);
    margin-bottom: 1rem;
}

.tutorials-description {
    font-size: 1.1rem;
    color: var(--studio-text-secondary, #475569);
    max-width: 600px;
    margin: 0 auto;
}

/* Tutorials grid handled by post-cards.css */

/* Tutorial-specific gradient border accent */
.tutorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--studio-blue, #2563eb), var(--studio-green, #059669));
}

/* All other tutorial styling handled by post-cards.css */
