/* ===== Tutorial Section ===== */

.course-tutorial-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.course-intro-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Tutorial Card */
.tutorial-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tutorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.tutorial-card-indigo { border-left: 4px solid #4f46e5; }
.tutorial-card-cyan   { border-left: 4px solid #0891b2; }
.tutorial-card-green  { border-left: 4px solid #059669; }
.tutorial-card-orange { border-left: 4px solid #d97706; }

.tutorial-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tutorial-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
}

.icon-indigo { background: #eef2ff; color: #4f46e5; }
.icon-cyan   { background: #ecfeff; color: #0891b2; }
.icon-green  { background: #ecfdf5; color: #059669; }
.icon-orange { background: #fffbeb; color: #d97706; }

.tutorial-title {
    font-size: 16px;
    color: #1e293b;
}

.tutorial-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tutorial-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: background 0.2s;
}

.btn-indigo { background: #4f46e5; }
.btn-cyan   { background: #0891b2; }
.btn-green  { background: #059669; }
.btn-orange { background: #d97706; }

.btn-indigo:hover { background: #4338ca; }
.btn-cyan:hover   { background: #0e7490; }
.btn-green:hover  { background: #047857; }
.btn-orange:hover { background: #b45309; }

/* What You Will Get Section */
.tutorial-benefits {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 12px;
    padding: 28px 32px;
    color: #fff;
}

.tutorial-benefits h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tutorial-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tutorial-benefits li {
    padding: 6px 0;
    font-size: 14px;
}

.tutorial-benefits .editor-btn {
    display: inline-block;
    background: #fff;
    color: #4f46e5;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
}
